File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11391,8 +11391,8 @@ static void ggml_compute_forward_mul_mat(
11391
11391
if (params->type == GGML_TASK_INIT) {
11392
11392
if (src1->type != vec_dot_type) {
11393
11393
char * wdata = params->wdata;
11394
- const size_t row_size = ggml_type_size(vec_dot_type)*(ne10 + ggml_blck_size(vec_dot_type) - 1)
11395
- / ggml_blck_size(vec_dot_type);
11394
+ const size_t row_size = ggml_type_size(vec_dot_type)*(( ne10 + ggml_blck_size(vec_dot_type) - 1)
11395
+ / ggml_blck_size(vec_dot_type)) ;
11396
11396
11397
11397
for (int64_t i13 = 0; i13 < ne13; ++i13) {
11398
11398
for (int64_t i12 = 0; i12 < ne12; ++i12) {
@@ -11412,8 +11412,8 @@ static void ggml_compute_forward_mul_mat(
11412
11412
}
11413
11413
11414
11414
const void * wdata = (src1->type == vec_dot_type) ? src1->data : params->wdata;
11415
- const size_t row_size = ggml_type_size(vec_dot_type)*(ne10 + ggml_blck_size(vec_dot_type) - 1)
11416
- / ggml_blck_size(vec_dot_type);
11415
+ const size_t row_size = ggml_type_size(vec_dot_type)*(( ne10 + ggml_blck_size(vec_dot_type) - 1)
11416
+ / ggml_blck_size(vec_dot_type)) ;
11417
11417
11418
11418
const int64_t nr0 = ne01; // src0 rows
11419
11419
const int64_t nr1 = ne11*ne12*ne13; // src1 rows
You can’t perform that action at this time.
0 commit comments