Skip to content

Commit a47f590

Browse files
committed
fix fft2d
Signed-off-by: xavier dupré <[email protected]>
1 parent 2d2fb26 commit a47f590

File tree

2 files changed

+186
-208
lines changed

2 files changed

+186
-208
lines changed

tests/backend_test_base.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ def run_onnxruntime(self, model_path, inputs, output_names, use_custom_ops=False
8989
# opt.log_severity_level = 0
9090
# opt.log_verbosity_level = 255
9191
# opt.enable_profiling = True
92-
import onnx
93-
with open(model_path, "rb") as f:
94-
onx = onnx.load(f)
92+
93+
# with open(model_path, "rb") as f:
94+
# onx = onnx.load(f)
9595
# with open("debug_%d.onnx" % id(model_path), "wb") as f:
96-
# f.write(onx.SerializeToString())
96+
# f.write(onx.SerializeToString())
9797
# from mlprodict.onnxrt import OnnxInference
9898
# oinf = OnnxInference(model_path)
9999
# oinf.run(inputs, verbose=1, fLOG=print)

0 commit comments

Comments
 (0)