mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-27 20:02:15 +00:00
Fix file list for test of build with IO debug (#16474)
### Description <!-- Describe your changes. --> Update file list to adjust for recent changes to test infra. ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. -->
This commit is contained in:
parent
7e211f0e03
commit
48eff09664
2 changed files with 4 additions and 3 deletions
|
|
@ -1306,10 +1306,11 @@ if (NOT onnxruntime_ENABLE_TRAINING_TORCH_INTEROP)
|
|||
"${TEST_SRC_DIR}/framework/test_utils.cc"
|
||||
"${TEST_SRC_DIR}/providers/base_tester.h"
|
||||
"${TEST_SRC_DIR}/providers/base_tester.cc"
|
||||
"${TEST_SRC_DIR}/providers/checkers.h"
|
||||
"${TEST_SRC_DIR}/providers/checkers.cc"
|
||||
"${TEST_SRC_DIR}/providers/op_tester.h"
|
||||
"${TEST_SRC_DIR}/providers/op_tester.cc"
|
||||
"${TEST_SRC_DIR}/providers/provider_test_utils.h"
|
||||
"${TEST_SRC_DIR}/providers/provider_test_utils.cc"
|
||||
"${TEST_SRC_DIR}/providers/tester_types.h"
|
||||
${onnxruntime_unittest_main_src}
|
||||
LIBS ${onnxruntime_test_providers_libs} ${onnxruntime_test_common_libs}
|
||||
|
|
|
|||
|
|
@ -435,7 +435,7 @@ TEST(Einsum, ExplicitEinsumAsBatchedDiagonalOp_1) {
|
|||
TEST(Einsum, ImplicitEinsumAsDiagonalOp) {
|
||||
// TODO: Unskip when fixed #41968513
|
||||
if (DefaultDmlExecutionProvider().get() != nullptr) {
|
||||
GTEST_SKIP() << "Skipping because of the following error: provider_test_utils.cc(284): error: The difference between expected[i] and output[i] is 5, which exceeds threshold";
|
||||
GTEST_SKIP() << "Skipping because of the following error: The difference between expected[i] and output[i] is 5, which exceeds threshold";
|
||||
}
|
||||
|
||||
OpTester test("Einsum", 12, onnxruntime::kOnnxDomain);
|
||||
|
|
@ -448,7 +448,7 @@ TEST(Einsum, ImplicitEinsumAsDiagonalOp) {
|
|||
TEST(Einsum, ImplicitEinsumAsDiagonalOp_1) {
|
||||
// TODO: Unskip when fixed #41968513
|
||||
if (DefaultDmlExecutionProvider().get() != nullptr) {
|
||||
GTEST_SKIP() << "Skipping because of the following error: provider_test_utils.cc(284): error: The difference between expected[i] and output[i] is 15, which exceeds threshold";
|
||||
GTEST_SKIP() << "Skipping because of the following error: error: The difference between expected[i] and output[i] is 15, which exceeds threshold";
|
||||
}
|
||||
|
||||
OpTester test("Einsum", 12, onnxruntime::kOnnxDomain);
|
||||
|
|
|
|||
Loading…
Reference in a new issue