Configurations for different clusters.
Import one of these configs, using the CLI like this (where [FILE NAME]
is one of the YAML files in this repository):
matflow config import github://hpcflow:matflow-configs@main/[FILE NAME]
Or use the Python API like this:
import matflow as mf
mf.config.import_from_file("github://hpcflow:matflow-configs@main/[FILE NAME]")
Note
You can also specify the config invocation name you wish to update if you have multiple invocations defined in your config file.
Note
You can also pass a local file path to the config import
/ mf.config.import_from_file
command.
Note
If you want to use a different branch (other than main
), you must not use slashes in the branch name, because fsspec
will not correctly interpret the file location.