Skip to content
Snippets Groups Projects
Commit 353f143d authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[Test] reuse one exec dict in duplicatestreams test

parent 6d2a0ab0
No related branches found
No related tags found
No related merge requests found
......@@ -118,8 +118,9 @@ def test_fpgadataflow_duplicatestreams(idt, ch, fold, imdim, exec_mode):
# prepare input data and execute
input_dict = prepare_inputs(x, idt)
y0 = oxe.execute_onnx(model, input_dict)["outp0"]
y1 = oxe.execute_onnx(model, input_dict)["outp1"]
output_dict = oxe.execute_onnx(model, input_dict)
y0 = output_dict["outp0"]
y1 = output_dict["outp1"]
expected_y = x
assert (y0 == expected_y).all(), exec_mode + " failed"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment