-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathenv.set.local0
More file actions
26 lines (17 loc) · 963 Bytes
/
env.set.local0
File metadata and controls
26 lines (17 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
#! Note: Hardcoded paths are for use on the Zimmerman lab cluster, Athena, which runs Rocky Linux 8.
#! Other systems may require different paths.
# NVHPC 20.7-21.9, and SDK 24.9-24.11 (and respective openmpi versions) have been found to successfully compile.
module load nvidia-sdk/25.5
# Cmake 3.15 and above is required.
module load cmake
# Add libcint to PATH for GTO evaluation.
#! Note: Libcint version 5.3.0 is required for SlaterGPU.
#module load libcint
#export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/ndmeier/libraries/libcint/lib64
#export LIBCINT_PATH=/home/ndmeier/libraries/libcint
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/paulzim/libcint-master/lib64
export LIBCINT_PATH=/home/paulzim/libcint-master/
#OpenBLAS is also required for libcint/libcintw operations. Some systems automatically source this, but you may need to explicitly point to it.
export BLAS_INCLUDE_DIR=/usr/include/openblas
export OMP_NUM_THREADS=2