From 809c8905fe64809b3d43563652286d1d05ba109f Mon Sep 17 00:00:00 2001 From: Changming Sun Date: Thu, 12 Oct 2023 10:08:07 -0700 Subject: [PATCH] Update TestCase.cc: exclude a test for DML (#17909) ### Description Update TestCase.cc: exclude a test for DML ### Motivation and Context The test is failing due to GPU driver update. --- onnxruntime/test/onnx/TestCase.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/onnxruntime/test/onnx/TestCase.cc b/onnxruntime/test/onnx/TestCase.cc index 7239e5242543d..cb9633ff049a5 100644 --- a/onnxruntime/test/onnx/TestCase.cc +++ b/onnxruntime/test/onnx/TestCase.cc @@ -1230,6 +1230,7 @@ std::unique_ptr> GetBrokenTests(const std::string& provider broken_tests->insert({"candy", "Temporarily disabled pending investigation"}); broken_tests->insert({"BERT_Squad", "Temporarily disabled pending investigation"}); broken_tests->insert({"LSTM_Seq_lens_unpacked", "The parameter is incorrect"}); + broken_tests->insert({"mlperf_ssd_resnet34_1200", "The parameter is incorrect"}); broken_tests->insert({"resize_downsample_scales_linear", "DML uses half_pixel and this test assumed \"asymmetric\" but does not include \"mode\""});