We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
IN your sbatch scripts you can explore environment variables such as
echo $SLURM_SUBMIT_DIR env
to let you know where the submit dir is. I assume you can also find other variables. you can probably print with env
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
def output_variables(): slurmvariables = [] variables = [v for v in os.environ if v.startswith(“SLURM_“] print (Printer.attributes(variables))
jpfleischer
No branches or pull requests
IN your sbatch scripts you can explore environment variables such as
echo $SLURM_SUBMIT_DIR
env
to let you know where the submit dir is. I assume you can also find other variables. you can probably print with env
The text was updated successfully, but these errors were encountered: