mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-23 19:32:23 +00:00
Fix an indent error in build.py (#15497)
### Description Fix an indent error in build.py ### Motivation and Context The problem was introduced in #15395 when I was deleting unused code.
This commit is contained in:
parent
0fdd356abf
commit
f297bbb89b
2 changed files with 8 additions and 2 deletions
|
|
@ -915,7 +915,13 @@ TEST(PoolTest, AveragePool_DefaultStrides) {
|
|||
test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider});
|
||||
}
|
||||
|
||||
#ifdef USE_QNN
|
||||
// TODO: Unskip when fixed AB#14594
|
||||
// Error message: ComposeGraph Failed to compose Qnn graph.
|
||||
TEST(PoolTest, DISABLED_AveragePool_10_ceil1_2d) {
|
||||
#else
|
||||
TEST(PoolTest, AveragePool_10_ceil1_2d) {
|
||||
#endif
|
||||
// TODO: Unskip when fixed #41968513
|
||||
if (DefaultDmlExecutionProvider().get() != nullptr) {
|
||||
GTEST_SKIP() << "Skipping because of the following error: MLOperatorAuthorImpl.cpp(2100): The parameter is incorrect.";
|
||||
|
|
|
|||
|
|
@ -1741,8 +1741,8 @@ def run_onnxruntime_tests(args, source_dir, ctest_path, build_dir, configs):
|
|||
executables.append("onnxruntime_global_thread_pools_test")
|
||||
executables.append("onnxruntime_api_tests_without_env")
|
||||
executables.append("onnxruntime_customopregistration_test")
|
||||
for exe in executables:
|
||||
run_subprocess([os.path.join(cwd, exe)], cwd=cwd, dll_path=dll_path)
|
||||
for exe in executables:
|
||||
run_subprocess([os.path.join(cwd, exe)], cwd=cwd, dll_path=dll_path)
|
||||
|
||||
else:
|
||||
ctest_cmd = [ctest_path, "--build-config", config, "--verbose", "--timeout", args.test_all_timeout]
|
||||
|
|
|
|||
Loading…
Reference in a new issue