Skip to content

Commit

Permalink
Merge pull request #168 from Duke-GCB/issue-167
Browse files Browse the repository at this point in the history
adds 'cudaVersionMin', 'cudaComputeCapability' in CUDARequirement
  • Loading branch information
fabricebrito committed May 2, 2024
2 parents f633264 + ae81c0f commit 753a523
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion calrissian/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,9 @@ def finish(self, completion_result: CompletionResult, runtimeContext):
# Not yet complete, only checks features of DockerRequirement
supported_features = {
'DockerRequirement': ['class', 'dockerPull'],
'http://commonwl.org/cwltool#CUDARequirement': ['class', 'cudaDeviceCount', 'cudaDeviceCountMin', 'cudaDeviceCountMax'],
'http://commonwl.org/cwltool#CUDARequirement': ['class', 'cudaDeviceCount',
'cudaDeviceCountMin', 'cudaDeviceCountMax',
'cudaVersionMin', 'cudaComputeCapability'],
}

def check_requirements(self, runtimeContext):
Expand Down

0 comments on commit 753a523

Please sign in to comment.