diff --git a/cgmanifest.json b/cgmanifest.json index c2780cf6a8..a0b61c55e7 100644 --- a/cgmanifest.json +++ b/cgmanifest.json @@ -49,7 +49,7 @@ "component": { "type": "git", "git": { - "commitHash": "a20ba2f1dc3fbd1109fcc67bf42247531832bb60", + "commitHash": "2873fea8bd4679fdf337d64d1140e80a61986c29", "repositoryUrl": "https://github.com/onnx/onnx.git" } } diff --git a/cmake/external/onnx b/cmake/external/onnx index a20ba2f1dc..2873fea8bd 160000 --- a/cmake/external/onnx +++ b/cmake/external/onnx @@ -1 +1 @@ -Subproject commit a20ba2f1dc3fbd1109fcc67bf42247531832bb60 +Subproject commit 2873fea8bd4679fdf337d64d1140e80a61986c29 diff --git a/onnxruntime/test/onnx/main.cc b/onnxruntime/test/onnx/main.cc index 1262439acd..7c144634d9 100644 --- a/onnxruntime/test/onnx/main.cc +++ b/onnxruntime/test/onnx/main.cc @@ -454,6 +454,7 @@ int real_main(int argc, char* argv[], Ort::Env& env) { {"sequence_model3", "SequenceConstruct not implemented yet"}, {"sequence_model2", "SequenceConstruct not implemented yet"}, {"sequence_model1", "Sequence* not implemented yet"}, + {"unsqueeze_unsorted_axes", "Unsqueeze not implemented yet"}, {"unsqueeze_two_axes", "Unsqueeze not implemented yet"}, {"unsqueeze_three_axes", "Unsqueeze not implemented yet"}, {"unsqueeze_negative_axes", "Unsqueeze not implemented yet"}, @@ -511,7 +512,6 @@ int real_main(int argc, char* argv[], Ort::Env& env) { {"bitshift_left_uint32", "BitShift(11) not implemented yet"}, {"bitshift_left_uint16", "BitShift(11) not implemented yet"}, {"gemm_default_scalar_bias", "Gemm ValidBroadcast() has bug to be fixed."}, - {"mlperf_ssd_mobilenet_300", "Shape Inference Error. Possibly the model has issues."}, }; #ifdef USE_NGRAPH diff --git a/tools/ci_build/github/linux/docker/scripts/install_onnx.sh b/tools/ci_build/github/linux/docker/scripts/install_onnx.sh index 5c28d049f6..726a5c588e 100755 --- a/tools/ci_build/github/linux/docker/scripts/install_onnx.sh +++ b/tools/ci_build/github/linux/docker/scripts/install_onnx.sh @@ -13,7 +13,7 @@ version2tag=(5af210ca8a1c73aa6bae8754c9346ec54d0a756e-onnx123 bae6333e149a59a3faa9c4d9c44974373dcf5256-onnx130 9e55ace55aad1ada27516038dfbdc66a8a0763db-onnx141 7d7bc83d29a328233d3e8affa4c4ea8b3e3599ef-onnx150 - a20ba2f1dc3fbd1109fcc67bf42247531832bb60-onnxtip) + 2873fea8bd4679fdf337d64d1140e80a61986c29-onnxtip) for v2t in ${version2tag[*]}; do onnx_version="$(cut -d'-' -f1<<<${v2t})" onnx_tag="$(cut -d'-' -f2<<<${v2t})"