Skip to content

Commit dc9fbd2

Browse files
authored
Merge pull request #65 from vub-hpc/h200
add support for H200 GPUs
2 parents 4d64892 + 7a20a8f commit dc9fbd2

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/unittest.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,15 @@ jobs:
4848
- name: Install pytest
4949
run: python -m pip install pytest
5050

51+
- name: Install old setuptools
52+
run: |
53+
python -m pip install setuptools==53.0.0
54+
python -c "import setuptools; print(setuptools.__version__)"
55+
5156
- name: Install vsc-install
52-
run: python -m pip install vsc-install
57+
run: |
58+
python -c "import setuptools; print(setuptools.__version__)"
59+
python -m pip install vsc-install
5360
5461
- name: Install build-tools
5562
run: python -m pip install .

src/build_tools/clusters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
'cpu': 'zen5_mpi',
100100
'gpu': 'ada_gpu',
101101
},
102-
'cuda_cc': ['8.9'], # L40S
102+
'cuda_cc': ['8.9', '9.0'], # L40S, H200
103103
},
104104
}
105105

src/build_tools/package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
@author: Alex Domingo (Vrije Universiteit Brussel)
1717
"""
1818

19-
VERSION = '4.3.7'
19+
VERSION = '4.3.8'
2020

2121
AUTHOR = {
2222
'wp': 'Ward Poelmans',

0 commit comments

Comments
 (0)