-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an icl platform file, move saturn platform to legacy
- Loading branch information
1 parent
42f4773
commit 6d7dedf
Showing
3 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# vim: set filetype=sh : | ||
### Defaults for ICL machines | ||
# Main goal is to have `salloc -wxyz ctest` work as intended | ||
# Typical use cases: | ||
# `SLURM_TIMELIMIT=1 salloc -N1 --ntasks-per-node=8 -wleconte ctest` | ||
# `SLURM_TIMELIMIT=1 salloc -N4 --ntasks-per-node=8 -Cgpu_radeonvii ctest -Rdplasma_s` | ||
# `ctest #will srun in individual allocations on random nodes, which is slower` | ||
|
||
# Do not set the compiler flags (CC, CXX, FC) and the MPI flags (MPI_DIR) | ||
# CUDA (detected via nvcc), PAPI (detected via papi_avail), HWLOC (detected | ||
# via hwloc-ls) nor the PYTHON_EXECUTABLE | ||
|
||
CMAKE_DEFINES+="-DCTEST_MPI_LAUNCHER=\"srun -n\" -DCTEST_SHM_LAUNCHER=\"srun -n1\" -DCTEST_CUDA_LAUNCHER_OPTIONS=-Cgpu_nvidia -DCTEST_HIP_LAUNCHER_OPTIONS=-Cgpu_amd" | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
# vim: set filetype=sh : | ||
|
||
cat <<'EOF' | ||
Note about BLAS on Mac OS X: | ||
|