forked from GoogleCloudPlatform/ramble
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update lammps reaxff to use newer builds
Problem: we want to run apptainer with lammps, and not require any spack or previous software installed. This adds an example, and also a new variable that exposes the version of lammps to download. Signed-off-by: vsoch <[email protected]>
- Loading branch information
Showing
3 changed files
with
55 additions
and
5 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,43 @@ | ||
ramble: | ||
modifiers: | ||
- name: apptainer | ||
env_vars: | ||
set: | ||
OMP_NUM_THREADS: '{n_threads}' | ||
variables: | ||
mpi_command: '' | ||
container_uri: docker://ghcr.io/converged-computing/metric-lammps-cpu:libfabric-zen4-reax | ||
container_name: lammps-reax | ||
batch_submit: '{execute_experiment}' | ||
processes_per_node: 1 | ||
gpus_per_node: 0 | ||
# This is how you can add flags | ||
# apptainer_run_args: --nv --bind {container_mounts} --writable-tmpfs | ||
applications: | ||
lammps: # Application name | ||
workloads: | ||
hns-reaxff: # Workload name from application | ||
experiments: | ||
strong_scale: # Arbitrary experiment name | ||
variables: | ||
env_name: apptainer | ||
n_nodes: 1 | ||
lammps_path: /usr | ||
# Add other lammps flags | ||
lammps_flags: "-nocite" | ||
# This is the release that is downloaded | ||
input_stage: stable_29Aug2024_update1 | ||
# The input file used for lammps from the input_path directory | ||
input_file: in.reaxff.hns | ||
# Problem size dimensions for lammps | ||
xx: 2 | ||
yy: 2 | ||
zz: 2 | ||
software: | ||
packages: | ||
apptainer: | ||
pkg_spec: apptainer | ||
environments: | ||
lammps: | ||
packages: | ||
- apptainer |
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
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