1 Commits

Author SHA1 Message Date
fcef51268f ADD: cmatrix and kbd packages
cmatrix is fun little terminal program to generate a Matrix-style
screen. The kbd runtime dependency is used to modify TTY settings.
2024-09-25 14:13:58 +02:00
60 changed files with 241 additions and 2008 deletions

View File

@ -1,17 +0,0 @@
name: IPPL GH Merlin7 Scheduler
run-name: IPPL GH Merlin7 Scheduler
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *"
jobs:
checkout:
runs-on: merlin7
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Sbatch GH GPU script
run: |
chmod +x .gitea/workflows/sbatch/ippl_gh.sbatch
sbatch .gitea/workflows/sbatch/ippl_gh.sbatch

View File

@ -1,17 +0,0 @@
name: IPPL GPU Merlin7 Scheduler
run-name: IPPL GPU Merlin7 Scheduler
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *"
jobs:
checkout:
runs-on: merlin7
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Sbatch A100 GPU script
run: |
chmod +x .gitea/workflows/sbatch/ippl_gpu.sbatch
sbatch .gitea/workflows/sbatch/ippl_gpu.sbatch

View File

@ -1,17 +0,0 @@
name: OPAL-X GH Merlin7 Scheduler
run-name: OPAL-X GH Merlin7 Scheduler
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *"
jobs:
checkout:
runs-on: merlin7
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Sbatch GH GPU script
run: |
chmod +x .gitea/workflows/sbatch/opal-x_gh.sbatch
sbatch .gitea/workflows/sbatch/opal-x_gh.sbatch

View File

@ -1,17 +0,0 @@
name: OPAL-X-GPU Merlin7 Scheduler
run-name: OPAL-X-GPU Merlin7 Scheduler
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *"
jobs:
checkout:
runs-on: merlin7
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Sbatch A100 GPU script
run: |
chmod +x .gitea/workflows/sbatch/opal-x_gpu.sbatch
sbatch .gitea/workflows/sbatch/opal-x_gpu.sbatch

View File

@ -1,17 +0,0 @@
name: QE-CPU Merlin7 Scheduler
run-name: QE-CPU Merlin7 Scheduler
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *"
jobs:
checkout:
runs-on: merlin7
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Sbatch CPU script
run: |
chmod +x .gitea/workflows/sbatch/q-e_cpu.sbatch
sbatch .gitea/workflows/sbatch/q-e_cpu.sbatch

View File

@ -1,17 +0,0 @@
name: QE-GH Merlin7 Scheduler
run-name: QE-GH Merlin7 Scheduler
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *"
jobs:
checkout:
runs-on: merlin7
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Sbatch GH GPU script
run: |
chmod +x .gitea/workflows/sbatch/q-e_gh.sbatch
sbatch .gitea/workflows/sbatch/q-e_gh.sbatch

View File

@ -1,17 +0,0 @@
name: QE-GPU Merlin7 Scheduler
run-name: QE-GPU Merlin7 Scheduler
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *"
jobs:
checkout:
runs-on: merlin7
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Sbatch A100 GPU script
run: |
chmod +x .gitea/workflows/sbatch/q-e_gpu.sbatch
sbatch .gitea/workflows/sbatch/q-e_gpu.sbatch

View File

@ -1,31 +0,0 @@
#!/bin/bash
#SBATCH --job-name="ippl-scheduled-GH-GPU"
#SBATCH --output=_scheduler-stdout.txt
#SBATCH --error=_scheduler-stderr.txt
#SBATCH --partition=gh-daily
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=16
#SBATCH --time=01:00:00
#SBATCH --cluster=tgmerlin7
#SBATCH --gpus=1
#SBATCH --wait
export SSL_CERT_FILE=/etc/ssl/ca-bundle.pem
export REQUESTS_CA_BUNDLE=/etc/ssl/ca-bundle.pem
PMODULES_VERSION='2.0.0.2'
source /opt/psi/config/profile.bash
module purge
module use Spack unstable
module load gcc/13.2.0 openmpi/5.0.3-3lmi-GH200-gpu
module load boost/1.82.0-3ns6 fftw/3.3.10 gnutls/3.8.3 googletest/1.14.0 gsl/2.7.1 h5hut/2.0.0rc7 openblas/0.3.26 cmake/3.31.4-u2nm
git clone https://github.com/IPPL-framework/ippl.git
cd ippl
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DKokkos_ARCH_HOPPER90=ON -DCMAKE_CXX_STANDARD=20 -DIPPL_ENABLE_FFT=ON -DIPPL_ENABLE_TESTS=ON -DUSE_ALTERNATIVE_VARIANT=ON -DIPPL_ENABLE_SOLVERS=ON -DIPPL_ENABLE_ALPINE=True -DIPPL_PLATFORMS=cuda ..
make -j 16

View File

@ -1,30 +0,0 @@
#!/bin/bash
#SBATCH --job-name="ippl-scheduled-A100-GPU"
#SBATCH --output=_scheduler-stdout.txt
#SBATCH --error=_scheduler-stderr.txt
#SBATCH --partition=a100-daily
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=16
#SBATCH --time=01:00:00
#SBATCH --cluster=tgmerlin7
#SBATCH --gpus=1
#SBATCH --wait
export SSL_CERT_FILE=/etc/ssl/ca-bundle.pem
export REQUESTS_CA_BUNDLE=/etc/ssl/ca-bundle.pem
PMODULES_VERSION='2.0.0.2'
source /opt/psi/config/profile.bash
module use Spack unstable
module load gcc/13.2.0 openmpi/4.1.6-57rc-A100-gpu
module load boost/1.82.0-e7gp fftw/3.3.10 gnutls/3.8.3 googletest/1.14.0 gsl/2.8 h5hut/2.0.0rc7 openblas/0.3.26-omp cmake/3.31.6-oe7u
git clone https://github.com/IPPL-framework/ippl.git
cd ippl
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DKokkos_ARCH_AMPERE80=ON -DCMAKE_CXX_STANDARD=20 -DIPPL_ENABLE_FFT=ON -DIPPL_ENABLE_TESTS=ON -DUSE_ALTERNATIVE_VARIANT=ON -DIPPL_ENABLE_SOLVERS=ON -DIPPL_ENABLE_ALPINE=True -DIPPL_PLATFORMS=cuda ..
make -j 16

View File

@ -1,32 +0,0 @@
#!/bin/bash
#SBATCH --job-name="opal-x-scheduled-GH-GPU"
#SBATCH --output=_scheduler-stdout.txt
#SBATCH --error=_scheduler-stderr.txt
#SBATCH --partition=gh-daily
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=16
#SBATCH --time=01:00:00
#SBATCH --cluster=tgmerlin7
#SBATCH --gpus=1
#SBATCH --wait
export SSL_CERT_FILE=/etc/ssl/ca-bundle.pem
export REQUESTS_CA_BUNDLE=/etc/ssl/ca-bundle.pem
PMODULES_VERSION='2.0.0.2'
source /opt/psi/config/profile.bash
module purge
module use Spack unstable
module load gcc/13.2.0 openmpi/5.0.3-3lmi-GH200-gpu
module load boost/1.82.0-3ns6 fftw/3.3.10 gnutls/3.8.3 googletest/1.14.0 gsl/2.7.1 h5hut/2.0.0rc7 openblas/0.3.26 cmake/3.31.4-u2nm
git clone https://gitlab.psi.ch/OPAL/opal-x/src.git opal-x
cd opal-x
./gen_OPALrevision
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DKokkos_ARCH_HOPPER90=ON -DCMAKE_CXX_STANDARD=20 -DIPPL_ENABLE_FFT=ON -DIPPL_ENABLE_TESTS=OFF -DUSE_ALTERNATIVE_VARIANT=ON -DIPPL_ENABLE_SOLVERS=ON -DIPPL_ENABLE_ALPINE=True -DIPPL_PLATFORMS=cuda ..
make -j 16

View File

@ -1,31 +0,0 @@
#!/bin/bash
#SBATCH --job-name="opal-x-scheduled-A100-GPU"
#SBATCH --output=_scheduler-stdout.txt
#SBATCH --error=_scheduler-stderr.txt
#SBATCH --partition=a100-daily
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=16
#SBATCH --time=01:00:00
#SBATCH --cluster=tgmerlin7
#SBATCH --gpus=1
#SBATCH --wait
export SSL_CERT_FILE=/etc/ssl/ca-bundle.pem
export REQUESTS_CA_BUNDLE=/etc/ssl/ca-bundle.pem
PMODULES_VERSION='2.0.0.2'
source /opt/psi/config/profile.bash
module use Spack unstable
module load gcc/13.2.0 openmpi/4.1.6-57rc-A100-gpu
module load boost/1.82.0-e7gp fftw/3.3.10 gnutls/3.8.3 googletest/1.14.0 gsl/2.8 h5hut/2.0.0rc7 openblas/0.3.26-omp cmake/3.31.6-oe7u
git clone https://gitlab.psi.ch/OPAL/opal-x/src.git opal-x
cd opal-x
./gen_OPALrevision
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DKokkos_ARCH_AMPERE80=ON -DCMAKE_CXX_STANDARD=20 -DIPPL_ENABLE_FFT=ON -DIPPL_ENABLE_TESTS=OFF -DIPPL_ENABLE_SOLVERS=ON -DIPPL_ENABLE_ALPINE=True -DIPPL_PLATFORMS=cuda ..
make -j 16

View File

@ -1,25 +0,0 @@
#!/bin/bash
#SBATCH --job-name="qe-scheduled-CPU"
#SBATCH --output=_scheduler-stdout.txt
#SBATCH --error=_scheduler-stderr.txt
#SBATCH --partition=daily
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=16
#SBATCH --time=01:00:00
#SBATCH --cluster=tmerlin7
#SBATCH --wait
export SSL_CERT_FILE=/etc/ssl/ca-bundle.pem
export REQUESTS_CA_BUNDLE=/etc/ssl/ca-bundle.pem
PMODULES_VERSION='2.0.0.2'
source /opt/psi/config/profile.bash
module use Spack unstable
module load gcc/12.3 openmpi/main-syah fftw/3.3.10.6-omp hdf5/1.14.5-t46c openblas/0.3.29-omp cmake/3.31.6-oe7u
git clone https://gitlab.com/QEF/q-e.git
cd q-e
mkdir build
cd build
cmake -DQE_ENABLE_MPI:BOOL=ON -DQE_ENABLE_OPENMP:BOOL=ON -DCMAKE_C_COMPILER:STRING=mpicc -DCMAKE_Fortran_COMPILER:STRING=mpif90 -DQE_ENABLE_HDF5:BOOL=ON ..
make -j 16

View File

@ -1,27 +0,0 @@
#!/bin/bash
#SBATCH --job-name="qe-scheduled-GH-GPU"
#SBATCH --output=_scheduler-stdout.txt
#SBATCH --error=_scheduler-stderr.txt
#SBATCH --partition=gh-daily
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=16
#SBATCH --time=01:00:00
#SBATCH --cluster=tgmerlin7
#SBATCH --gpus=1
#SBATCH --wait
export SSL_CERT_FILE=/etc/ssl/ca-bundle.pem
export REQUESTS_CA_BUNDLE=/etc/ssl/ca-bundle.pem
PMODULES_VERSION='2.0.0.2'
source /opt/psi/config/profile.bash
module use Spack unstable
module load nvhpc/25.3 openmpi/5.0.7-e3bf-GH200-gpu fftw/3.3.10-sfpw-omp hdf5/develop-2.0-ztvo nvpl-blas/0.4.0.1-3zpg nvpl-lapack/0.3.0-ymy5 netlib-scalapack/2.2.2-qrhq cmake/3.31.6-5dl7
module load git/2.42.0-y4e4
git clone https://gitlab.com/QEF/q-e.git
cd q-e
mkdir build
cd build
cmake -DQE_ENABLE_MPI:BOOL=ON -DQE_ENABLE_OPENMP:BOOL=ON -DQE_ENABLE_SCALAPACK:BOOL=ON -DQE_ENABLE_CUDA:BOOL=ON -DQE_ENABLE_MPI_GPU_AWARE:BOOL=ON -DQE_ENABLE_OPENACC:BOOL=ON -DCMAKE_C_COMPILER:STRING=mpicc -DCMAKE_Fortran_COMPILER:STRING=mpif90 -DQE_ENABLE_HDF5:BOOL=ON ..
make -j 16

View File

@ -1,25 +0,0 @@
#!/bin/bash
#SBATCH --job-name="qe-scheduled-A100-GPU"
#SBATCH --output=_scheduler-stdout.txt
#SBATCH --error=_scheduler-stderr.txt
#SBATCH --partition=a100-daily
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=16
#SBATCH --time=01:00:00
#SBATCH --cluster=tgmerlin7
#SBATCH --gpus=1
#SBATCH --wait
export SSL_CERT_FILE=/etc/ssl/ca-bundle.pem
export REQUESTS_CA_BUNDLE=/etc/ssl/ca-bundle.pem
PMODULES_VERSION='2.0.0.2'
source /opt/psi/config/profile.bash
module use Spack unstable
module load nvhpc/25.3 openmpi/main-6bnq-A100-gpu fftw/3.3.10.6-qbxu-omp hdf5/develop-2.0-rjgu netlib-scalapack/2.2.2-3hgw cmake/3.31.6-oe7u
git clone https://gitlab.com/QEF/q-e.git
cd q-e
mkdir build
cd build
cmake -DQE_ENABLE_MPI:BOOL=ON -DQE_ENABLE_OPENMP:BOOL=ON -DQE_ENABLE_SCALAPACK:BOOL=ON -DQE_ENABLE_CUDA:BOOL=ON -DQE_ENABLE_MPI_GPU_AWARE:BOOL=ON -DQE_ENABLE_OPENACC:BOOL=ON -DCMAKE_C_COMPILER:STRING=mpicc -DCMAKE_Fortran_COMPILER:STRING=mpif90 -DQE_ENABLE_HDF5:BOOL=ON ..
make -j 16

32
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,32 @@
stages: [build_test]
variables:
GIT_STRATEGY: clone
MAX_JOB_NB: 4
SPACK_BRANCH: develop
SPACK_PCKG: ffbidx
SPACK_PCKG_VERSION: main
SPACK_REPO: https://github.com/spack/spack.git
build_test:
tags:
- merlin
stage: build_test
script:
- git clone ${SPACK_REPO} -b ${SPACK_BRANCH}
- . "./spack/share/spack/setup-env.sh"
- source /opt/psi/config/profile.bash
- module load git-lfs
- spack clean -a # Make sure spack doesn't have any caches left
- rm -rf /scratch/${USER}/spack-dev/${SPACK_PCKG} # Remove previous packages
- spack uninstall -Ray
- SPACK_PCKG_LOWERCASE=$(echo "${SPACK_PCKG,,}")
- if [[ "$SPACK_PCKG_LOWERCASE" == "hiqsimulator" ]]; then
- SPACK_PCKG_LOWERCASE="py-$SPACK_PCKG_LOWERCASE"
- fi
- spack env activate --without-view env/$(spack arch -o)/${SPACK_PCKG_LOWERCASE}
- spack develop --path /scratch/\$user/spack-dev/${SPACK_PCKG} --force ${SPACK_PCKG_LOWERCASE}@${SPACK_PCKG_VERSION}
- spack install -j ${MAX_JOB_NB}
- spack load
# - JOB_ID=$(sbatch --parsable ../test/run.slurm)
# - cat slurm-${JOB_ID}.out

View File

@ -2,7 +2,7 @@
[Official Spack documentation](https://spack.readthedocs.io/en/latest/)
## How to use on Merlin systems (Merlin6/Merlin7/Ra)
## How to use on Merlin systems (Merlin6/Merlin7)
Load the spack module

View File

@ -13,18 +13,14 @@ spack:
- gcc_12.3.0_openmpi:
- opal@master/l4dkgyf
include:
- $spack/../spack-psi/env/rhel7/$target_family/sysconfigs/packages.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/rhel8/x86_64/admin/stable
- $spack/spack-psi/env/rhel7/$target_family/sysconfigs/packages.yaml
- $spack/spack-psi/env/rhel7/$target_family/sysconfigs/compilers.yaml
mirrors:
local_psi: file:///afs/psi.ch/software/spack/testing
modules:
default:
roots:
tcl: $spack/opt/spack/stable/modulefiles
lmod:
core_compilers:
- gcc@=4.8.5
specs:
- matrix:
- [$compilers]

View File

@ -1,3 +1,4 @@
---
spack:
concretizer:
unify: false
@ -7,15 +8,13 @@ spack:
# Strongly adviced to avoid problems with buildcaches
padded_length: 256
include:
- $spack/../spack-psi/env/rhel7/$target_family/sysconfigs/packages.yaml
#include_concrete:
#- /afs/psi.ch/sys/spack/spack-psi/env/rhel8/x86_64/admin/testing
- $spack/spack-psi/env/rhel7/$target_family/sysconfigs/packages.yaml
- $spack/spack-psi/env/rhel7/$target_family/sysconfigs/compilers.yaml
mirrors:
local_psi: file:///afs/psi.ch/software/spack/testing
modules:
default:
roots:
tcl: $spack/opt/spack/testing/modulefiles
specs:
- opencv
specs: []
view: false

File diff suppressed because one or more lines are too long

View File

@ -12,7 +12,6 @@ spack:
- ffbidx@main/vyjua6z
- sratoolkit@3.1.1/2szh2jy
- star@2.7.11a/icumpki
- opencv@4.10.0/7fjszca
- gcc_12.3.0_openmpi:
- cp2k@2024.1/2bayb45 # ~cuda
- cp2k@2024.1/exkrpix # +cuda
@ -22,15 +21,14 @@ spack:
- oneapi_2024.1.0_openmpi:
- gromacs@2024.1/pi5t2pp # ~cuda
include:
- $spack/../spack-psi/env/rhel7/$target_family/sysconfigs/packages.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/rhel8/x86_64/admin/unstable
- $spack/spack-psi/env/rhel7/$target_family/sysconfigs/packages.yaml
- $spack/spack-psi/env/rhel7/$target_family/sysconfigs/compilers.yaml
mirrors:
local_psi: file:///afs/psi.ch/software/spack/testing
modules:
default:
roots:
lmod: $spack/opt/spack/unstable/modulefiles
tcl: $spack/opt/spack/unstable/modulefiles
specs:
- matrix:
- [$gcc_12.3.0]

View File

@ -15,10 +15,10 @@ compilers:
- compiler:
spec: gcc@=12.3.0
paths:
cc: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/gcc-12.3.0-zpn75bqd4uuxamtoonk5tkiproitfqpt/bin/gcc
cxx: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/gcc-12.3.0-zpn75bqd4uuxamtoonk5tkiproitfqpt/bin/g++
f77: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/gcc-12.3.0-zpn75bqd4uuxamtoonk5tkiproitfqpt/bin/gfortran
fc: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/gcc-12.3.0-zpn75bqd4uuxamtoonk5tkiproitfqpt/bin/gfortran
cc: /afs/psi.ch/sys/spack/system/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/gcc-12.3.0-zpn75bqd4uuxamtoonk5tkiproitfqpt/bin/gcc
cxx: /afs/psi.ch/sys/spack/system/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/gcc-12.3.0-zpn75bqd4uuxamtoonk5tkiproitfqpt/bin/g++
f77: /afs/psi.ch/sys/spack/system/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/gcc-12.3.0-zpn75bqd4uuxamtoonk5tkiproitfqpt/bin/gfortran
fc: /afs/psi.ch/sys/spack/system/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/gcc-12.3.0-zpn75bqd4uuxamtoonk5tkiproitfqpt/bin/gfortran
flags: {}
operating_system: rhel7
target: x86_64
@ -28,10 +28,10 @@ compilers:
- compiler:
spec: oneapi@=2024.1.0
paths:
cc: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/intel-oneapi-compilers-2024.1.0-4xhusak77uwpnggnimldlea4qydtzxy7/compiler/2024.1/bin/icx
cxx: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/intel-oneapi-compilers-2024.1.0-4xhusak77uwpnggnimldlea4qydtzxy7/compiler/2024.1/bin/icpx
f77: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/intel-oneapi-compilers-2024.1.0-4xhusak77uwpnggnimldlea4qydtzxy7/compiler/2024.1/bin/ifx
fc: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/intel-oneapi-compilers-2024.1.0-4xhusak77uwpnggnimldlea4qydtzxy7/compiler/2024.1/bin/ifx
cc: /afs/psi.ch/sys/spack/system/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/intel-oneapi-compilers-2024.1.0-4xhusak77uwpnggnimldlea4qydtzxy7/compiler/2024.1/bin/icx
cxx: /afs/psi.ch/sys/spack/system/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/intel-oneapi-compilers-2024.1.0-4xhusak77uwpnggnimldlea4qydtzxy7/compiler/2024.1/bin/icpx
f77: /afs/psi.ch/sys/spack/system/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/intel-oneapi-compilers-2024.1.0-4xhusak77uwpnggnimldlea4qydtzxy7/compiler/2024.1/bin/ifx
fc: /afs/psi.ch/sys/spack/system/opt/spack/stable/linux-rhel7-x86_64/gcc-4.8.5/intel-oneapi-compilers-2024.1.0-4xhusak77uwpnggnimldlea4qydtzxy7/compiler/2024.1/bin/ifx
flags: {}
operating_system: rhel7
target: x86_64

View File

@ -69,6 +69,8 @@ packages:
require: '%gcc'
freetype:
require: '%gcc@4.8.5'
gams:
require: '%gcc@4.8.5'
gawk:
require: '%gcc@4.8.5'
gcc:
@ -145,7 +147,7 @@ packages:
libxml2:
require: '%gcc@4.8.5'
libxpm:
require: '%gcc'
require: '%gcc@4.8.5'
libxt:
require: '%gcc'
m4:
@ -169,7 +171,7 @@ packages:
prefix: /usr
openmpi:
require:
- spec: schedulers=slurm fabrics=auto +internal-pmix +cxx +cuda +legacylaunchers
- spec: schedulers=slurm fabrics=auto pmi-interface=pmi2 +cxx +cuda +legacylaunchers
- spec: '+cxx_exceptions'
when: '%gcc'
openssh:

View File

@ -2,15 +2,13 @@ spack:
concretizer:
unify: false
include:
- $spack/../spack-psi/env/rhel7/x86_64/sysconfigs/packages.yaml
- $spack/spack-psi/env/rhel7/x86_64/sysconfigs/packages.yaml
- $spack/spack-psi/env/rhel7/x86_64/sysconfigs/compilers.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/rhel7/x86_64/admin/stable
- /afs/psi.ch/sys/spack/spack-psi/env/rhel8/x86_64/admin/stable
- /afs/psi.ch/sys/spack/system/spack-psi/env/rhel7/x86_64/admin/stable
specs: []
upstreams:
stable:
install_tree: >-
$spack/opt/spack/stable
repos:
- $spack/../user/$user/spack-repo
view: false

View File

@ -2,18 +2,15 @@ spack:
concretizer:
unify: false
include:
- $spack/../spack-psi/env/rhel7/x86_64/sysconfigs/packages.yaml
- $spack/spack-psi/env/rhel7/x86_64/sysconfigs/packages.yaml
- $spack/spack-psi/env/rhel7/x86_64/sysconfigs/compilers.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/rhel7/x86_64/admin/stable
- /afs/psi.ch/sys/spack/spack-psi/env/rhel8/x86_64/admin/stable
- /afs/psi.ch/sys/spack/spack-psi/env/rhel7/x86_64/admin/unstable
- /afs/psi.ch/sys/spack/spack-psi/env/rhel8/x86_64/admin/unstable
- /afs/psi.ch/sys/spack/system/spack-psi/env/rhel7/x86_64/admin/stable
- /afs/psi.ch/sys/spack/system/spack-psi/env/rhel7/x86_64/admin/unstable
specs: []
upstreams:
stable:
install_tree: $spack/opt/spack/stable
unstable:
install_tree: $spack/opt/spack/unstable
repos:
- $spack/../user/$user/spack-repo
view: false

File diff suppressed because one or more lines are too long

View File

@ -1,36 +0,0 @@
spack:
concretizer:
unify: false
config:
install_tree:
root: $spack/opt/spack/stable
definitions:
- compilers:
- gcc@=12.3.0
- intel-oneapi-compilers@=2024.1.0
- gcc_4.8.5:
- fpart@1.6.0/lcygtky
- gcc_12.3.0_openmpi:
- opal@master/l4dkgyf
include:
- $spack/../spack-psi/env/rhel8/$target_family/sysconfigs/packages.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/rhel7/x86_64/admin/stable
mirrors:
local_psi: file:///afs/psi.ch/software/spack/testing
modules:
default:
roots:
tcl: $spack/opt/spack/stable/modulefiles
specs:
- matrix:
- [$compilers]
- ['%gcc@4.8.5']
- matrix:
- [$gcc_4.8.5]
- ['%gcc@4.8.5']
- matrix:
- [$gcc_12.3.0_openmpi]
- [^openmpi%gcc]
- ['%gcc@12.3.0']
view: false

View File

@ -1,21 +0,0 @@
---
spack:
concretizer:
unify: false
config:
install_tree:
root: $spack/opt/spack/testing
# Strongly adviced to avoid problems with buildcaches
padded_length: 256
include:
- $spack/../spack-psi/env/rhel8/$target_family/sysconfigs/packages.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/rhel7/x86_64/admin/testing
mirrors:
local_psi: file:///afs/psi.ch/software/spack/testing
modules:
default:
roots:
tcl: $spack/opt/spack/testing/modulefiles
specs: []
view: false

File diff suppressed because one or more lines are too long

View File

@ -1,45 +0,0 @@
---
spack:
concretizer:
unify: false
config:
install_tree:
root: $spack/opt/spack/unstable
definitions:
- gcc_12.3.0:
- cellranger@8.0.1/6h63gx
- fastqc@0.12.1/dkkcfu5
- ffbidx@main/vyjua6z
- sratoolkit@3.1.1/2szh2jy
- star@2.7.11a/icumpki
- gcc_12.3.0_openmpi:
- cp2k@2024.1/2bayb45 # ~cuda
- cp2k@2024.1/exkrpix # +cuda
- quantum-espresso@7.3.1/yuxkoz2 # hdf5=parallel
- py-alphafold@2.3.2/rrfdppp # ~cuda
- py-alphafold@2.3.2/tqziprv # +cuda
- oneapi_2024.1.0_openmpi:
- gromacs@2024.1/pi5t2pp # ~cuda
include:
- $spack/../spack-psi/env/rhel8/$target_family/sysconfigs/packages.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/rhel7/x86_64/admin/unstable
mirrors:
local_psi: file:///afs/psi.ch/software/spack/testing
modules:
default:
roots:
tcl: $spack/opt/spack/unstable/modulefiles
specs:
- matrix:
- [$gcc_12.3.0]
- ['%gcc@12.3.0']
- matrix:
- [$gcc_12.3.0_openmpi]
- [^openmpi%gcc]
- ['%gcc@12.3.0']
- matrix:
- [$oneapi_2024.1.0_openmpi]
- [^openmpi%oneapi]
- ['%oneapi@2024.1.0']
view: false

View File

@ -1,14 +0,0 @@
compilers:
- compiler:
environment: {}
extra_rpaths: []
flags: {}
modules: []
operating_system: rhel8
paths:
cc: /usr/bin/gcc
cxx: /usr/bin/g++
f77: /usr/bin/gfortran
fc: /usr/bin/gfortran
spec: gcc@8.5.0
target: x86_64

View File

@ -1,224 +0,0 @@
---
packages:
all:
compiler: [gcc@8.5.0, oneapi, nvhpc]
prefer:
- spec: '^openmpi'
providers:
blas: [openblas, intel-oneapi-mkl, nvhpc]
lapack: [openblas, intel-oneapi-mkl, nvhpc]
mpi: [openmpi, mpich, intel-oneapi-mpi]
pkgconfig: [pkg-config]
require:
- spec: 'target=skylake_avx512'
when: "%nvhpc"
message: "nvhpc compilers cannot target generic x86_64 microarchitecture."
- spec: "os=rhel8"
target: [x86_64]
# Default GPU arch
variants:
- cuda_arch=60
autoconf:
require: '%gcc@8.5.0'
automake:
require: '%gcc@8.5.0'
berkeley-db:
require: '%gcc@8.5.0'
binutils:
require: '%gcc@8.5.0'
boost:
require: '%gcc'
bzip2:
require: '%gcc@8.5.0'
ca-certificates-mozilla:
require: '%gcc@8.5.0'
cairo:
require: '%gcc@8.5.0'
cmake:
require: '%gcc'
coreutils:
require: '%gcc@8.5.0'
cp2k:
require: 'build_system=makefile'
cpio:
require: '%gcc'
ctffind:
require: '%gcc'
# Makes sure the binary works on any sytem (incl. Gwendolen)
cuda:
require: '@12.2:'
curl:
require: '%gcc@8.5.0'
cvs:
require: '%gcc@8.5.0'
diffutils:
require: '%gcc@8.5.0'
doxygen:
require: '%gcc'
expat:
require: '%gcc@8.5.0'
file:
require: '%gcc@8.5.0'
findutils:
require: '%gcc@8.5.0'
flex:
require: '%gcc@8.5.0'
fltk:
require: '%gcc'
fontconfig:
require: '%gcc'
freetype:
require: '%gcc@8.5.0'
gams:
require: '%gcc@8.5.0'
gawk:
require: '%gcc@8.5.0'
gcc:
require: '%gcc@8.5.0'
gdbm:
require: '%gcc@8.5.0'
gettext:
buildable: false
externals:
- prefix: /usr
spec: gettext@0.19.8.1
ghostscript:
require: '%gcc@8.5.0'
git:
require: '%gcc@8.5.0'
glew:
require: '%gcc'
gmake:
require: '%gcc@8.5.0'
groff:
require: '%gcc@8.5.0'
harfbuzz:
require: '%gcc'
hcoll:
require: '%gcc@8.5.0'
icu4c:
require: '@67.1%gcc@12.3.0'
intel-oneapi-compilers:
require: '%gcc@8.5.0'
libbsd:
require: '%gcc@8.5.0'
libcroco:
require: '%gcc@8.5.0'
libepoxy:
require: '%gcc@8.5.0'
libevent:
require: '%gcc@8.5.0'
libfuse:
require: '%gcc@8.5.0'
libice:
require: '%gcc@8.5.0'
libiconv:
require: '%gcc@8.5.0'
libidn2:
require: '%gcc@8.5.0'
libjpeg-turbo:
require: '%gcc@8.5.0'
libmd:
require: '%gcc@8.5.0'
libpciaccess:
require: '%gcc@8.5.0'
libpthread:
require: '%gcc@8.5.0'
libpthread-stubs:
require: '%gcc@8.5.0'
libreadline:
require: '%gcc@8.5.0'
librsvg:
require: '%gcc'
libsigsegv:
require: '%gcc@8.5.0'
libtiff:
require: '%gcc'
libtool:
require: '%gcc@8.5.0'
libx11:
require: '%gcc@8.5.0'
libxcb:
require: '%gcc@8.5.0'
libxext:
require: '%gcc@8.5.0'
libxft:
require: '%gcc'
libxml2:
require: '%gcc@8.5.0'
libxpm:
require: '%gcc@8.5.0'
libxt:
require: '%gcc'
m4:
require: '%gcc@8.5.0'
ncurses:
require: '%gcc@8.5.0'
ninja:
require: '%gcc@8.5.0'
nlohmann-json:
require: '%gcc@8.5.0'
numactl:
require: '%gcc@8.5.0'
nvhpc:
require: '%gcc@8.5.0 install_type=network'
openblas:
require: '%gcc'
openmpi:
require:
- spec: schedulers=slurm fabrics=auto pmi-interface=pmi2 +cxx +cuda +legacylaunchers
- spec: '+cxx_exceptions'
when: '%gcc'
openssh:
require: '%gcc@8.5.0'
openssl:
require: '%gcc@8.5.0'
pcre2:
require: '%gcc@8.5.0'
perl:
require: '%gcc@8.5.0'
pkg-config:
require: '%gcc@8.5.0'
py-numpy:
require: '%gcc@12.3.0'
python:
require: '%gcc'
readline:
require: '%gcc@8.5.0'
rsync:
require: '%gcc@8.5.0'
ruby:
require: '%gcc@8.5.0'
sed:
require: '%gcc@8.5.0'
slurm:
buildable: false
externals:
- prefix: /usr
spec: slurm@24-05-2-1 +pmix +hwloc +hdf5 +mariadb +pam
sqlite:
require: '%gcc@8.5.0'
subversion:
require: '%gcc@8.5.0'
tar:
require: '%gcc@8.5.0'
texinfo:
require: '%gcc@8.5.0'
unuran:
require: '%gcc@8.5.0'
util-linux-uuid:
require: '%gcc@8.5.0'
util-macros:
require: '%gcc@8.5.0'
valgrind:
require: '%gcc@8.5.0'
xerces-c:
require: '%gcc@8.5.0'
xxhash:
require: '%gcc@8.5.0'
xz:
require: '%gcc@8.5.0'
zlib:
require: '%gcc@8.5.0'
zstd:
require: '%gcc@8.5.0'

View File

@ -1,16 +0,0 @@
spack:
concretizer:
unify: false
include:
- $spack/../spack-psi/env/rhel8/x86_64/sysconfigs/packages.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/rhel8/x86_64/admin/stable
- /afs/psi.ch/sys/spack/spack-psi/env/rhel7/x86_64/admin/stable
specs: []
upstreams:
stable:
install_tree: >-
$spack/opt/spack/stable
repos:
- $spack/../user/$user/spack-repo
view: false

View File

@ -1,19 +0,0 @@
spack:
concretizer:
unify: false
include:
- $spack/../spack-psi/env/rhel8/x86_64/sysconfigs/packages.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/rhel8/x86_64/admin/stable
- /afs/psi.ch/sys/spack/spack-psi/env/rhel8/x86_64/admin/unstable
- /afs/psi.ch/sys/spack/spack-psi/env/rhel7/x86_64/admin/stable
- /afs/psi.ch/sys/spack/spack-psi/env/rhel7/x86_64/admin/unstable
specs: []
upstreams:
stable:
install_tree: $spack/opt/spack/stable
unstable:
install_tree: $spack/opt/spack/unstable
repos:
- $spack/../user/$user/spack-repo
view: false

File diff suppressed because one or more lines are too long

View File

@ -1,45 +0,0 @@
---
spack:
concretizer:
unify: false
config:
install_tree:
root: $spack/opt/spack/stable
definitions:
- compilers:
- gcc@13.2.0
- gcc@7.5.0
- gcc@=12.3
- nvhpc@24.3
- cce@17.0.0
include:
- $spack/../spack-psi/env/$os/$target_family/sysconfigs/packages.yaml
mirrors:
local_psi: file:///afs/psi.ch/software/spack/testing
modules:
default:
roots:
lmod: $spack/opt/spack/stable/modulefiles
lmod:
cray-mpich:
environment:
set:
SLURM_MPI_TYPE: pmix
openmpi:
environment:
set:
SLURM_MPI_TYPE: pmix
OMPI_MCA_mtl_ofi_disable_hmem: 'true'
openmpi@main:
environment:
set:
SLURM_MPI_TYPE: pmix
FI_HMEM_CUDA_USE_DMABUF: '1'
OMPI_MCA_coll: '^han'
core_compilers:
- gcc@=7.5.0
specs:
- matrix:
- [$compilers]
- ['%gcc@7.5.0']
view: false

View File

@ -1,62 +0,0 @@
spack:
concretizer:
unify: when_possible
targets:
granularity: microarchitectures
reuse:
from:
- type: local
- type: external
config:
install_tree:
root: $spack/opt/spack/testing
# Strongly adviced to avoid problems with buildcaches
padded_length: 256
include:
- $spack/../spack-psi/env/$os/$target_family/sysconfigs/packages.yaml
mirrors:
local_psi: file:///afs/psi.ch/software/spack/testing
modules:
default:
roots:
lmod: $spack/opt/spack/testing/modulefiles
lmod:
cray-mpich:
environment:
set:
SLURM_MPI_TYPE: pmix
openmpi:
environment:
set:
SLURM_MPI_TYPE: pmix
OMPI_MCA_mtl_ofi_disable_hmem: 'true'
openmpi@main:
environment:
set:
SLURM_MPI_TYPE: pmix
FI_HMEM_CUDA_USE_DMABUF: '1'
OMPI_MCA_coll: '^han'
packages:
# overwrite any existing compiler
'cce:':
buildable: true
'gcc:':
buildable: true
'nvhpc:':
buildable: true
specs: []
view: false
compilers:
- compiler:
spec: gcc@=7.5.0
paths:
cc: /usr/bin/gcc
cxx: /usr/bin/g++
f77: /usr/bin/gfortran
fc: /usr/bin/gfortran
flags: {}
operating_system: sles15
target: aarch64
modules: []
environment: {}
extra_rpaths: []

File diff suppressed because one or more lines are too long

View File

@ -1,141 +0,0 @@
spack:
concretizer:
unify: false
config:
install_tree:
root: $spack/opt/spack/unstable
definitions:
- compilers_gcc_7.5.0:
- gcc@13.2.0
- gcc@7.5.0
- gcc@=12.3
- gcc@14.2.0/tln2ck4
- nvhpc@24.3
- cce@17.0.0
- compilers_gcc_13.2.0:
- nvhpc@24.11/6wi4jhx
- gcc_7.5.0:
- ffbidx@main/3xig2i
- gcc_13.2.0:
- dssp@2.3.0/xfc2pth
- gcc_14.2.0:
- osu-micro-benchmarks@7.5/mit3iil
- osu-micro-benchmarks@7.5/6ycu464
- aws-ofi-nccl@1.13.0/nz3b3yk
- gcc_12.3_openmpi:
- gromacs@2024.1/x33hfjx
- cp2k@2024.3/m3eow6e #+cuda
- relion@4.0.1/rudfcxt
- relion@5.0.0/oyf4n7i
- gcc_12.3_cray_mpich:
- relion@5.0.0/wk4d62r
- gcc_13.2_openmpi:
- opal-x@fixSolverUnits/ttg7vdz
- gcc_14.2_openmpi:
- py-torchvision@0.20.1/ysfcgu5
- py-torchaudio@2.5.1/trrglyu
- nvhpc_24.11_openmpi:
- quantum-espresso@7.4/oed4w6w #+cuda +mpigpu hdf5=parallel
- quantum-espresso@7.3.1/d5wpqzw
include:
- $spack/../spack-psi/env/$os/$target_family/sysconfigs/packages.yaml
mirrors:
local_psi: file:///afs/psi.ch/software/spack/testing
modules:
default:
roots:
lmod: $spack/opt/spack/unstable/modulefiles
lmod:
cray-mpich:
environment:
set:
SLURM_MPI_TYPE: pmix
openmpi:
environment:
set:
SLURM_MPI_TYPE: pmix
openmpi@main:
environment:
set:
SLURM_MPI_TYPE: pmix
FI_HMEM_CUDA_USE_DMABUF: '1'
OMPI_MCA_coll: '^han'
core_compilers:
- gcc@=7.5.0
specs:
- matrix:
- [$compilers_gcc_7.5.0]
- ['%gcc@7.5.0']
- matrix:
- [$compilers_gcc_13.2.0]
- ['%gcc@13.2.0']
- matrix:
- [$gcc_7.5.0]
- ['%gcc@7.5.0']
- matrix:
- [$gcc_13.2.0]
- ['%gcc@13.2.0']
- matrix:
- [$gcc_14.2.0]
- ['%gcc@14.2.0']
- matrix:
- [$gcc_12.3_cray_mpich]
- ['%gcc@12.3']
- [^cray-mpich]
- matrix:
- [$gcc_12.3_openmpi]
- ['%gcc@12.3']
- [^openmpi]
- matrix:
- [$gcc_13.2_openmpi]
- ['%gcc@13.2']
- [^openmpi]
- matrix:
- [$gcc_14.2_openmpi]
- ['%gcc@14.2']
- [^openmpi]
- matrix:
- [$nvhpc_24.11_openmpi]
- ['%nvhpc@24.11']
- [^openmpi]
view: false
compilers:
- compiler:
spec: gcc@=14.2.0
paths:
cc: /afs/psi.ch/sys/spack/develop/opt/spack/unstable/linux-sles15-aarch64/gcc-7.5.0/gcc-14.2.0-tln2ck4lolcipi2fj2klu5dei3oac4sv/bin/gcc
cxx: /afs/psi.ch/sys/spack/develop/opt/spack/unstable/linux-sles15-aarch64/gcc-7.5.0/gcc-14.2.0-tln2ck4lolcipi2fj2klu5dei3oac4sv/bin/g++
f77: /afs/psi.ch/sys/spack/develop/opt/spack/unstable/linux-sles15-aarch64/gcc-7.5.0/gcc-14.2.0-tln2ck4lolcipi2fj2klu5dei3oac4sv/bin/gfortran
fc: /afs/psi.ch/sys/spack/develop/opt/spack/unstable/linux-sles15-aarch64/gcc-7.5.0/gcc-14.2.0-tln2ck4lolcipi2fj2klu5dei3oac4sv/bin/gfortran
flags: {}
operating_system: sles15
target: aarch64
modules: []
environment: {}
extra_rpaths: []
- compiler:
spec: gcc@=7.5.0
paths:
cc: /usr/bin/gcc
cxx: /usr/bin/g++
f77: /usr/bin/gfortran
fc: /usr/bin/gfortran
flags: {}
operating_system: sles15
target: aarch64
modules: []
environment: {}
extra_rpaths: []
- compiler:
spec: gcc@=12.3.0
paths:
cc: /usr/bin/gcc-12
cxx: /usr/bin/g++-12
f77: /usr/bin/gfortran-12
fc: /usr/bin/gfortran-12
flags: {}
operating_system: sles15
target: aarch64
modules: []
environment: {}
extra_rpaths: []

View File

@ -1,31 +0,0 @@
compilers:
- compiler:
spec: gcc@=13.2.0
paths:
cc: /afs/psi.ch/sys/spack/system/opt/spack/stable/linux-sles15-aarch64/gcc-7.5.0/gcc-13.2.0-a3pki4ocu2ipqupkaf6ghg6hry4pkxg3/bin/gcc
cxx: /afs/psi.ch/sys/spack/system/opt/spack/stable/linux-sles15-aarch64/gcc-7.5.0/gcc-13.2.0-a3pki4ocu2ipqupkaf6ghg6hry4pkxg3/bin/g++
f77: /afs/psi.ch/sys/spack/system/opt/spack/stable/linux-sles15-aarch64/gcc-7.5.0/gcc-13.2.0-a3pki4ocu2ipqupkaf6ghg6hry4pkxg3/bin/gfortran
fc: /afs/psi.ch/sys/spack/system/opt/spack/stable/linux-sles15-aarch64/gcc-7.5.0/gcc-13.2.0-a3pki4ocu2ipqupkaf6ghg6hry4pkxg3/bin/gfortran
flags: {}
operating_system: sles15
target: aarch64
modules:
- libfabric/1.22.0
environment: {}
extra_rpaths: []
- compiler:
spec: nvhpc@=24.11
paths:
cc: /afs/psi.ch/sys/spack/develop/opt/spack/unstable/linux-sles15-aarch64/gcc-13.2.0/nvhpc-24.11-6wi4jhxcgbkzgrw6fgrutvten74l5ovl/Linux_aarch64/24.11/compilers/bin/nvc
cxx: /afs/psi.ch/sys/spack/develop/opt/spack/unstable/linux-sles15-aarch64/gcc-13.2.0/nvhpc-24.11-6wi4jhxcgbkzgrw6fgrutvten74l5ovl/Linux_aarch64/24.11/compilers/bin/nvc++
f77: /afs/psi.ch/sys/spack/develop/opt/spack/unstable/linux-sles15-aarch64/gcc-13.2.0/nvhpc-24.11-6wi4jhxcgbkzgrw6fgrutvten74l5ovl/Linux_aarch64/24.11/compilers/bin/nvfortran
fc: /afs/psi.ch/sys/spack/develop/opt/spack/unstable/linux-sles15-aarch64/gcc-13.2.0/nvhpc-24.11-6wi4jhxcgbkzgrw6fgrutvten74l5ovl/Linux_aarch64/24.11/compilers/bin/nvfortran
flags: {}
operating_system: sles15
target: aarch64
modules:
- libfabric/1.22.0
- /afs/psi.ch/sys/spack/develop/opt/spack/unstable/linux-sles15-aarch64/gcc-13.2.0/nvhpc-24.11-6wi4jhxcgbkzgrw6fgrutvten74l5ovl/modulefiles/nvhpc-nompi/24.11
environment: {}
extra_rpaths:
- /afs/psi.ch/sys/spack/develop/opt/spack/unstable/linux-sles15-aarch64/gcc-13.2.0/nvhpc-24.11-6wi4jhxcgbkzgrw6fgrutvten74l5ovl/Linux_aarch64/24.11/math_libs/lib64/stubs

View File

@ -1,346 +0,0 @@
packages:
all:
compiler: [gcc, nvhpc, cce]
prefer:
- spec: '^openmpi'
when: '^mpi'
- spec: '^openblas'
when: '%gcc ^blas'
- spec: '^netlib-scalapack'
when: '+scalapack'
providers:
blas: [openblas, nvhpc, nvpl-blas]
lapack: [openblas, nvhpc, nvpl-lapack]
mpi: [openmpi, cray-mpich]
pkgconfig: [pkg-config]
scalapack: [netlib-scalapack]
require:
- spec: "os=sles15"
- spec: "target=aarch64"
when: "%gcc"
- spec: "target=neoverse_v2"
when: "%nvhpc"
# Grace Hopper arch
variants:
- cuda_arch=90
berkeley-db:
require: '%gcc@7.5.0'
boost:
require: '%gcc'
cassini-headers:
require: '@main'
ca-certificates-mozilla:
require: '%gcc@7.5.0'
cce:
externals:
- modules:
- libfabric/1.22.0
- PrgEnv-cray/8.5.0
- cce/17.0.0
spec: cce@=17.0.0
extra_attributes:
compilers:
c: cc
cxx: CC
fortran: ftn
operating_system: sles15
target: aarch64
cmake:
require: '%gcc@7.5.0'
coreutils:
require: '%gcc@7.5.0'
cray-libsci:
buildable: false
externals:
- modules:
- cray-libsci
prefix: /opt/cray/pe/libsci/23.12.5/cray/17.0/aarch64
spec: cray-libsci@23.12.5%cce@17.0.0 +mpi +openmp
- modules:
- cray-libsci
prefix: /opt/cray/pe/libsci/23.12.5/GNU/12.3/aarch64/
spec: cray-libsci@23.12.5%gcc@12.3 +mpi +openmp
cray-mpich:
buildable: false
externals:
- modules:
- PrgEnv-cce
- cray-mpich
prefix: /opt/cray/pe/mpich/8.1.28/ofi/cray/17.0
spec: cray-mpich@8.1.28%cce@17.0.0
- modules:
- PrgEnv-gnu
- cray-mpich
prefix: /opt/cray/pe/mpich/8.1.28/ofi/gnu/12.3
spec: cray-mpich@8.1.28%gcc@12.3
cray-pmi:
buildable: false
externals:
- modules:
- cray-pmi
prefix: /opt/cray/pe/pmi/6.1.13
spec: cray-pmi@6.1.13%gcc
cuda:
prefer:
- spec: '@12.8.0'
require: '@12.2.0:'
externals:
- modules:
- nvhpc-nompi/24.3
prefix: /opt/nvidia/hpc_sdk/Linux_aarch64/24.3/cuda
spec: cuda@12.2.0%nvhpc@24.3
extra_attributes:
environment:
prepend_path:
LD_LIBRARY_PATH: /opt/nvidia/hpc_sdk/Linux_aarch64/24.3/math_libs/lib64/stubs
curl:
require: '%gcc@7.5.0'
cxi-driver:
require: '@main'
egl:
buildable: False
externals:
- spec: egl@1.5.0
prefix: /usr/
expat:
require: '%gcc@7.5.0'
fftw:
externals:
- modules:
- cray-fftw/3.3.10.6
prefix: /opt/cray/pe/fftw/3.3.10.6/aarch64
spec: fftw@3.3.10.6+mpi+openmp~pfft_patches precision=double,float%gcc@12.3
findutils:
require: '%gcc@7.5.0'
flex:
require: '%gcc@7.5.0'
fltk:
require: '%gcc@7.5.0'
fontconfig:
require: '%gcc@7.5.0'
gawk:
require: '%gcc@7.5.0'
gcc:
externals:
- prefix: /usr
spec: gcc@7.5.0
extra_attributes:
compilers:
c: /usr/bin/gcc
cxx: /usr/bin/g++
fortran: /usr/bin/gfortran
operating_system: sles15
target: aarch64
modules:
- libfabric/1.22.0
- prefix: /usr
spec: gcc@=12.3
extra_attributes:
compilers:
c: /usr/bin/gcc-12
cxx: /usr/bin/g++-12
fortran: /usr/bin/gfortran-12
operating_system: sles15
target: aarch64
modules:
- libfabric/1.22.0
- PrgEnv-gnu/8.5.0
- gcc-native/12.3
gdbm:
require: '%gcc@7.5.0'
gettext:
require: '%gcc@7.5.0'
git:
require: '%gcc@7.5.0'
gmake:
require: '%gcc@7.5.0'
groff:
require: '%gcc@7.5.0'
libbsd:
require: '%gcc@7.5.0'
libcxi:
require: '@main'
libevent:
require: '%gcc@7.5.0'
# Crayism
libfabric:
buildable: true
require: '@main+cuda+uring fabrics=cxi,sockets,tcp,udp,xpmem'
externals:
- modules:
- libfabric/1.22.0
prefix: /opt/cray/libfabric/1.22.0
spec: libfabric@1.22.0
libfuse:
buildable: false
externals:
- prefix: /usr
spec: libfuse@2.9.7
libiconv:
require: '%gcc@7.5.0'
libidn2:
require: '%gcc@7.5.0'
libmd:
require: '%gcc@7.5.0'
libpciaccess:
require: '%gcc@7.5.0'
libsigsegv:
require: '%gcc@7.5.0'
librsvg:
buildable: false
externals:
- prefix: /usr
spec: librsvg@2.48.0
libtool:
require: '%gcc@7.5.0'
libxml2:
require: '%gcc@7.5.0'
llvm:
require: '%gcc@7.5.0'
m4:
require: '%gcc@7.5.0'
munge:
buildable: false
externals:
- prefix: /usr
spec: munge@0.5.15
ncurses:
require: '%gcc@7.5.0'
netcdf-c:
externals:
- modules:
- cray-netcdf/4.9.0.9
prefix: /opt/cray/pe/netcdf/4.9.0.9/crayclang/17.0
spec: netcdf-c@4.9.0.9~dap~hdf4~jna~mpi~parallel-netcdf+shared%cce@17.0.0
- modules:
- cray-netcdf-hdf5parallel/4.9.0.9
prefix: /opt/cray/pe/netcdf-hdf5parallel/4.9.0.9/crayclang/17.0
spec: netcdf-c@4.9.0.9~dap~hdf4~jna+mpi~parallel-netcdf+shared%cce@17.0.0
- modules:
- cray-netcdf/4.9.0.9
prefix: /opt/cray/pe/netcdf/4.9.0.9/gnu/12.3
spec: netcdf-c@4.9.0.9~dap~hdf4~jna~mpi~parallel-netcdf+shared%gcc@12.3
- modules:
- cray-netcdf-hdf5parallel/4.9.0.9
prefix: /opt/cray/pe/netcdf-hdf5parallel/4.9.0.9/gnu/12.3
spec: netcdf-c@4.9.0.9~dap~hdf4~jna+mpi~parallel-netcdf+shared%gcc@12.3
netcdf-fortran:
externals:
- modules:
- cray-netcdf/4.9.0.9
prefix: /opt/cray/pe/netcdf/4.9.0.9/crayclang/17.0
spec: netcdf-fortran@4.9.0.9~doc+shared%cce@17.0.0
- modules:
- cray-netcdf/4.9.0.9
prefix: /opt/cray/pe/netcdf/4.9.0.9/gnu/12.3
spec: netcdf-fortran@4.9.0.9~doc+shared%gcc@12.3
ninja:
require: '%gcc@7.5.0'
numactl:
require: '%gcc@7.5.0'
nvhpc:
externals:
- prefix: /opt/nvidia/hpc_sdk
spec: nvhpc@24.3
extra_attributes:
compilers:
c: /opt/nvidia/hpc_sdk/Linux_aarch64/24.3/compilers/bin/nvc
cxx: /opt/nvidia/hpc_sdk/Linux_aarch64/24.3/compilers/bin/nvc++
fortran: /opt/nvidia/hpc_sdk/Linux_aarch64/24.3/compilers/bin/nvfortran
operating_system: sles15
modules: nvhpc-nompi/24.3
extra_rpaths:
- /opt/nvidia/hpc_sdk/Linux_aarch64/24.3/math_libs/lib64/stubs
opal:
require:
- spec: '%gcc'
- message: Opal 2022.1.0 only builds with gcc@10.4.0
spec: '%gcc@10.4.0 ^openmpi'
when: '@2022.1.0'
opengl:
require: '%gcc@7.5.0'
openldap:
buildable: false
externals:
- prefix: /usr
spec: openldap@2.4.46
openmpi:
require:
- spec: "schedulers=slurm fabrics=ofi,xpmem +cuda +internal-pmix"
when: "@5.0.0:"
- spec: "schedulers=slurm fabrics=ofi,xpmem +cxx +cuda +legacylaunchers"
when: "@:5.0.0"
openssh:
require: '%gcc@7.5.0'
openssl:
require: '%gcc@7.5.0'
parallel-netcdf:
externals:
- modules:
- cray-parallel-netcdf/1.12.3.9
prefix: /opt/cray/pe/parallel-netcdf/1.12.3.9/crayclang/17.0
spec: parallel-netcdf@1.12.3.9+cxx+fortran%cce@17.0.0
- modules:
- cray-parallel-netcdf/1.12.3.9
prefix: /opt/cray/pe/parallel-netcdf/1.12.3.9/gnu/12.3
spec: parallel-netcdf@1.12.3.9+cxx+fortran%gcc@12.3
perl:
buildable: false
externals:
- prefix: /usr
spec: perl@5.26.1
pkg-config:
require: '%gcc@7.5.0'
pkgconf:
require: '%gcc@7.5.0'
pmix:
require: '+munge'
py-fypp:
require: '%gcc@7.5.0'
python:
require: '%gcc@7.5.0'
quantum-espresso:
require:
- spec: "^nvpl-blas ^nvpl-lapack"
when: "%nvhpc"
conflict:
- spec: '^acfl'
when: '%nvhpc'
rdma-core:
require: '%gcc@7.5.0'
readline:
require: '%gcc@7.5.0'
slurm:
buildable: false
externals:
- prefix: /usr
spec: slurm@24.05.3%gcc@7.5.0 +cgroup+gtk+hwloc+mariadb+nvml+pam+pmix+restd
sqlite:
require: '%gcc@7.5.0'
tar:
require: '%gcc@7.5.0'
texinfo:
require: '%gcc@7.5.0'
unuran:
require: '%gcc@7.5.0'
util-linux-uuid:
require: '%gcc@7.5.0'
util-macros:
require: '%gcc@7.5.0'
xpmem:
buildable: false
externals:
- spec: xpmem@2.9.6-1.1
prefix: /usr
modules:
- xpmem/2.9.6-1.1_20240511212657__g087dc11fc19d
xxhash:
require: '%gcc@7.5.0'
xz:
externals:
- prefix: /usr
spec: xz@5.2.3
zlib:
require: '%gcc@7.5.0'
zstd:
require: '%gcc@7.5.0'

View File

@ -1,14 +0,0 @@
spack:
concretizer:
unify: false
include:
- $spack/../spack-psi/env/sles15/aarch64/sysconfigs/packages.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/sles15/aarch64/admin/stable
specs: []
upstreams:
stable:
install_tree: $spack/opt/spack/stable
repos:
- $spack/../user/$user/spack-repo
view: false

View File

@ -1,17 +0,0 @@
spack:
concretizer:
unify: false
include:
- $spack/../spack-psi/env/sles15/aarch64/sysconfigs/packages.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/sles15/aarch64/admin/stable
- /afs/psi.ch/sys/spack/spack-psi/env/sles15/aarch64/admin/unstable
specs: []
upstreams:
stable:
install_tree: $spack/opt/spack/stable
unstable:
install_tree: $spack/opt/spack/unstable
repos:
- $spack/../user/$user/spack-repo
view: false

File diff suppressed because one or more lines are too long

View File

@ -6,46 +6,20 @@ spack:
install_tree:
root: $spack/opt/spack/stable
definitions:
- compilers:
- gcc@7.5.0
- gcc@=12.3.0
- intel-oneapi-compilers@=2024.1.0
- intel-oneapi-compilers@=2022.1.0
- gcc@=13.2.0
- nvhpc@23.9
- cce@17.0.0
- gcc_7.5.0:
- fpart@1.6.0/di4akxx
- gcc_12.3_mpich:
- relion@4.0.1/ve5sish #+cuda
- gcc_13.2_openmpi:
- opal-x@fixSolverUnits/q4ulqv3 #+cuda cuda_arch=80
include:
- $spack/../spack-psi/env/$os/$target_family/sysconfigs/packages.yaml
- $spack/../spack-psi/env/$os/$target_family/sysconfigs/compilers.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/sles15/aarch64/admin/stable
- $spack/spack-psi/env/$os/$target_family/sysconfigs/packages.yaml
- $spack/spack-psi/env/$os/$target_family/sysconfigs/compilers.yaml
mirrors:
local_psi: file:///afs/psi.ch/software/spack/testing
modules:
default:
roots:
lmod: $spack/opt/spack/stable/modulefiles
lmod:
cray-mpich:
environment:
set:
SLURM_MPI_TYPE: 'pmix'
LD_LIBRARY_PATH: '/opt/cray/libfabric/1.22.0/lib64'
openmpi:
environment:
set:
SLURM_MPI_TYPE: 'pmix'
OMPI_MCA_mtl_ofi_disable_hmem: 'true'
tcl: $spack/opt/spack/stable/modulefiles
specs:
- matrix:
- [$compilers]
- ['%gcc@7.5.0']
- matrix:
- [$gcc_7.5.0]
- ['%gcc@7.5.0']
@ -53,8 +27,4 @@ spack:
- [$gcc_12.3_mpich]
- ['%gcc@12.3']
- [^cray-mpich]
- matrix:
- [$gcc_13.2_openmpi]
- ['%gcc@13.2']
- [^openmpi]
view: false

View File

@ -7,26 +7,13 @@ spack:
# Strongly adviced to avoid problems with buildcaches
padded_length: 256
include:
- $spack/../spack-psi/env/$os/$target_family/sysconfigs/packages.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/sles15/aarch64/admin/testing
- $spack/spack-psi/env/$os/$target_family/sysconfigs/packages.yaml
- $spack/spack-psi/env/$os/$target_family/sysconfigs/compilers.yaml
mirrors:
local_psi: file:///afs/psi.ch/software/spack/testing
modules:
default:
roots:
lmod: $spack/opt/spack/testing/modulefiles
lmod:
cray-mpich:
environment:
set:
SLURM_MPI_TYPE: pmix
LD_LIBRARY_PATH: /opt/cray/libfabric/1.22.0/lib64
openmpi:
environment:
set:
SLURM_MPI_TYPE: pmix
OMPI_MCA_mtl_ofi_disable_hmem: 'true'
specs:
-
tcl: $spack/opt/spack/testing/modulefiles
specs: []
view: false

File diff suppressed because one or more lines are too long

View File

@ -5,98 +5,47 @@ spack:
install_tree:
root: $spack/opt/spack/unstable
definitions:
- compilers:
- gcc@7.5.0
- gcc@9.5.0/ow3yhui
- gcc@=12.3
- intel-oneapi-compilers@=2024.1.0
- intel-oneapi-compilers@=2022.1.0
- gcc@=13.2.0 arch=linux-sles15-x86_64
- nvhpc@23.9
- cce@17.0.0
- gcc_7.5.0:
- fpart@1.6.0/di4akxx
- visit@3.3.3/fo37wwb
- gcc_12.3:
- fastqc@0.12.1/eyuqqvf
- ffbidx@main/lfacuhw
- star@2.7.11a/gdgr2ea
- sratoolkit@3.1.1/7oqp6a3
- gcc_13.2:
- dmtcp@3.0.0/e76t6c5
- gams@49.1/vztjqs4
- gcc_13.2_openmpi:
- opal-x@fixSolverUnits/q4ulqv3 #+cuda cuda_arch=80
- gcc_12.3_mpich:
- cp2k@2024.1/2jesise #~cuda
- cp2k@2024.1/zqm5fme #+cuda
- relion@4.0.1/ve5sish
- quantum-espresso@7.3.1/n6mulig #~cuda
- opal@2024.1.0/mhg3mdx
- py-alphafold@2.3.2/xkw7tfm #+cuda
- sundials@7.0.0/xxysszi #sundials@7.0.0+ARKODE+CVODE+CVODES+IDA+IDAS+KINSOL+cuda+examples+examples-install~f2003~fcmix~ginkgo~hypre~int64~ipo~klu~kokkos~kokkos-kernels~lapack~magma~monitoring+mpi+openmp~petsc~profiling~pthread~raja~rocm+shared+static~superlu-dist~superlu-mt~sycl~trilinos build_system=cmake build_type=Release cstd=99 cuda_arch=80 cxxstd=14 generator=make logging-level=2 precision=double
- gcc_9.5.0_openmpi:
- q-e-sirius@develop-ristretto/bb4v7wz
- gcc_12.3_openmpi:
- gromacs@2024.1/3n7qspb #+cuda
- hdf5@1.14.3/wqcdnm7 #+mpi ^openmpi@5.0.3%gcc@12.3
- intel_2021.6.0:
- hdf5@1.14.3/yrxkczx
- nvhpc_23.9_openmpi:
- quantum-espresso@7.3.1/le35al7 #+cuda
include:
- $spack/../spack-psi/env/$os/$target_family/sysconfigs/packages.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/sles15/aarch64/admin/unstable
- $spack/spack-psi/env/$os/$target_family/sysconfigs/packages.yaml
- $spack/spack-psi/env/$os/$target_family/sysconfigs/compilers.yaml
mirrors:
local_psi: file:///afs/psi.ch/software/spack/testing
modules:
default:
roots:
lmod: $spack/opt/spack/unstable/modulefiles
lmod:
cray-mpich:
environment:
set:
SLURM_MPI_TYPE: 'pmix'
LD_LIBRARY_PATH: /opt/cray/libfabric/1.22.0/lib64
openmpi:
environment:
set:
SLURM_MPI_TYPE: 'pmix'
OMPI_MCA_mtl_ofi_disable_hmem: 'true'
tcl: $spack/opt/spack/unstable/modulefiles
specs:
- matrix:
- [$compilers]
- ['%gcc@7.5.0']
- matrix:
- [$gcc_7.5.0]
- ['%gcc@7.5.0']
- matrix:
- [$gcc_12.3]
- ['%gcc@12.3']
- matrix:
- [$gcc_13.2]
- ['%gcc@13.2']
- matrix:
- [$gcc_13.2_openmpi]
- ['%gcc@13.2']
- [^openmpi]
- matrix:
- [$gcc_12.3_mpich]
- ['%gcc@12.3']
- [^cray-mpich]
- matrix:
- [$gcc_9.5.0_openmpi]
- ['%gcc@9.5.0']
- [^openmpi]
- matrix:
- [$gcc_12.3_openmpi]
- ['%gcc@12.3']
- [^openmpi]
- matrix:
- [$intel_2021.6.0]
- ['%intel@2021.6.0']
- matrix:
- [$nvhpc_23.9_openmpi]
- ['%nvhpc@23.9']

View File

@ -1,57 +1,64 @@
compilers:
- compiler:
spec: intel@=2021.6.0
spec: cce@=17.0.0
paths:
cc: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-sles15-x86_64/gcc-7.5.0/intel-oneapi-compilers-2022.1.0-bf6lcbnmvgeb57jaihsfu22xlbgmmqe7/compiler/2022.1.0/linux/bin/intel64/icc
cxx: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-sles15-x86_64/gcc-7.5.0/intel-oneapi-compilers-2022.1.0-bf6lcbnmvgeb57jaihsfu22xlbgmmqe7/compiler/2022.1.0/linux/bin/intel64/icpc
f77: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-sles15-x86_64/gcc-7.5.0/intel-oneapi-compilers-2022.1.0-bf6lcbnmvgeb57jaihsfu22xlbgmmqe7/compiler/2022.1.0/linux/bin/intel64/ifort
fc: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-sles15-x86_64/gcc-7.5.0/intel-oneapi-compilers-2022.1.0-bf6lcbnmvgeb57jaihsfu22xlbgmmqe7/compiler/2022.1.0/linux/bin/intel64/ifort
cc: cc
cxx: CC
f77: ftn
fc: ftn
flags: {}
operating_system: sles15
target: x86_64
modules:
- libfabric/1.22.0
- libfabric/1.15.2.0
- PrgEnv-cray/8.5.0
- cce/17.0.0
environment: {}
extra_rpaths: []
- compiler:
spec: oneapi@=2022.1.0
spec: gcc@=12.3
paths:
cc: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-sles15-x86_64/gcc-7.5.0/intel-oneapi-compilers-2022.1.0-bf6lcbnmvgeb57jaihsfu22xlbgmmqe7/compiler/2022.1.0/linux/bin/icx
cxx: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-sles15-x86_64/gcc-7.5.0/intel-oneapi-compilers-2022.1.0-bf6lcbnmvgeb57jaihsfu22xlbgmmqe7/compiler/2022.1.0/linux/bin/icpx
f77: null
fc: null
cc: /usr/bin/gcc-12
cxx: /usr/bin/g++-12
f77: /usr/bin/gfortran-12
fc: /usr/bin/gfortran-12
flags: {}
operating_system: sles15
target: x86_64
modules:
- libfabric/1.22.0
- libfabric/1.15.2.0
- PrgEnv-gnu/8.5.0
- gcc-native/12.3
environment: {}
extra_rpaths: []
- compiler:
spec: gcc@=13.2.0
spec: gcc@=7.5.0
paths:
cc: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-sles15-x86_64/gcc-7.5.0/gcc-13.2.0-2k3w3v2u5u6bfnoxl5rgnnna4on3lku7/bin/gcc
cxx: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-sles15-x86_64/gcc-7.5.0/gcc-13.2.0-2k3w3v2u5u6bfnoxl5rgnnna4on3lku7/bin/g++
f77: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-sles15-x86_64/gcc-7.5.0/gcc-13.2.0-2k3w3v2u5u6bfnoxl5rgnnna4on3lku7/bin/gfortran
fc: /afs/psi.ch/sys/spack/0.22.0/opt/spack/stable/linux-sles15-x86_64/gcc-7.5.0/gcc-13.2.0-2k3w3v2u5u6bfnoxl5rgnnna4on3lku7/bin/gfortran
cc: /usr/bin/gcc
cxx: /usr/bin/g++
f77: /usr/bin/gfortran
fc: /usr/bin/gfortran
flags: {}
operating_system: sles15
target: x86_64
modules:
- libfabric/1.22.0
- libfabric/1.15.2.0
environment: {}
extra_rpaths: []
- compiler:
spec: gcc@=9.5.0
spec: nvhpc@=23.9
paths:
cc: /afs/psi.ch/sys/spack/0.23.0/opt/spack/unstable/linux-sles15-x86_64/gcc-7.5.0/gcc-9.5.0-ow3yhuibzp7u753hyh5xngfgegxgijxp/bin/gcc
cxx: /afs/psi.ch/sys/spack/0.23.0/opt/spack/unstable/linux-sles15-x86_64/gcc-7.5.0/gcc-9.5.0-ow3yhuibzp7u753hyh5xngfgegxgijxp/bin/g++
f77: /afs/psi.ch/sys/spack/0.23.0/opt/spack/unstable/linux-sles15-x86_64/gcc-7.5.0/gcc-9.5.0-ow3yhuibzp7u753hyh5xngfgegxgijxp/bin/gfortran
fc: /afs/psi.ch/sys/spack/0.23.0/opt/spack/unstable/linux-sles15-x86_64/gcc-7.5.0/gcc-9.5.0-ow3yhuibzp7u753hyh5xngfgegxgijxp/bin/gfortran
cc: /opt/nvidia/hpc_sdk/Linux_x86_64/23.9/compilers/bin/nvc
cxx: /opt/nvidia/hpc_sdk/Linux_x86_64/23.9/compilers/bin/nvc++
f77: /opt/nvidia/hpc_sdk/Linux_x86_64/23.9/compilers/bin/nvfortran
fc: /opt/nvidia/hpc_sdk/Linux_x86_64/23.9/compilers/bin/nvfortran
flags: {}
operating_system: sles15
target: x86_64
modules:
- libfabric/1.22.0
environment: {}
- nvhpc-nompi/23.9
- libfabric/1.15.2.0
environment:
prepend_path:
LD_LIBRARY_PATH: /opt/nvidia/hpc_sdk/Linux_x86_64/23.9/math_libs/lib64/stubs
extra_rpaths: []

View File

@ -1,13 +1,10 @@
packages:
all:
compiler: [gcc, nvhpc, cce]
prefer:
- spec: '^openmpi'
when: '^mpi'
compiler: [gcc@12.3, cce, nvhpc]
providers:
blas: [openblas, nvhpc, cray-libsci]
lapack: [openblas, nvhpc, cray-libsci]
mpi: [openmpi, cray-mpich]
blas: [cray-libsci, openblas, nvhpc]
lapack: [cray-libsci, openblas, nvhpc]
mpi: [cray-mpich, openmpi]
pkgconfig: [pkg-config]
scalapack: [cray-libsci]
require:
@ -16,38 +13,19 @@ packages:
when: "%gcc"
- spec: "target=zen3"
when: "%nvhpc"
# Grace Hopper arch
variants:
- cuda_arch=80
autoconf:
require: '%gcc@7.5.0'
automake:
require: '%gcc@7.5.0'
berkeley-db:
require: '%gcc@7.5.0'
boost:
require: '%gcc@7.5.0'
ca-certificates-mozilla:
require: '%gcc@7.5.0'
cce:
externals:
- modules:
- libfabric/1.22.0
- PrgEnv-cray/8.5.0
- cce/17.0.0
spec: cce@=17.0.0
extra_attributes:
compilers:
c: cc
cxx: CC
fortran: ftn
operating_system: sles15
target: x86_64
cairo:
require: '%gcc@7.5.0'
cassini-headers:
require: '@main'
cmake:
require: '%gcc'
require: '%gcc@7.5.0'
coreutils:
require: '%gcc@7.5.0'
cray-libsci:
@ -81,7 +59,7 @@ packages:
spec: cray-pmi@6.1.13%gcc
cuda:
prefer:
- spec: '@12.8.0'
- spec: '@12.2.0'
require: '@12.2.0:'
externals:
- modules:
@ -90,8 +68,6 @@ packages:
spec: cuda@12.2.0%nvhpc@23.9
curl:
require: '%gcc@7.5.0'
cxi-driver:
require: '@main'
expat:
require: '%gcc@7.5.0'
fftw:
@ -111,31 +87,7 @@ packages:
gawk:
require: '%gcc@7.5.0'
gcc:
externals:
- prefix: /usr
spec: gcc@7.5.0
extra_attributes:
compilers:
c: /usr/bin/gcc
cxx: /usr/bin/g++
fortran: /usr/bin/gfortran
operating_system: sles15
target: x86_64
modules:
- libfabric/1.22.0
- prefix: /usr
spec: gcc@=12.3
extra_attributes:
compilers:
c: /usr/bin/gcc-12
cxx: /usr/bin/g++-12
fortran: /usr/bin/gfortran-12
operating_system: sles15
target: x86_64
modules:
- libfabric/1.22.0
- PrgEnv-gnu/8.5.0
- gcc-native/12.3
require: '%gcc@7.5.0'
gdbm:
require: '%gcc@7.5.0'
gettext:
@ -150,21 +102,38 @@ packages:
require: '%gcc@7.5.0'
gtkplus:
require: 'default_library=shared,static'
hdf5:
prefer:
- spec: '~mpi'
externals:
- modules:
- cray-hdf5/1.12.2.9
prefix: /opt/cray/pe/hdf5/1.12.2.9/crayclang/17.0
spec: hdf5@1.12.2+cxx+fortran+hl~mpi+shared~szip~threadsafe%cce@17.0.0
- modules:
- cray-parallel-hdf5/1.12.2.9
prefix: /opt/cray/pe/hdf5-parallel/1.12.2.9/crayclang/17.0
spec: hdf5@1.12.2+cxx+fortran+hl+mpi+shared~szip~threadsafe%cce@17.0.0
- modules:
- cray-hdf5/1.12.2.9
prefix: /opt/cray/pe/hdf5/1.12.2.9/gnu/12.3
spec: hdf5@1.12.2+cxx+fortran+hl~mpi+shared~szip~threadsafe%gcc@12.3
- modules:
- cray-parallel-hdf5/1.12.2.9
prefix: /opt/cray/pe/hdf5-parallel/1.12.2.9/gnu/12.3
spec: hdf5@1.12.2+cxx+fortran+hl+mpi+shared~szip~threadsafe%gcc@12.3
libbsd:
require: '%gcc@7.5.0'
libcxi:
require: '@main'
libevent:
require: '%gcc@7.5.0'
# Crayism
libfabric:
buildable: true
require: '@main+cuda+uring fabrics=cxi,sockets,tcp,udp,xpmem'
buildable: false
externals:
- modules:
- libfabric/1.22.0
prefix: /opt/cray/libfabric/1.22.0
spec: libfabric@1.22.0
- libfabric/1.15.2.0
prefix: /opt/cray/libfabric/1.15.2.0
spec: libfabric@1.15.2.0
libiconv:
require: '%gcc@7.5.0'
libidn2:
@ -224,18 +193,9 @@ packages:
require: '%gcc@7.5.0'
nvhpc:
externals:
- spec: nvhpc@23.9
prefix: /opt/nvidia/hpc_sdk
extra_attributes:
compilers:
c: /opt/nvidia/hpc_sdk/Linux_x86_64/23.9/compilers/bin/nvc
cxx: /opt/nvidia/hpc_sdk/Linux_x86_64/23.9/compilers/bin/nvc++
fortran: /opt/nvidia/hpc_sdk/Linux_x86_64/23.9/compilers/bin/nvfortran
operating_system: sles15
modules: nvhpc-nompi/23.9
environment:
prepend_path:
LD_LIBRARY_PATH: '/opt/nvidia/hpc_sdk/Linux_x86_64/23.9/compilers/lib:/opt/nvidia/hpc_sdk/Linux_x86_64/23.9/math_libs/lib64/stubs'
- modules:
- nvhpc-nompi/23.9
spec: nvhpc@23.9
opal:
require:
- spec: '%gcc'
@ -251,10 +211,10 @@ packages:
spec: openldap@2.4.46
openmpi:
require:
- spec: "schedulers=slurm fabrics=ofi,xpmem +cuda +internal-pmix"
when: "@5.0.0:"
- spec: "schedulers=slurm fabrics=ofi,xpmem +pmi +cxx +cxx_exceptions +cuda +legacylaunchers"
when: "@:5.0.0"
- spec: 'schedulers=slurm fabrics=ofi +pmi pmi-interface=cray +cxx +cxx_exceptions +cuda +legacylaunchers'
when: '%gcc'
- spec: 'schedulers=slurm fabrics=ofi +pmi pmi-interface=cray +cxx +cuda +legacylaunchers'
when: '%nvhpc'
openssh:
require: '%gcc@7.5.0'
openssl:
@ -278,8 +238,6 @@ packages:
require: '%gcc@7.5.0'
pkgconf:
require: '%gcc@7.5.0'
pmix:
require: '+munge'
py-fypp:
require: '%gcc@7.5.0'
python:
@ -313,7 +271,6 @@ packages:
externals:
- modules:
- xpmem/2.8.2-1.0_3.9__g84a27a5.shasta
prefix: /usr
spec: xpmem@2.8.2-1
xxhash:
require: '%gcc@7.5.0'

View File

@ -2,14 +2,12 @@ spack:
concretizer:
unify: false
include:
- $spack/../spack-psi/env/sles15/x86_64/sysconfigs/packages.yaml
- $spack/spack-psi/env/sles15/x86_64/sysconfigs/packages.yaml
- $spack/spack-psi/env/sles15/x86_64/sysconfigs/compilers.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/sles15/x86_64/admin/stable
- /afs/psi.ch/sys/spack/spack-psi/env/sles15/aarch64/admin/stable
- /afs/psi.ch/sys/spack/system/spack-psi/env/sles15/x86_64/admin/stable
specs: []
upstreams:
stable:
install_tree: $spack/opt/spack/stable
repos:
- $spack/../user/$user/spack-repo
view: false

View File

@ -2,18 +2,15 @@ spack:
concretizer:
unify: false
include:
- $spack/../spack-psi/env/sles15/x86_64/sysconfigs/packages.yaml
- $spack/spack-psi/env/sles15/x86_64/sysconfigs/packages.yaml
- $spack/spack-psi/env/sles15/x86_64/sysconfigs/compilers.yaml
include_concrete:
- /afs/psi.ch/sys/spack/spack-psi/env/sles15/x86_64/admin/stable
- /afs/psi.ch/sys/spack/spack-psi/env/sles15/x86_64/admin/unstable
- /afs/psi.ch/sys/spack/spack-psi/env/sles15/aarch64/admin/stable
- /afs/psi.ch/sys/spack/spack-psi/env/sles15/aarch64/admin/unstable
- /afs/psi.ch/sys/spack/system/spack-psi/env/sles15/x86_64/admin/stable
- /afs/psi.ch/sys/spack/system/spack-psi/env/sles15/x86_64/admin/unstable
specs: []
upstreams:
stable:
install_tree: $spack/opt/spack/stable
unstable:
install_tree: $spack/opt/spack/unstable
repos:
- $spack/../user/$user/spack-repo
view: false

View File

@ -0,0 +1,22 @@
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: MIT
from spack.package import *
class Cmatrix(AutotoolsPackage):
"""Terminal based "The Matrix" like implementation"""
homepage = "https://github.com/abishekvashok/cmatrix"
url = "https://github.com/abishekvashok/cmatrix/archive/refs/tags/v2.0.tar.gz"
maintainers("hv15")
license("GPL-3.0-only", checked_by="hv15")
version("2.0", sha256="ad93ba39acd383696ab6a9ebbed1259ecf2d3cf9f49d6b97038c66f80749e99a")
depends_on("autoconf", type="build")
depends_on("automake", type="build")
depends_on("libtool", type="build")
depends_on("ncurses", type="build")
depends_on("kbd", type="run")

View File

@ -5,71 +5,9 @@
from spack.package import *
from spack.pkg.builtin.h5hut import H5hut as SpackH5hut
class H5hut(AutotoolsPackage):
"""H5hut (HDF5 Utility Toolkit).
High-Performance I/O Library for Particle-based Simulations."""
class H5hut(SpackH5hut):
homepage = "https://amas.psi.ch/H5hut/"
url = "https://amas.web.psi.ch/Downloads/H5hut/H5hut-2.0.0rc3.tar.gz"
git = "https://gitlab.psi.ch/H5hut/src.git"
version("2.0.0rc7", sha256="bc058c4817c356b7b7acfe386c586923103b90bdfa83575db3a91754767e6fab")
version("2.0.0rc6", sha256="980a5c634877265bd3a862fbd439d973d44be9c1d2f840c3635e8c6375d62d7e")
version("2.0.0rc3", sha256="1ca9a9478a99e1811ecbca3c02cc49258050d339ffb1a170006eab4ab2a01790")
version("master", branch="master")
variant("fortran", default=True, description="Enable Fortran support")
variant("mpi", default=True, description="Enable MPI support")
depends_on("autoconf", type="build", when="build_system=autotools")
depends_on("automake", type="build", when="build_system=autotools")
depends_on("libtool", type="build", when="build_system=autotools")
depends_on("mpi", when="+mpi")
# h5hut +mpi uses the obsolete function H5Pset_fapl_mpiposix:
depends_on("hdf5@1.8:+mpi", when="+mpi")
depends_on("hdf5@1.8:", when="~mpi")
# If built in parallel, the following error message occurs:
# install: .libs/libH5hut.a: No such file or directory
parallel = False
@run_before("configure")
def validate(self):
"""Checks if Fortran compiler is available."""
if "+fortran" in self.spec and not self.compiler.fc:
raise RuntimeError("Cannot build Fortran variant without a Fortran compiler.")
def flag_handler(self, name, flags):
build_system_flags = []
if name == "cflags" and self.spec.version < Version("2.0.0rc7"):
build_system_flags = ["-DH5_USE_110_API"]
return flags, None, build_system_flags
def autoreconf(self, spec, prefix):
which("bash")("autogen.sh")
def configure_args(self):
spec = self.spec
config_args = ["--enable-shared"]
if "+fortran" in spec:
config_args.append("--enable-fortran")
if "+mpi" in spec:
config_args.extend(
[
"--enable-parallel",
"CC={0}".format(spec["mpi"].mpicc),
"CXX={0}".format(spec["mpi"].mpicxx),
]
)
if "+fortran" in spec:
config_args.append("FC={0}".format(spec["mpi"].mpifc))
return config_args

View File

@ -1,99 +0,0 @@
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
# ----------------------------------------------------------------------------
# If you submit this package back to Spack as a pull request,
# please first remove this boilerplate and all FIXME comments.
#
# This is a template package file for Spack. We've put "FIXME"
# next to all the things you'll want to change. Once you've handled
# them, you can save this file and test your package like this:
#
# spack install ippl
#
# You can edit this file again by typing:
#
# spack edit ippl
#
# See the Spack documentation for more information on packaging.
# ----------------------------------------------------------------------------
from spack.package import *
class Ippl(CMakePackage, CudaPackage):
"""Independent Parallel Particle Layer (IPPL) is a performance portable C++ library for Particle-Mesh methods. IPPL makes use of Kokkos (https://github.com/kokkos/kokkos), HeFFTe (https://github.com/icl-utk-edu/heffte), and MPI (Message Passing Interface) to deliver a portable, massively parallel toolkit for particle-mesh methods. IPPL supports simulations in one to six dimensions, mixed precision, and asynchronous execution in different execution spaces (e.g. CPUs and GPUs)."""
homepage = "https://github.com/IPPL-framework/ippl"
url = "https://github.com/IPPL-framework/ippl/archive/refs/tags/IPPL-3.2.0.tar.gz"
git="https://github.com/IPPL-framework/ippl.git"
maintainers("germanne", "gsell")
license("GPLv3")
version("3.2.0", sha256="041a4efbddaba5b477dae01ab166354da7dee01cf625706e19f5b60c0c3f6b88")
version('opalx-fielddump', branch="opalx-fielddump")
variant(
"build_type",
default="Release",
description="CMake build type",
values=("Debug", "Release", "RelWithDebInfo", "MinSizeRel"),
)
variant("mpi", default=True, description="Enable MPI support")
variant(
"platforms",
default=True,
description="Set IPPL platforms",
values=("serial", "openmp", "cuda", "openmp/cuda")
)
variant("solvers", default=True, description="Enable solvers")
variant("fft", default=True, description="Enable full-wave solver")
variant("tests", default=False, description="Enable tests")
variant("unit_tests", default=False, description="Enable unit tests")
variant("alternative_variant", default=False, description="Use alternative variant")
variant("alpine", default=False, description="Enable Alpine")
depends_on("cmake@3.25.2:", type="build")
depends_on("fftw@3.3.10", when="+fft")
depends_on("mpi", when="+mpi")
conflicts("~mpi", msg="IPPL can not run without mpi!")
conflicts("cuda_arch=none", when="+cuda",
msg="CUDA architecture is required")
conflicts("~cuda", when="platform=cuda",
msg="CUDA is required for platform cuda.")
def cmake_args(self):
args = [
"-DCMAKE_CXX_STANDARD=20",
self.define_from_variant("ENABLE_FFT", "fft"),
self.define_from_variant("ENABLE_SOLVERS", "solvers"),
self.define_from_variant("ENABLE_TESTS", "tests"),
self.define_from_variant("ENABLE_UNIT_TESTS", "unit_tests"),
self.define_from_variant("USE_ALTERNATIVE_VARIANT", "alternative_variant"),
self.define_from_variant("ENABLE_ALPINE", "alpine"),
]
if 'platforms=cuda' in self.spec:
args.append("-DIPPL_PLATFORMS=CUDA")
elif 'platforms=openmp' in self.spec:
args.append("-DIPPL_PLATFORMS=OPENMP")
elif 'platforms=openmp/cuda' in self.spec:
args.append("-DIPPL_PLATFORMS=OPENMP;CUDA")
else:
args.append("-DIPPL_PLATFORMS=SERIAL")
if 'cuda_arch=90' in self.spec:
args.append("-DKokkos_ARCH_HOPPER90=ON")
elif 'cuda_arch=80' in self.spec:
args.append("-DKokkos_ARCH_AMPERE80=ON")
elif 'cuda_arch=60' in self.spec:
args.append("-DKokkos_ARCH_PASCAL61=ON")
return args

33
packages/kbd/package.py Normal file
View File

@ -0,0 +1,33 @@
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: MIT
from spack.package import *
class Kbd(AutotoolsPackage):
"""
This package contains tools for managing Linux console (Linux console,
virtual terminals, keyboard, etc.) mainly, what they do is loading
console fonts and keyboard maps.
"""
homepage = "https://kbd-project.org/"
url = "https://github.com/legionus/kbd/archive/refs/tags/v2.6.4.tar.gz"
maintainers("hv15")
license(" GPL-2.0-or-later", checked_by="hv15")
version("2.6.4", sha256="f5c7be3fd5365bd5150a3293cff58f836acc2b5914515c1ca91540a7f9be50f7")
version("2.6.3", sha256="f562c986e7c05677708e1f335d5c8705ebe84fdcd95b08a459bc0fe2d9d5cd39")
version("2.6.2", sha256="4aae5e83c4395c38e1fc35f4f70604db17cdf6e01da9b28ece89a9289e56d590")
version("2.6.1", sha256="51f4fad0651812a77aa8fac4774357ef4c3ff976d3ba66988d772f5c32b21549")
version("2.6.0", sha256="eb8fcab00207d01f4f76e14c97fa2796724f00571f68ccef48200939fb382d21")
version("2.6-rc1", sha256="0ef75a08e79141fb0a5b16a44bae0d3fc518a0835d1e211637021a3f81dffbaa")
version("2.5.1", sha256="80513bfc54dceb31b06648ab38ca8447305b92cc0c6b9c05abb1d275af8581a8")
version("2.5.0", sha256="20f0698ba7be12b41ba0d4e61e33d031244dc322e8e77bb924adb81429e85710")
version("2.5-rc1", sha256="290c6681a751a3bba4f0ce857e9d98457fed1c948cc3e788300b1463197367d1")
version("2.4.0", sha256="8ebb8ba274983dd446d5d66412b6224a3a4fafe1195d3be7855d6247b4819fd9")
depends_on("autoconf", type="build")
depends_on("automake", type="build")
depends_on("libtool", type="build")

View File

@ -1,37 +0,0 @@
diff --git a/config/defaults.mk b/config/defaults.mk
index d6b8d59a1..d1ba6fb9a 100644
--- a/config/defaults.mk
+++ b/config/defaults.mk
@@ -452,7 +452,7 @@ FMS_LIB = -Wl,-rpath,$(FMS_DIR)/lib -L$(FMS_DIR)/lib -lfms
# Conduit and required libraries configuration
CONDUIT_DIR = @MFEM_DIR@/../conduit
-CONDUIT_OPT = -I$(CONDUIT_DIR)/include/conduit
+CONDUIT_OPT = -I$(CONDUIT_DIR)/include
CONDUIT_LIB = \
$(XLINKER)-rpath,$(CONDUIT_DIR)/lib -L$(CONDUIT_DIR)/lib \
-lconduit -lconduit_relay -lconduit_blueprint -ldl
@@ -469,8 +469,8 @@ endif
# Sidre and required libraries configuration
# Be sure to check the HDF5_DIR (set above) is correct
SIDRE_DIR = @MFEM_DIR@/../axom
-SIDRE_OPT = -I$(SIDRE_DIR)/include -I$(CONDUIT_DIR)/include/conduit\
- -I$(HDF5_DIR)/include
+SIDRE_OPT = -I$(SIDRE_DIR)/include -I$(CONDUIT_DIR)/include/conduit \
+ -I$(CONDUIT_DIR)/include -I$(HDF5_DIR)/include
SIDRE_LIB = \
$(XLINKER)-rpath,$(SIDRE_DIR)/lib -L$(SIDRE_DIR)/lib \
$(XLINKER)-rpath,$(CONDUIT_DIR)/lib -L$(CONDUIT_DIR)/lib \
diff --git a/fem/conduitdatacollection.hpp b/fem/conduitdatacollection.hpp
index 6ff1804e0..ad0a272a4 100644
--- a/fem/conduitdatacollection.hpp
+++ b/fem/conduitdatacollection.hpp
@@ -17,7 +17,7 @@
#ifdef MFEM_USE_CONDUIT
#include "datacollection.hpp"
-#include <conduit.hpp>
+#include <conduit/conduit.hpp>
namespace mfem
{

View File

@ -1,112 +0,0 @@
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
# ----------------------------------------------------------------------------
# If you submit this package back to Spack as a pull request,
# please first remove this boilerplate and all FIXME comments.
#
# This is a template package file for Spack. We've put "FIXME"
# next to all the things you'll want to change. Once you've handled
# them, you can save this file and test your package like this:
#
# spack install opal-x
#
# You can edit this file again by typing:
#
# spack edit opal-x
#
# See the Spack documentation for more information on packaging.
# ----------------------------------------------------------------------------
from spack.package import *
class OpalX(CMakePackage, CudaPackage):
"""OPAL (Object Oriented Parallel Accelerator Library) is a parallel open source tool for charged-particle optics in linear accelerators and rings,
including 3D space charge. Using the MAD language with extensions, OPAL can run on a laptop as well as on the largest high performance computing systems.
OPAL is built from the ground up as a parallel application exemplifying the fact that high performance computing is the third leg of science,
complementing theory and experiment."""
homepage = "https://amas.web.psi.ch/opal/Documentation/master/OPAL_Manual.html"
git = "https://gitlab.psi.ch/OPAL/opal-x/src.git"
maintainers("germanne", "gsell")
license("GPLv3")
version('master', branch="master")
version('fixSolverUnits', branch="fixSolverUnits")
variant(
"build_type",
default="Release",
description="CMake build type",
values=("Debug", "Release", "RelWithDebInfo", "MinSizeRel"),
)
variant("mpi", default=True, description="Enable MPI support")
variant("solvers", default=True, description="Enable solvers")
variant("fft", default=True, description="Enable full-wave solver")
variant("tests", default=False, description="Enable tests")
variant("alternative_variant", default=False, description="Use alternative variant")
variant("alpine", default=False, description="Enable Alpine")
variant("unit_tests", default=False, description="Build unit tests")
variant("ippl_git_tag", default="master", description="IPPL git tag")
depends_on("blas")
depends_on("boost@1.82.0+mpi+chrono+filesystem+iostreams+regex+serialization+system+timer+python+shared")
depends_on("cmake@3.25.2:", type="build")
depends_on("fftw@3.3.10 +mpi")
depends_on("gsl@2.7+shared")
depends_on("gnutls@3.5.19:")
depends_on("cuda@12.4.0:")
depends_on("h5hut+mpi", when="+mpi")
depends_on("googletest@1.13.0: +shared", when="+tests")
# @master
depends_on("h5hut@2.0.0rc6:", when="@master")
# @2022.1%gcc@10.4.0
depends_on("h5hut@2.0.0rc6", when="@2022.1")
conflicts("~mpi", msg="OPAL can not run without mpi!")
conflicts("cuda_arch=none", when="+cuda",
msg="CUDA architecture is required")
conflicts("%gcc@:8.5.0", msg="gcc bigger than 8.5.0 is required")
@run_before("cmake")
def cmake_configure(self):
spec = self.spec
cmake_configure = Executable("./gen_OPALrevision")
cmake_configure()
def cmake_args(self):
args = [
"-DCMAKE_CXX_STANDARD=20",
self.define_from_variant("ENABLE_FFT", "fft"),
self.define_from_variant("ENABLE_SOLVERS", "solvers"),
self.define_from_variant("ENABLE_TESTS", "tests"),
self.define_from_variant("USE_ALTERNATIVE_VARIANT", "alternative_variant"),
self.define_from_variant("ENABLE_ALPINE", "alpine"),
self.define_from_variant("ENABLE_UNIT_TESTS", "unit_tests"),
"-DIPPL_GIT_TAG=opalx-fielddump",
"-DKokkos_ENABLE_IMPL_CUDA_MALLOC_ASYNC=OFF",
]
if '+cuda' in self.spec:
args.append("-DIPPL_PLATFORMS=CUDA")
else:
args.append("-DIPPL_PLATFORMS=openmp")
if 'cuda_arch=90' in self.spec:
args.append("-DKokkos_ARCH_HOPPER90=ON")
elif 'cuda_arch=80' in self.spec:
args.append("-DKokkos_ARCH_AMPERE80=ON")
elif 'cuda_arch=60' in self.spec:
args.append("-DKokkos_ARCH_PASCAL61=ON")
return args

View File

@ -6,9 +6,9 @@
import os
from spack.package import *
from spack.pkg.builtin.gams import Gams as SpackGams
from spack.pkg.builtin.quantum_espresso import QuantumEspresso as SpackQuantumEspresso
class QuantumEspresso(SpackQuantumEspresso):
class Gams(SpackGams):
version("48.1", md5="5a59a973edfc4e3170b9535760593d62", expand=False)
version("49.1", md5="bc9b82d015c9672f8c153003c7a5dd2a", expand=False)
with when("%nvhpc +cuda"):
depends_on("cuda", type=("build","link","run"))

View File

@ -1,24 +0,0 @@
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *
from spack.pkg.builtin.relion import Relion as SpackRelion
class Relion(SpackRelion):
version("5.0.0", sha256="800ad0c0aa778cbf584fcf8986976645f2b25d677a80f168e5397975b9db6e47")
variant("python-exe-path", default="/data/project/bio/hpce/relion-5.0/miniconda3/envs/relion-5.0/bin/python", description="Path to conda env python binary")
variant("torch-home-path", default="/data/project/bio/hpce/relion-5.0/torch", description="Path to pretrained model weights")
def cmake_args(self):
args = super().cmake_args()
if "@5.0.0" in self.spec:
args += ["-DPYTHON_EXE_PATH={0}".format(self.spec.variants["python-exe-path"].value)]
args += ["-DTORCH_HOME_PATH={0}".format(self.spec.variants["torch-home-path"].value)]
return args

View File

@ -1,20 +0,0 @@
{% extends "modules/modulefile.lua" %}
{% block footer %}
local user_module_root= pathJoin("/afs/psi.ch/sys/spack/user", os.getenv("USER"), "spack-install/modulefiles")
{% if 'mpi' in provides %}
local user_projection= "{{ spec.architecture }}/{{ spec.name }}/{{ version_part }}/{{ spec.compiler.name }}/{{ spec.compiler.version }}"
{% elif 'compiler' in provides %}
local user_projection= "{{ spec.architecture }}/{{ spec.name }}/{{ spec.version }}"
{% endif %}
if user_projection then
local user_path= pathJoin(user_module_root, user_projection)
if isDir(user_path) then
prepend_path("MODULEPATH", user_path, ":")
end
end
{% endblock %}