From c5a691d67d61a9d18f457f341a68c33e5ced825c Mon Sep 17 00:00:00 2001 From: Ashwini Khade Date: Mon, 10 Dec 2018 11:17:52 -0800 Subject: [PATCH] update onnx to latest commit (#132) * update onnx to latest commit * fixes * Add not implemented operator tests to whitelist * fix test name --- cmake/external/onnx | 2 +- onnxruntime/test/onnx/main.cc | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/cmake/external/onnx b/cmake/external/onnx index de821198f8..0a4d5abdf4 160000 --- a/cmake/external/onnx +++ b/cmake/external/onnx @@ -1 +1 @@ -Subproject commit de821198f8b4393508a173a193c6e6b93a4740b4 +Subproject commit 0a4d5abdf4939ab0842a5eadcc16a3bf0738f901 diff --git a/onnxruntime/test/onnx/main.cc b/onnxruntime/test/onnx/main.cc index 8fd8b1a0e2..e966040d4f 100644 --- a/onnxruntime/test/onnx/main.cc +++ b/onnxruntime/test/onnx/main.cc @@ -324,7 +324,14 @@ int real_main(int argc, char* argv[]) { {"cosh_example", "opset 9 not supported yet"}, {"asinh_example", "opset 9 not supported yet"}, {"acosh_example", "opset 9 not supported yet"}, - {"atanh_example", "opset 9 not supported yet"}}; + {"atanh_example", "opset 9 not supported yet"}, + {"sign_model", "opset 9 not supported yet"}, + {"erf", "opset 9 not supported yet"}, + {"sign", "opset 9 not supported yet"}, + {"scatter_with_axis", "opset 9 not supported yet"}, + {"scatter_without_axis", "opset 9 not supported yet"}, + {"scan_sum", "opset 9 not supported yet"}, + {"isnan", "opset 9 not supported yet"}}; #ifdef USE_CUDA broken_tests["maxpool_2d_default"] = "cudnn pooling only support input dimension >= 3";