We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42a3d36 commit 0661d9eCopy full SHA for 0661d9e
1 file changed
ggml/src/ggml-cpu/ops.cpp
@@ -5730,6 +5730,7 @@ void ggml_compute_forward_clamp(
5730
case GGML_TYPE_Q3_K:
5731
case GGML_TYPE_Q4_K:
5732
case GGML_TYPE_Q5_K:
5733
+ case GGML_TYPE_Q6_0:
5734
case GGML_TYPE_Q6_K:
5735
case GGML_TYPE_TQ1_0:
5736
case GGML_TYPE_TQ2_0:
@@ -9514,8 +9515,6 @@ static void ggml_compute_forward_ssm_conv_tree_f32(
9514
9515
const int ir1 = MIN(ir0 + dr, nr);
9516
const int ir = ir1 - ir0;
9517
- const int ncs = src0->ne[0]; // d_conv - 1 + n_t
9518
-
9519
for (int i3 = 0; i3 < n_s; ++i3) {
9520
for (int i2 = 0; i2 < n_t; ++i2) {
9521
// Walk parent chain to find conv window ancestors
0 commit comments