-
Notifications
You must be signed in to change notification settings - Fork 25
/
conftest.py
194 lines (168 loc) · 5.84 KB
/
conftest.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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# BSD 2-Clause License
#
# Copyright (c) 2021-2024, Hewlett Packard Enterprise
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import pathlib
from subprocess import Popen, PIPE, TimeoutExpired
import pytest
import numpy as np
import torch
import torch.nn as nn
import io
import os
import random
import string
dtypes = [
np.float64,
np.float32,
np.int8,
np.int16,
np.int32,
np.int64,
np.uint8,
np.uint16,
]
metadata_scalar_dtypes = [
np.float32,
np.float64,
np.int32,
np.int64,
np.uint32,
np.uint64,
]
@pytest.fixture
def mock_data():
return MockTestData
@pytest.fixture
def mock_model():
return MockTestModel
@pytest.fixture
def context(request):
return request.node.name
class MockTestData:
@staticmethod
def create_data(shape):
"""Helper for creating numpy data"""
data = []
for dtype in dtypes:
array = np.random.randint(-10, 10, size=shape).astype(dtype)
data.append(array)
return data
@staticmethod
def create_metadata_scalars(length):
"""Helper for creating numpy data"""
data = []
for dtype in metadata_scalar_dtypes:
array = np.random.randint(-10, 10, size=length).astype(dtype)
data.append(array)
return data
@staticmethod
def create_metadata_strings(length):
"""Helper for creating list of strings"""
data = []
for _ in range(length):
meta_string = ''.join(random.choices(string.ascii_uppercase + string.digits, k=20))
data.append(meta_string)
return data
# taken from https://pytorch.org/docs/master/generated/torch.jit.trace.html
class Net(nn.Module):
def __init__(self):
super(Net, self).__init__()
self.conv = nn.Conv2d(1, 1, 3)
def forward(self, x):
return self.conv(x)
class MockTestModel:
@staticmethod
def create_torch_cnn(filepath=None):
"""Create a torch CNN for testing purposes
Jit traces the torch Module for storage in RedisAI
Function either saves to a file or returns a byte string
"""
n = Net()
example_forward_input = torch.rand(1, 1, 3, 3)
# Trace a module (implicitly traces `forward`) and construct a
# `ScriptModule` with a single `forward` method
module = torch.jit.trace(n, example_forward_input)
if filepath:
torch.jit.save(module, filepath)
return
else:
# save model into an in-memory buffer then string
buffer = io.BytesIO()
torch.jit.save(module, buffer)
str_model = buffer.getvalue()
return str_model
# Add a options to pytest command lines
def pytest_addoption(parser):
parser.addoption(
"--bin-path",
action="store",
default=pathlib.Path.cwd() / "build" / "Release" / "tests"
)
parser.addoption(
"--build-fortran",
action="store",
default=0
)
# Fixture to retrieve the build type setting
@pytest.fixture(scope="module")
def bin_path(request):
return pathlib.Path(request.config.getoption("--bin-path"))
# Fixture to retrieve the build type setting
@pytest.fixture(scope="module")
def build_fortran(request):
return pathlib.Path(request.config.getoption("--build-fortran"))
@pytest.fixture()
def execute_cmd():
def _execute_cmd(cmd_list, run_path=pathlib.Path.cwd()):
"""Execute a command """
print(f"Running {cmd_list} at {run_path}")
# spawning the subprocess and connecting to its output
proc = Popen(
cmd_list, stderr=PIPE, stdout=PIPE, stdin=PIPE, cwd=run_path)
try:
out, err = proc.communicate(timeout=120)
if out:
print("OUTPUT:", out.decode("unicode_escape"))
if err:
print("ERROR:", err.decode("unicode_escape"))
assert(proc.returncode == 0)
except UnicodeDecodeError:
output, errs = proc.communicate()
print("ERROR:", errs.decode("unicode_escape"))
assert(False)
except TimeoutExpired:
proc.kill()
output, errs = proc.communicate()
print("TIMEOUT: test timed out after test timeout limit of 120 seconds")
print("OUTPUT:", output.decode("utf-8"))
print("ERROR:", errs.decode("utf-8"))
assert(False)
except Exception:
proc.kill()
output, errs = proc.communicate()
print("OUTPUT:", output.decode("utf-8"))
print("ERROR:", errs.decode("utf-8"))
assert(False)
return _execute_cmd