Skip to content

Commit 9e07767

Browse files
committed
opencl: fix extra struct alloc
1 parent 208fe33 commit 9e07767

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-opencl/ggml-opencl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3046,7 +3046,7 @@ struct ggml_backend_opencl_buffer_context {
30463046
extra = new ggml_tensor_extra_cl_q8_0();
30473047
} else {
30483048
extra = temp_tensor_extras_q8_0.back();
3049-
temp_tensor_extras_q4_0.pop_back();
3049+
temp_tensor_extras_q8_0.pop_back();
30503050
}
30513051

30523052
temp_tensor_extras_q8_0_in_use.push_back(extra);

0 commit comments

Comments
 (0)