|
| 1 | +$base: http://commonwl.org/cwltool# |
| 2 | +$namespaces: |
| 3 | + cwl: "https://w3id.org/cwl/cwl#" |
| 4 | +$graph: |
| 5 | +- $import: https://w3id.org/cwl/CommonWorkflowLanguage.yml |
| 6 | + |
| 7 | +- name: Secrets |
| 8 | + type: record |
| 9 | + inVocab: false |
| 10 | + extends: cwl:ProcessRequirement |
| 11 | + fields: |
| 12 | + class: |
| 13 | + type: string |
| 14 | + doc: "Always 'Secrets'" |
| 15 | + jsonldPredicate: |
| 16 | + "_id": "@type" |
| 17 | + "_type": "@vocab" |
| 18 | + secrets: |
| 19 | + type: string[] |
| 20 | + doc: | |
| 21 | + List one or more input parameters that are sensitive (such as passwords) |
| 22 | + which will be deliberately obscured from logging. |
| 23 | + jsonldPredicate: |
| 24 | + "_type": "@id" |
| 25 | + refScope: 0 |
| 26 | + |
| 27 | + |
| 28 | +- name: ProcessGenerator |
| 29 | + type: record |
| 30 | + inVocab: true |
| 31 | + extends: cwl:Process |
| 32 | + documentRoot: true |
| 33 | + fields: |
| 34 | + - name: class |
| 35 | + jsonldPredicate: |
| 36 | + "_id": "@type" |
| 37 | + "_type": "@vocab" |
| 38 | + type: string |
| 39 | + - name: run |
| 40 | + type: [string, cwl:Process] |
| 41 | + jsonldPredicate: |
| 42 | + _id: "cwl:run" |
| 43 | + _type: "@id" |
| 44 | + subscope: run |
| 45 | + doc: | |
| 46 | + Specifies the process to run. |
| 47 | +
|
| 48 | +- name: MPIRequirement |
| 49 | + type: record |
| 50 | + inVocab: false |
| 51 | + extends: cwl:ProcessRequirement |
| 52 | + doc: | |
| 53 | + Indicates that a process requires an MPI runtime. |
| 54 | + fields: |
| 55 | + - name: class |
| 56 | + type: string |
| 57 | + doc: "Always 'MPIRequirement'" |
| 58 | + jsonldPredicate: |
| 59 | + "_id": "@type" |
| 60 | + "_type": "@vocab" |
| 61 | + - name: processes |
| 62 | + type: [int, cwl:Expression] |
| 63 | + doc: | |
| 64 | + The number of MPI processes to start. If you give a string, |
| 65 | + this will be evaluated as a CWL Expression and it must |
| 66 | + evaluate to an integer. |
| 67 | +
|
| 68 | +- name: CUDARequirement |
| 69 | + type: record |
| 70 | + extends: cwl:ProcessRequirement |
| 71 | + inVocab: false |
| 72 | + doc: | |
| 73 | + Require support for NVIDA CUDA (GPU hardware acceleration). |
| 74 | + fields: |
| 75 | + class: |
| 76 | + type: string |
| 77 | + doc: 'cwltool:CUDARequirement' |
| 78 | + jsonldPredicate: |
| 79 | + _id: "@type" |
| 80 | + _type: "@vocab" |
| 81 | + cudaVersionMin: |
| 82 | + type: string |
| 83 | + doc: | |
| 84 | + Minimum CUDA version to run the software, in X.Y format. This |
| 85 | + corresponds to a CUDA SDK release. When running directly on |
| 86 | + the host (not in a container) the host must have a compatible |
| 87 | + CUDA SDK (matching the exact version, or, starting with CUDA |
| 88 | + 11.3, matching major version). When run in a container, the |
| 89 | + container image should provide the CUDA runtime, and the host |
| 90 | + driver is injected into the container. In this case, because |
| 91 | + CUDA drivers are backwards compatible, it is possible to |
| 92 | + use an older SDK with a newer driver across major versions. |
| 93 | +
|
| 94 | + See https://docs.nvidia.com/deploy/cuda-compatibility/ for |
| 95 | + details. |
| 96 | + cudaComputeCapability: |
| 97 | + type: |
| 98 | + - 'string' |
| 99 | + - 'string[]' |
| 100 | + doc: | |
| 101 | + CUDA hardware capability required to run the software, in X.Y |
| 102 | + format. |
| 103 | +
|
| 104 | + * If this is a single value, it defines only the minimum |
| 105 | + compute capability. GPUs with higher capability are also |
| 106 | + accepted. |
| 107 | +
|
| 108 | + * If it is an array value, then only select GPUs with compute |
| 109 | + capabilities that explicitly appear in the array. |
| 110 | + cudaDeviceCountMin: |
| 111 | + type: ['null', int, cwl:Expression] |
| 112 | + default: 1 |
| 113 | + doc: | |
| 114 | + Minimum number of GPU devices to request. If not specified, |
| 115 | + same as `cudaDeviceCountMax`. If neither are specified, |
| 116 | + default 1. |
| 117 | + cudaDeviceCountMax: |
| 118 | + type: ['null', int, cwl:Expression] |
| 119 | + doc: | |
| 120 | + Maximum number of GPU devices to request. If not specified, |
| 121 | + same as `cudaDeviceCountMin`. |
0 commit comments