update onnx to latest commit (#132)

* update onnx to latest commit

* fixes

* Add not implemented operator tests to whitelist

* fix test name
This commit is contained in:
Ashwini Khade 2018-12-10 11:17:52 -08:00 committed by GitHub
parent 69a5ff3300
commit c5a691d67d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

2
cmake/external/onnx vendored

@ -1 +1 @@
Subproject commit de821198f8b4393508a173a193c6e6b93a4740b4
Subproject commit 0a4d5abdf4939ab0842a5eadcc16a3bf0738f901

View file

@ -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";