-
-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathtest_cuda.py
179 lines (142 loc) · 4.68 KB
/
test_cuda.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
from unittest.mock import MagicMock
import mock
import pytest
from schema_salad.avro import schema
from cwltool.builder import Builder
from cwltool.context import LoadingContext, RuntimeContext
from cwltool.cuda import cuda_version_and_device_count
from cwltool.errors import WorkflowException
from cwltool.job import CommandLineJob
from cwltool.load_tool import load_tool
from cwltool.main import main
from cwltool.pathmapper import PathMapper
from cwltool.process import use_custom_schema
from cwltool.stdfsaccess import StdFsAccess
from cwltool.update import INTERNAL_VERSION
from cwltool.utils import CWLObjectType
from .util import get_data, needs_docker, needs_singularity_3_or_newer
cuda_version = cuda_version_and_device_count()
@needs_docker
@pytest.mark.skipif(
cuda_version[0] == "", reason="nvidia-smi required for CUDA not detected"
)
def test_cuda_docker() -> None:
params = [
"--enable-ext",
get_data("tests/wf/nvidia-smi-container.cwl"),
]
assert main(params) == 0
@needs_singularity_3_or_newer
@pytest.mark.skipif(
cuda_version[0] == "", reason="nvidia-smi required for CUDA not detected"
)
def test_cuda_singularity() -> None:
params = [
"--enable-ext",
"--singularity",
get_data("tests/wf/nvidia-smi-container.cwl"),
]
assert main(params) == 0
@pytest.mark.skipif(
cuda_version[0] == "", reason="nvidia-smi required for CUDA not detected"
)
def test_cuda_no_container() -> None:
params = [
"--enable-ext",
get_data("tests/wf/nvidia-smi.cwl"),
]
assert main(params) == 0
@pytest.mark.skipif(
cuda_version[0] == "", reason="nvidia-smi required for CUDA not detected"
)
def test_cuda_cc_list() -> None:
params = [
"--enable-ext",
get_data("tests/wf/nvidia-smi-cc.cwl"),
]
assert main(params) == 0
def _makebuilder(cudaReq: CWLObjectType) -> Builder:
return Builder(
{},
[],
[],
{},
schema.Names(),
[cudaReq],
[],
{"cudaDeviceCount": 1},
None,
None,
StdFsAccess,
StdFsAccess(""),
None,
0.1,
False,
False,
False,
"",
"",
"",
"",
INTERNAL_VERSION,
"docker",
)
@mock.patch("subprocess.check_output")
@mock.patch("os.makedirs")
def test_cuda_job_setup_check(makedirs: MagicMock, check_output: MagicMock) -> None:
runtime_context = RuntimeContext({})
cudaReq: CWLObjectType = {
"class": "http://commonwl.org/cwltool#CUDARequirement",
"cudaVersionMin": "1.0",
"cudaComputeCapability": "1.0",
}
builder = _makebuilder(cudaReq)
check_output.return_value = """
<nvidia>
<attached_gpus>1</attached_gpus>
<cuda_version>1.0</cuda_version>
</nvidia>
"""
jb = CommandLineJob(builder, {}, PathMapper, [], [], "")
jb._setup(runtime_context)
@mock.patch("subprocess.check_output")
@mock.patch("os.makedirs")
def test_cuda_job_setup_check_err(makedirs: MagicMock, check_output: MagicMock) -> None:
runtime_context = RuntimeContext({})
cudaReq: CWLObjectType = {
"class": "http://commonwl.org/cwltool#CUDARequirement",
"cudaVersionMin": "2.0",
"cudaComputeCapability": "1.0",
}
builder = _makebuilder(cudaReq)
check_output.return_value = """
<nvidia>
<attached_gpus>1</attached_gpus>
<cuda_version>1.0</cuda_version>
</nvidia>
"""
jb = CommandLineJob(builder, {}, PathMapper, [], [], "")
with pytest.raises(WorkflowException):
jb._setup(runtime_context)
def test_cuda_eval_resource_range() -> None:
with open(get_data("cwltool/extensions-v1.1.yml")) as res:
use_custom_schema("v1.2", "http://commonwl.org/cwltool", res.read())
joborder = {} # type: CWLObjectType
loadingContext = LoadingContext({"do_update": True})
runtime_context = RuntimeContext({})
tool = load_tool(get_data("tests/wf/nvidia-smi-range.cwl"), loadingContext)
builder = _makebuilder(tool.requirements[0])
builder.job = joborder
resources = tool.evalResources(builder, runtime_context)
assert resources["cudaDeviceCount"] == 2
def test_cuda_eval_resource_max() -> None:
with open(get_data("cwltool/extensions-v1.1.yml")) as res:
use_custom_schema("v1.2", "http://commonwl.org/cwltool", res.read())
joborder = {} # type: CWLObjectType
loadingContext = LoadingContext({"do_update": True})
runtime_context = RuntimeContext({})
tool = load_tool(get_data("tests/wf/nvidia-smi-max.cwl"), loadingContext)
builder = _makebuilder(tool.requirements[0])
builder.job = joborder
resources = tool.evalResources(builder, runtime_context)
assert resources["cudaDeviceCount"] == 4