remove trailing whitespace
This commit is contained in:
parent
83cb9ed4f5
commit
83a4ad7986
2 changed files with 2 additions and 2 deletions
|
@ -386,7 +386,7 @@ void init_model(struct llama_model * input, struct my_llama_model * model, uint3
|
|||
|
||||
snprintf(name, GGML_MAX_NAME, "layers.%d.feed_forward.w2.weight", i);
|
||||
layer.w2 = llama_get_model_tensor(input, name);
|
||||
|
||||
|
||||
snprintf(name, GGML_MAX_NAME, "layers.%d.feed_forward.w3.weight", i);
|
||||
layer.w3 = llama_get_model_tensor(input, name);
|
||||
}
|
||||
|
|
2
ggml.c
2
ggml.c
|
@ -10815,7 +10815,7 @@ static void ggml_compute_forward_out_prod_q_f32(
|
|||
float * s0 = (float *) ((char *) src0->data + ( i01*nb01 + i02*nb02 + i03*nb03));
|
||||
float * s1 = (float *) ((char *) src1->data + (i1*nb10 + i11*nb11 + i12*nb12 + i13*nb13));
|
||||
float * d = (float *) ((char *) dst->data + ( i1*nb1 + i2*nb2 + i3*nb3));
|
||||
|
||||
|
||||
dequantize_row_q(s0, wdata, ne0);
|
||||
ggml_vec_mad_f32(ne0, d, wdata, *s1);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue