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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
flow passes the memory directive to SLURM as a float, which at least for greatlakes is invalid.
memory
Passing memory=8 results in a SLURM script containing --mem=8.0G
memory=8
--mem=8.0G
sbatch: error: Invalid --mem specification
Please complete the following information:
Or copy & paste the output of: python -c 'import platform; print(platform.platform()); import sys; print(sys.version); import signac; print(signac.__version__); import flow; print(flow.__version__)'
python -c 'import platform; print(platform.platform()); import sys; print(sys.version); import signac; print(signac.__version__); import flow; print(flow.__version__)'
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
flow passes the
memory
directive to SLURM as a float, which at least for greatlakes is invalid.To reproduce
Passing
memory=8
results in a SLURM script containing--mem=8.0G
Error output
sbatch: error: Invalid --mem specification
System configuration
Please complete the following information:
Or copy & paste the output of:
python -c 'import platform; print(platform.platform()); import sys; print(sys.version); import signac; print(signac.__version__); import flow; print(flow.__version__)'
The text was updated successfully, but these errors were encountered: