-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrunner_test.go
More file actions
423 lines (403 loc) · 9.7 KB
/
Copy pathrunner_test.go
File metadata and controls
423 lines (403 loc) · 9.7 KB
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
package menoh
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
"testing"
)
func getTestONNXDataset() (string, InputConfig, OutputConfig, error) {
onnxPath := filepath.Join("test_data", "MLP.onnx")
if _, err := os.Stat(onnxPath); err != nil {
return "", InputConfig{}, OutputConfig{}, fmt.Errorf(
"ONNX file is not found, please put the file to %v", onnxPath)
}
inputConfig := InputConfig{
Name: "input",
Dtype: TypeFloat,
Dims: []int32{1, 3},
}
outputConfig := OutputConfig{
Name: "fc2",
Dtype: TypeFloat,
}
return onnxPath, inputConfig, outputConfig, nil
}
func getRunner() (*Runner, error) {
onnxPath, _, _, err := getTestONNXDataset()
if err != nil {
return nil, err
}
conf := Config{
ONNXModelPath: onnxPath,
Backend: TypeMKLDNN,
Inputs: []InputConfig{
{
Name: "input",
Dtype: TypeFloat,
Dims: []int32{1, 3},
},
},
Outputs: []OutputConfig{
{
Name: "fc1",
Dtype: TypeFloat,
FromInternal: true,
},
{
Name: "fc2",
Dtype: TypeFloat,
},
},
}
return NewRunner(conf)
}
func TestNewRunnerSuccess(t *testing.T) {
onnxPath, inputConfig, outputConfig, err := getTestONNXDataset()
if err != nil {
t.Fatal(err)
}
// success
t.Run("load valid ONNX model without output", func(t *testing.T) {
conf := Config{
ONNXModelPath: onnxPath,
Backend: TypeMKLDNN,
Inputs: []InputConfig{inputConfig},
}
runner, err := NewRunner(conf)
if err != nil {
t.Errorf("runner should be created without error, %v", err)
}
if runner == nil {
t.Fatal("runner should be created")
}
defer runner.Stop()
})
t.Run("load valid ONNX model", func(t *testing.T) {
conf := Config{
ONNXModelPath: onnxPath,
Backend: TypeMKLDNN,
Inputs: []InputConfig{inputConfig},
Outputs: []OutputConfig{outputConfig},
}
runner, err := NewRunner(conf)
if err != nil {
t.Errorf("runner should be created without error, %v", err)
}
if runner == nil {
t.Fatal("runner should be created")
}
defer runner.Stop()
})
t.Run("load valid ONNX model", func(t *testing.T) {
onnxData, err := ioutil.ReadFile(onnxPath)
if err != nil {
t.Fatal(err)
}
modelData, err := NewModelDataFromBytes(onnxData)
if err != nil {
t.Fatal(err)
}
conf := Config{
Backend: TypeMKLDNN,
Inputs: []InputConfig{inputConfig},
}
runner, err := NewRunnerWithModelData(modelData, conf)
if err != nil {
t.Errorf("runner should be created without error, %v", err)
}
if runner == nil {
t.Fatal("runner should be created")
}
defer runner.Stop()
})
}
func TestNewRunnerFail(t *testing.T) {
onnxPath, inputConfig, outputConfig, err := getTestONNXDataset()
if err != nil {
t.Fatal(err)
}
// fail
type testConfig struct {
name string
config Config
expected string
}
testSet := []testConfig{
{
name: "setup with empty config",
config: Config{},
expected: "invalid filename",
},
{
name: "load invalid ONNX file name",
config: Config{ONNXModelPath: ""},
expected: "invalid filename",
},
{
name: "attach no input profile",
config: Config{ONNXModelPath: onnxPath},
expected: "variable not found",
},
{
name: "attach invalid input profile",
config: Config{
ONNXModelPath: onnxPath,
Inputs: []InputConfig{
{
Name: "input",
Dtype: TypeFloat,
Dims: []int32{1, 4},
},
},
},
expected: "dimension mismatch",
},
{
name: "attach invalid output name",
config: Config{
ONNXModelPath: onnxPath,
Inputs: []InputConfig{inputConfig},
Outputs: []OutputConfig{
{
Name: "dummy_output",
Dtype: TypeFloat,
},
},
},
expected: "output not found",
},
{
name: "invalid backend",
config: Config{
ONNXModelPath: onnxPath,
Inputs: []InputConfig{inputConfig},
Outputs: []OutputConfig{outputConfig},
},
expected: "backend",
},
}
for _, ts := range testSet {
name, config, expected := ts.name, ts.config, ts.expected
t.Run(name, func(t *testing.T) {
runner, err := NewRunner(config)
if err != nil {
if !strings.Contains(fmt.Sprintf("%v", err), expected) {
t.Errorf(`error message should contain expected phrase
expected: %s
actual : %v`, expected, err)
}
} else {
t.Error("an error should be occurred")
}
func() {
if runner != nil {
t.Error("runner should not be created")
defer runner.Stop()
}
}()
})
}
}
func TestGetInput(t *testing.T) {
runner, err := getRunner()
if err != nil {
t.Fatal(err)
}
defer runner.Stop()
t.Run("get input", func(t *testing.T) {
actual, err := runner.GetInput("input")
if err != nil {
t.Fatalf("input variable should be get, %v", err)
}
expected := &FloatTensor{
Dims: []int32{1, 3},
Array: []float32{0., 0., 0.},
}
if !tensorEquals(actual, expected) {
t.Errorf(`input variable should equal to expected array
expected: %v
actual : %v`, expected, actual)
}
})
t.Run("get no-existed input", func(t *testing.T) {
actual, err := runner.GetInput("dummy_input")
if err == nil {
t.Error("an error should be occurred")
}
if actual != nil {
t.Errorf("runner should return nothing, but return %v", actual)
}
})
}
func TestRunWithTensorAndGetOutput(t *testing.T) {
runner, err := getRunner()
if err != nil {
t.Fatal(err)
}
defer runner.Stop()
t.Run("run with intput variable", func(t *testing.T) {
input := &FloatTensor{
Dims: []int32{1, 3},
Array: []float32{0., 1., 2.},
}
if err := runner.RunWithTensor("input", input); err != nil {
t.Fatalf("the runner should run without error, %v", err)
}
t.Run("get output", func(t *testing.T) {
actual, err := runner.GetOutput("fc2")
if err != nil {
t.Fatalf("the runner should return the output, %v", err)
}
expected := &FloatTensor{
Dims: []int32{1, 5},
Array: []float32{0., 0., 15., 96., 177},
}
if !tensorEquals(actual, expected) {
t.Fatalf(`output variable should equal to expected array
expected: %v
actual : %v`, expected, actual)
}
t.Run("run next input", func(t *testing.T) {
input2 := &FloatTensor{
Dims: []int32{1, 3},
Array: []float32{0., 0.5, 1.},
}
if err := runner.RunWithTensor("input", input2); err != nil {
t.Fatalf("the runner should run without error, %v", err)
}
t.Run("get 2nd. output", func(t *testing.T) {
actual, err := runner.GetOutput("fc2")
if err != nil {
t.Fatalf("the runner should return the output, %v", err)
}
expected := &FloatTensor{
Dims: []int32{1, 5},
Array: []float32{0., 0., 8., 51., 94},
}
if !tensorEquals(actual, expected) {
t.Fatalf(`output variable should equal to expected array
expected: %v
actual : %v`, expected, actual)
}
})
})
})
t.Run("get no-existed output", func(t *testing.T) {
output, err := runner.GetOutput("fc3")
if err == nil {
t.Error("an error should be occurred")
}
if output != nil {
t.Error("the runner should return nothing")
}
})
})
// fail
t.Run("run with invalid intput", func(t *testing.T) {
input := &FloatTensor{
Dims: []int32{1, 2},
Array: []float32{0., 1.},
}
if err := runner.RunWithTensor("input", input); err == nil {
t.Error("an error should be occurred with non profiled input")
}
})
t.Run("put no-existed input", func(t *testing.T) {
input := &FloatTensor{}
if err := runner.RunWithTensor("dummy_input", input); err == nil {
t.Error("an error should be occurred with non profiled input")
}
})
}
func TestRunAndOutputs(t *testing.T) {
runner, err := getRunner()
if err != nil {
t.Fatal(err)
}
defer runner.Stop()
t.Run("run with map input", func(t *testing.T) {
inputs := map[string]Tensor{
"input": &FloatTensor{
Dims: []int32{1, 3},
Array: []float32{0., 1., 2.},
},
}
if err := runner.Run(inputs); err != nil {
t.Fatalf("the runner should run without error, %v", err)
}
t.Run("get output", func(t *testing.T) {
outputs := runner.Outputs()
actual, ok := outputs["fc2"]
if !ok {
t.Fatal("the runner should return the output")
}
expected := &FloatTensor{
Dims: []int32{1, 5},
Array: []float32{0., 0., 15., 96., 177},
}
if !tensorEquals(actual, expected) {
t.Fatalf(`output variable should equal to expected array
expected: %v
actual : %v`, expected, actual)
}
t.Run("run next input using non-copy update", func(t *testing.T) {
input, err := runner.GetInput("input")
if err != nil {
t.Fatalf("the runner should return the input, %v", err)
}
input.WriteFloat(1, 0.5)
input.WriteFloat(2, 1)
if err := runner.Run(nil); err != nil {
t.Fatalf("the runner should run without error, %v", err)
}
t.Run("get 2nd. output", func(t *testing.T) {
outputs := runner.Outputs()
actual, ok := outputs["fc2"]
if !ok {
t.Fatal("the runner should return the output")
}
expected := &FloatTensor{
Dims: []int32{1, 5},
Array: []float32{0., 0., 8., 51., 94},
}
if !tensorEquals(actual, expected) {
t.Fatalf(`output variable should equal to expected array
expected: %v
actual : %v`, expected, actual)
}
})
})
})
})
}
func tensorEquals(t1, t2 Tensor) bool {
if t1.dtype() != t2.dtype() {
return false
}
if len(t1.Shape()) != len(t2.Shape()) {
return false
}
for i := 0; i < len(t1.Shape()); i++ {
if t1.Shape()[i] != t2.Shape()[i] {
return false
}
}
if t1.Size() != t2.Size() {
return false
}
switch t1.dtype() {
case TypeFloat:
t1f, _ := t1.FloatArray()
t2f, _ := t2.FloatArray()
for i, f := range t1f {
if t2f[i] != f {
return false
}
}
default:
return false
}
return true
}