Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce to ctest -j4 in all documentation (#6052) #6332

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions cmake/std/atdm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ $ cmake \

$ make NP=16 # Uses ninja -j16

$ ctest -j16 # Might need to be run with srun or some other command, see below
$ ctest -j4 # Might need to be run with srun or some other command, see below
```

The command:
Expand Down Expand Up @@ -640,7 +640,7 @@ $ cmake \

$ make NP=16

$ bsub -x -Is -q rhel7F -n 16 ctest -j16
$ bsub -x -Is -q rhel7F -n 16 ctest -j4
```

The ATDM configuration of Trilinos is set up to run on the Firestone nodes
Expand Down Expand Up @@ -688,7 +688,7 @@ $ cmake \

$ make NP=16

$ srun ctest -j16
$ srun ctest -j4
```

**NOTE:** While the above example shows loading the environment, configuring
Expand Down Expand Up @@ -732,7 +732,7 @@ $ cmake \

$ make NP=16

$ salloc -N1 --time=0:20:00 --account=<YOUR_WCID> ctest -j16
$ salloc -N1 --time=0:20:00 --account=<YOUR_WCID> ctest -j4
```

To get information on <YOUR_WCID> used above, there is a WC tool tab on
Expand Down Expand Up @@ -1013,7 +1013,7 @@ $ cmake \

$ make NP=20

$ bsub -x -Is -n 20 ctest -j20
$ bsub -x -Is -n 20 ctest -j4
```

**NOTE:** While the above example shows loading the environment, configuring
Expand Down