From 1ef10291633fb29454bdfc6e39c4cb008fff9112 Mon Sep 17 00:00:00 2001 From: Yi Zhang Date: Thu, 15 Sep 2022 00:43:38 +0800 Subject: [PATCH] Skip 2 tests in windows gpu workflow (#12956) --- onnxruntime/test/providers/cpu/model_tests.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/onnxruntime/test/providers/cpu/model_tests.cc b/onnxruntime/test/providers/cpu/model_tests.cc index 91ae58f4d8..5cc273c73e 100644 --- a/onnxruntime/test/providers/cpu/model_tests.cc +++ b/onnxruntime/test/providers/cpu/model_tests.cc @@ -254,6 +254,13 @@ TEST_P(ModelTest, Run) { // specific keyword. std::set broken_tests_keyword_set = {}; + if (provider_name == "cuda") { +#ifdef _WIN32 + broken_tests.insert({"LSTM_Seq_lens_unpacked", "this test fails with new image since Aug 25."}); + broken_tests.insert({"bidaf", "this test fails with new image since Aug 25."}); +#endif + } + if (provider_name == "nnapi") { broken_tests.insert({"scan9_sum", "Error with the extra graph"}); broken_tests.insert({"scan_sum", "Error with the extra graph"});