Skip to content

Commit 7f64bfd

Browse files
committed
opencl: fix extra struct alloc
1 parent a1625e1 commit 7f64bfd

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
@@ -3047,7 +3047,7 @@ struct ggml_backend_opencl_buffer_context {
30473047
extra = new ggml_tensor_extra_cl_q8_0();
30483048
} else {
30493049
extra = temp_tensor_extras_q8_0.back();
3050-
temp_tensor_extras_q4_0.pop_back();
3050+
temp_tensor_extras_q8_0.pop_back();
30513051
}
30523052

30533053
temp_tensor_extras_q8_0_in_use.push_back(extra);

0 commit comments

Comments
 (0)