From 51cb9743923645ece6e3cc40cd2c836040f44009 Mon Sep 17 00:00:00 2001 From: Jake Stevens Date: Thu, 16 Jul 2026 06:34:08 -0700 Subject: [PATCH] Forward-fix vulkan test after XNNPACK update Summary: Update conv2d_gemm_dynamic_test to match the bumped XNNPACK convolution operator API which removed the code_cache create argument and the reshape workspace_alignment output argument. Reviewed By: SS-JIA Differential Revision: D112136754 --- backends/vulkan/test/op_tests/conv2d_gemm_dynamic_test.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/backends/vulkan/test/op_tests/conv2d_gemm_dynamic_test.cpp b/backends/vulkan/test/op_tests/conv2d_gemm_dynamic_test.cpp index 69b60e1d964..e5a7216bfe7 100644 --- a/backends/vulkan/test/op_tests/conv2d_gemm_dynamic_test.cpp +++ b/backends/vulkan/test/op_tests/conv2d_gemm_dynamic_test.cpp @@ -247,7 +247,6 @@ std::vector conv2d_ref_xnnpack( out_min, out_max, /*flags=*/0, - /*code_cache=*/nullptr, /*weights_cache=*/nullptr, &op); if (create_status != xnn_status_success || op == nullptr) { @@ -267,7 +266,6 @@ std::vector conv2d_ref_xnnpack( static_cast(H_in), static_cast(W_in), &workspace_size, - &workspace_alignment, &out_h, &out_w, /*threadpool=*/nullptr);