convolution: Fix write_operand_file after upstream merge

This commit is contained in:
Hansung Kim
2024-02-27 15:45:22 -08:00
parent f1e7407d3a
commit 2b1b5fe537

View File

@@ -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