mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-07 17:15:29 +00:00
Skip 2 tests in windows gpu workflow (#12956)
This commit is contained in:
parent
b8e34fbd91
commit
1ef1029163
1 changed files with 7 additions and 0 deletions
|
|
@ -254,6 +254,13 @@ TEST_P(ModelTest, Run) {
|
|||
// specific keyword.
|
||||
std::set<std::string> 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"});
|
||||
|
|
|
|||
Loading…
Reference in a new issue