Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/install/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ runs:
VER="${{ inputs.cuda }}"
if test "$VER" == "true"
then
VER="11.7"
VER="12.9"
fi
tools/install.sh ${{inputs.options}} cuda $VER
CUDA_PATH=/usr/local/cuda-$VER
Expand All @@ -147,7 +147,7 @@ runs:
VER="${{ inputs.hip }}"
if test "$VER" == "true"
then
VER="5.4.1"
VER="6.4.4"
fi
tools/install.sh ${{inputs.options}} hip $VER
- if: inputs.openmpi != 'false'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cpu_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
- name: Gather coverage data
uses: ./.github/actions/coverage
id: coverage
continue-on-error: true
- name: Send coverage data
uses: codecov/codecov-action@v3
if: steps.coverage.outputs.reports != ''
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gpu_comp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
rdep: true
openmpi: true
rinside: true
cuda: 11.7
cuda: true
- name: Configure
uses: ./.github/actions/configure
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hip_comp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
rdep: true
openmpi: true
rinside: true
hip: 5.4.1
hip: true
- name: Configure
uses: ./.github/actions/configure
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/rinside.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
precision: ${{ matrix.precision }}
- name: Compile
uses: ./.github/actions/compile
continue-on-error: ${{ matrix.arch == 'hip' }}
with:
model: ${{ matrix.model }}
- if: matrix.test
Expand Down
7 changes: 4 additions & 3 deletions tools/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ do
install_rpackage reticulate
;;
rinside)
install_apt "Installing missing RPC library" libtirpc-dev
if $GITHUB
then
install_rpackage_github eddelbuettel/rinside
Expand All @@ -388,10 +389,10 @@ do
then
OS="ubuntu$(lsb_release -sr | sed 's/[.]//g')"
fi
KEYRINGVER='1.0-1'
KEYRINGVER='1.1-1'
PINFILE="cuda-${OS}.pin"
try "Downloading CUDA pin file" wget $WGETOPT http://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/${PINFILE} -O tmp.pinfile
try "Downloading CUDA keyring file" wget $WGETOPT http://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/cuda-keyring_${KEYRINGVER}_all.deb -O tmp.keyring.deb
try "Downloading CUDA pin file" wget $WGETOPT https://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/${PINFILE} -O tmp.pinfile
try "Downloading CUDA keyring file" wget $WGETOPT https://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/cuda-keyring_${KEYRINGVER}_all.deb -O tmp.keyring.deb
try "Installing CUDA dist" $SUDO dpkg -i tmp.keyring.deb
try "Planting pin file" $SUDO mv tmp.pinfile /etc/apt/preferences.d/cuda-repository-pin-600
update_apt
Expand Down
Loading