File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed
Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,11 @@ nvidia:
1414 - eccodes@2.25.0%nvhpc +tools +fortran +aec +openmp jp2k=jasper
1515 - cmake%gcc
1616 - cuda@12.3%gcc
17- - hdf5 %gcc
17+ - openblas %gcc
1818 - hwloc%gcc
19- - netcdf-c%gcc
20- - netcdf-cxx4%gcc
19+ - hdf5+szip+fortran%nvhpc
20+ - netcdf-c%nvhpc
21+ - netcdf-cxx4%nvhpc
2122 - netcdf-fortran%nvhpc
2223 - numactl%gcc
2324 - osu-micro-benchmarks@5.9%nvhpc
Original file line number Diff line number Diff line change 1+ #!/usr/bin/python3
2+
3+ import yaml
4+
5+ with open ("{{ env.mount }}/config/packages.yaml" , mode = 'r' ) as file :
6+ packages = yaml .safe_load (file )
7+
8+ packages ['packages' ]['all' ] = {'variants' : 'cuda_arch=80' }
9+
10+ with open ("{{ env.mount }}/config/packages.yaml" , mode = 'w' ) as file :
11+ yaml .dump (packages , file )
You can’t perform that action at this time.
0 commit comments