mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-28 20:11:22 +00:00
Re-enable Sign op int64 test for QNN CPU test (#18734)
### Description Re-enable Sign op int64 test for QNN CPU test
This commit is contained in:
parent
3d8af6eb65
commit
e469de65f5
2 changed files with 1 additions and 10 deletions
|
|
@ -140,8 +140,7 @@ TEST(MathOpTest, Sign_int64) {
|
|||
std::vector<int64_t> output;
|
||||
TestImpl<int64_t>(input.cbegin(), input.cend(), std::back_inserter(output));
|
||||
test.AddOutput<int64_t>("output", input_dims, output);
|
||||
// TODO: QNN execute error, need further investigation
|
||||
test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kOpenVINOExecutionProvider, kQnnExecutionProvider});
|
||||
test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kOpenVINOExecutionProvider});
|
||||
}
|
||||
|
||||
TEST(MathOpTest, Sign_float) {
|
||||
|
|
|
|||
|
|
@ -63,14 +63,6 @@ void TestConvOp(const ConvOpAndTestAttributes& attributes,
|
|||
// QNN SDK 2.10.0 has a bug that breaks support for dynamic bias inputs.
|
||||
excluded_providers.insert(kQnnExecutionProvider);
|
||||
|
||||
// TODO: Enable QNN EP when bug with QNN SDK 2.10.0 is fixed:
|
||||
/*
|
||||
// QNN have issue with dynamic weight, auto pad with SAME_UPPER, SAME_LOWER
|
||||
if (!weight_is_initializer || attributes.auto_pad == "SAME_UPPER" || attributes.auto_pad == "SAME_LOWER") {
|
||||
excluded_providers.insert(kQnnExecutionProvider);
|
||||
}
|
||||
*/
|
||||
|
||||
test.Run(expect_result, err_str, excluded_providers);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue