Skip to content

Commit

Permalink
Revert change in input shape
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianlizarraga committed Aug 3, 2023
1 parent 20edf00 commit 3878e79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion onnxruntime/test/providers/qnn/max_pool_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ TEST_F(QnnHTPBackendTests, DISABLED_MaxPool_Large_Input2_Ceil_HTP_u8) {

// TODO: Certain large input sizes cause the QNN graph to fail to finalize with error 1002 (QNN_COMMON_ERROR_MEM_ALLOC).
TEST_F(QnnHTPBackendTests, DISABLED_MaxPool_LargeInput_1Pads) {
RunQDQMaxPoolOpTest<uint8_t>(TestInputDef<float>({1, 64, 284, 576}, false, -10.0f, 10.0f), // Dynamic input with range [-10, 10]
RunQDQMaxPoolOpTest<uint8_t>(TestInputDef<float>({1, 64, 384, 576}, false, -10.0f, 10.0f), // Dynamic input with range [-10, 10]
{utils::MakeAttribute("kernel_shape", std::vector<int64_t>{3, 3}),
utils::MakeAttribute("strides", std::vector<int64_t>{2, 2}),
utils::MakeAttribute("pads", std::vector<int64_t>{1, 1, 1, 1}),
Expand Down

0 comments on commit 3878e79

Please sign in to comment.