-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
spack, system_definition, variables files added
- Loading branch information
1 parent
70efa35
commit c05adb2
Showing
3 changed files
with
63 additions
and
0 deletions.
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,19 @@ | ||
# Copyright 2023 Lawrence Livermore National Security, LLC and other | ||
# Benchpark Project Developers. See the top-level COPYRIGHT file for details. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
spack: | ||
packages: | ||
default-compiler: | ||
spack_spec: [email protected] | ||
compiler-gcc: | ||
spack_spec: [email protected] | ||
compiler-intel: | ||
spack_spec: intel@2020b | ||
default-mpi: | ||
spack_spec: [email protected] | ||
blas: | ||
spack_spec: [email protected] | ||
lapack: | ||
spack_spec: [email protected] |
32 changes: 32 additions & 0 deletions
32
configs/TAMU-Grace-Dell-cascadelake-Infiniband/system_definition.yaml
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,32 @@ | ||
# Copyright 2023 Lawrence Livermore National Security, LLC and other | ||
# Benchpark Project Developers. See the top-level COPYRIGHT file for details. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
system_definition: | ||
name: Grace-CPU | ||
site: TAMU | ||
system: Dell-cascadelake-InfiniBand | ||
integrator: | ||
vendor: Dell | ||
name: | ||
processor: | ||
vendor: Intel | ||
name: Xeon6248R | ||
ISA: x86_64 | ||
uArch: cascadelake | ||
accelerator: | ||
vendor: NVIDIA | ||
name: A100 | ||
ISA: | ||
uArch: | ||
interconnect: | ||
vendor: Mellanox | ||
name: HDR100InfiniBand | ||
system-tested: | ||
site: | ||
name: | ||
installation-year: | ||
description: | ||
top500-system-instances: | ||
- |
12 changes: 12 additions & 0 deletions
12
configs/TAMU-Grace-Dell-cascadelake-Infiniband/variables.yaml
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,12 @@ | ||
# Copyright 2023 Lawrence Livermore National Security, LLC and other | ||
# Benchpark Project Developers. See the top-level COPYRIGHT file for details. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
variables: | ||
batch_time: '02:00' | ||
mpi_command: 'srun -N {n_nodes} -n {n_ranks}' | ||
batch_submit: 'sbatch {execute_experiment}' | ||
batch_nodes: '#SBATCH -N {n_nodes}' | ||
batch_ranks: '#SBATCH -n {n_ranks}' | ||
batch_timeout: '#SBATCH -t {batch_time}:00' |