From 7f6963061f3d19fdfd92d2409bf7ecb6f855e7f0 Mon Sep 17 00:00:00 2001 From: Michael Adragna Date: Tue, 29 Jul 2025 11:58:12 -0700 Subject: [PATCH] Remove unsupported method encode_prepack() from flash attention tests Summary: Remove unsupported method encode_prepack() from flash attention tests which was causing CI failure. Reviewed By: mcr229 Differential Revision: D79128259 --- backends/vulkan/test/op_tests/sdpa_test.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/backends/vulkan/test/op_tests/sdpa_test.cpp b/backends/vulkan/test/op_tests/sdpa_test.cpp index 303dc9c85ec..f79f1414f52 100644 --- a/backends/vulkan/test/op_tests/sdpa_test.cpp +++ b/backends/vulkan/test/op_tests/sdpa_test.cpp @@ -584,7 +584,6 @@ void test_vulkan_flash_attention( ValueRef staging_out = graph.set_output_tensor(r_out); graph.prepare(); - graph.encode_prepack(); graph.prepack(); graph.encode_execute(); @@ -843,7 +842,6 @@ void test_reference_flash_attention( ValueRef staging_out = graph.set_output_tensor(r_out); graph.prepare(); - graph.encode_prepack(); graph.prepack(); graph.encode_execute();