mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-29 20:14:01 +00:00
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:
parent
69a5ff3300
commit
c5a691d67d
2 changed files with 9 additions and 2 deletions
2
cmake/external/onnx
vendored
2
cmake/external/onnx
vendored
|
|
@ -1 +1 @@
|
|||
Subproject commit de821198f8b4393508a173a193c6e6b93a4740b4
|
||||
Subproject commit 0a4d5abdf4939ab0842a5eadcc16a3bf0738f901
|
||||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in a new issue