-
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.
- Loading branch information
Showing
65 changed files
with
4,857 additions
and
878 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
target-version = "py312" | ||
line-length = 100 | ||
|
||
[lint] | ||
|
||
extend-select = [ | ||
"A", | ||
"B", | ||
"D", | ||
"E501", | ||
"EM", | ||
"I", | ||
"ICN", | ||
"ISC", | ||
"N", | ||
"NPY", | ||
"PL", | ||
"PT", | ||
"RET", | ||
"RUF", | ||
"UP", | ||
"W", | ||
] | ||
|
||
ignore = [ | ||
"N806", "N803", # Allow occasional use of uppercase variable and argument names (e.g. N). | ||
"D107", # Do not document __init__ separately from the class. | ||
"PLR09", # Allow "too many" statements/arguments/etc... | ||
"N816", # Allow mixed case names like kT. | ||
"RUF012", # Do not use typing hints. | ||
] | ||
|
||
[lint.pydocstyle] | ||
convention = "google" | ||
|
||
[lint.flake8-import-conventions] | ||
# Prefer no import aliases | ||
aliases = {} | ||
# Always import hoomd and gsd without 'from' | ||
banned-from = ["hoomd", "gsd"] | ||
|
||
# Ban standard import conventions and force common packages to be imported by their actual name. | ||
[lint.flake8-import-conventions.banned-aliases] | ||
"numpy" = ["np"] | ||
"pandas" = ["pd"] | ||
"matplotlib" = ["mpl"] | ||
|
||
[format] | ||
quote-style = "single" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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,3 +1,50 @@ | ||
# Built-in clusters | ||
|
||
TODO: Write this document. | ||
**Row** includes built-in support for the following clusters. | ||
|
||
## Anvil (Purdue) | ||
|
||
[Anvil documentation](https://www.rcac.purdue.edu/knowledge/anvil). | ||
|
||
**Row** automatically selects from the following partitions: | ||
* `shared` | ||
* `wholenode` | ||
* `gpu` | ||
|
||
Other partitions may be selected manually. | ||
|
||
There is no need to set `--mem-per-*` options on Anvil as the cluster automatically | ||
chooses the largest amount of memory available per core by default. | ||
|
||
## Delta (NCSA) | ||
|
||
[Delta documentation](https://docs.ncsa.illinois.edu/systems/delta). | ||
|
||
**Row** automatically selects from the following partitions: | ||
* `cpu` | ||
* `gpuA100x4` | ||
|
||
Other partitions may be selected manually. | ||
|
||
Delta jobs default to a small amount of memory per core. **Row** inserts `--mem-per-cpu` | ||
or `--mem-per-gpu` to select the maximum amount of memory possible that allows full-node | ||
jobs and does not incur extra charges. | ||
|
||
## Great Lakes (University of Michigan) | ||
|
||
[Great Lakes documentation](https://arc.umich.edu/greatlakes/). | ||
|
||
**Row** automatically selects from the following partitions: | ||
* `standard` | ||
* `gpu_mig40,gpu` | ||
* `gpu` | ||
|
||
Other partitions may be selected manually. | ||
|
||
Great Lakes jobs default to a small amount of memory per core. **Row** inserts | ||
`--mem-per-cpu` or `--mem-per-gpu` to select the maximum amount of memory possible that | ||
allows full-node jobs and does not incur extra charges. | ||
|
||
> Note: The `gpu_mig40,gpu` partition is selected only when there is one GPU per job. | ||
> This is a combination of 2 partitions which decreases queue wait time due to the | ||
> larger number of nodes that can run your job. |
Oops, something went wrong.