From 2b1b5fe5377b3eb756d4e8e2a076ab65f55d832d Mon Sep 17 00:00:00 2001 From: Hansung Kim Date: Tue, 27 Feb 2024 15:45:22 -0800 Subject: [PATCH] convolution: Fix write_operand_file after upstream merge --- tests/opencl/convolution/main.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/opencl/convolution/main.cc b/tests/opencl/convolution/main.cc index 5c62b56e..dded468f 100644 --- a/tests/opencl/convolution/main.cc +++ b/tests/opencl/convolution/main.cc @@ -238,9 +238,9 @@ int main (int argc, char **argv) { } // NOTE(hansung): Dump operand buffer to a file - if (write_operand_file("matmul.input.a.bin", h_a.data(), nbytes) != 0) + if (write_operand_file("convolution.input.input.bin", h_i.data(), i_nbytes) != 0) return EXIT_FAILURE; - if (write_operand_file("matmul.input.b.bin", h_b.data(), nbytes) != 0) + if (write_operand_file("convolution.input.weights.bin", h_w.data(), w_nbytes) != 0) return EXIT_FAILURE; // Creating command queue