mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-30 08:42:00 +00:00 
			
		
		
		
	ggml : update cblas_sgemm columns var to be more reasonable (#838)
This commit is contained in:
		
							
								
								
									
										6
									
								
								ggml.c
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								ggml.c
									
									
									
									
									
								
							| @@ -6435,7 +6435,7 @@ static void ggml_compute_forward_mul_mat_f32( | ||||
|                 cblas_sgemm(CblasRowMajor, CblasNoTrans, CblasTrans, | ||||
|                         ne11, ne01, ne10, | ||||
|                         1.0f,    y, ne10, | ||||
|                                  x, ne10, | ||||
|                                  x, ne00, | ||||
|                         0.0f,    d, ne01); | ||||
|             } | ||||
|         } | ||||
| @@ -6607,7 +6607,7 @@ static void ggml_compute_forward_mul_mat_f16_f32( | ||||
|                 cblas_sgemm(CblasRowMajor, CblasNoTrans, CblasTrans, | ||||
|                         ne11, ne01, ne10, | ||||
|                         1.0f,    y, ne10, | ||||
|                                  x, ne10, | ||||
|                                  x, ne00, | ||||
|                         0.0f,    d, ne01); | ||||
|             } | ||||
|         } | ||||
| @@ -6820,7 +6820,7 @@ static void ggml_compute_forward_mul_mat_q_f32( | ||||
|                 cblas_sgemm(CblasRowMajor, CblasNoTrans, CblasTrans, | ||||
|                         ne11, ne01, ne10, | ||||
|                         1.0f,    y, ne10, | ||||
|                                  x, ne10, | ||||
|                                  x, ne00, | ||||
|                         0.0f,    d, ne01); | ||||
|             } | ||||
|         } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Vladimir
					Vladimir