drmaa-python
drmaa-python copied to clipboard
Python wrapper around the C DRMAA library.
This can be easily seen by with following simple test (and can be stepped through with pdb): ``` import drmaa def main(): session = drmaa.Session() session.initialize() job_template = session.createJobTemplate() args...
On wait method, if method returns DRMAA_ERRNO_NO_RUSAGE, value is considered as an error. This is a valid value, application simply consider there is no available usage data.
Is there anyway that I can save the job id of a long running task and then check its status from another Session? I understand that I can re-start the...
### Version ### os: ubuntu22.04 aarch64 ### slurm: 23.11 ### slurm-drmaa:1.1.4 ### drmaa-python:0.7.9 ### python:2.7.18 I #2ce6c3 [ 0.00] * logging started at: 2024-04-12 01:14:17.37 Z t #2ce6c3 [ 0.00]...
I'm using drmaa-python to run jobs on our slurm cluster and all works fine if I use: ```python jt.nativeSpecification = "--mem=4000" ``` Which I believe is interpreted as 4000 mb...