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
Currently there is no official support for IBM Spectrum LSF. Segway has supported older versions of LSF in the past.
We cannot test on IBM Spectrum LSF since we do not have access to this cluster system. However, there is a proposed change that might work.
Around line 73 in segway/cluster/__init.py, change the line from the following:
elif "Platform LSF" in drms_info: # includes "IBM Platform LSF"
to
elif ("Platform LSF" in drms_info) or ("Spectrum LSF" in drms_info): # includes "IBM Platform LSF"
This change has not been tested but if it works for you, please report it here so we can take your word for it and merge the changes in.
The text was updated successfully, but these errors were encountered:
We could also just test for "LSF"
"LSF"
Sorry, something went wrong.
No branches or pull requests
Currently there is no official support for IBM Spectrum LSF. Segway has supported older versions of LSF in the past.
We cannot test on IBM Spectrum LSF since we do not have access to this cluster system. However, there is a proposed change that might work.
Around line 73 in segway/cluster/__init.py, change the line from the following:
to
This change has not been tested but if it works for you, please report it here so we can take your word for it and merge the changes in.
The text was updated successfully, but these errors were encountered: