mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-31 08:51:55 +00:00 
			
		
		
		
	metal : do not use mul_mm kernels when ne00 < 64 (#3542)
This commit is contained in:
		| @@ -1040,7 +1040,7 @@ void ggml_metal_graph_compute( | ||||
|                                 !ggml_is_transposed(src0) && | ||||
|                                 !ggml_is_transposed(src1) && | ||||
|                                 src1t == GGML_TYPE_F32 && | ||||
|                                 ne00 % 32 == 0 && | ||||
|                                 ne00 % 32 == 0 && ne00 >= 64 && | ||||
|                                 ne11 > ne11_mm_min) { | ||||
|                                 //printf("matrix: ne00 = %6d, ne01 = %6d, ne02 = %6d, ne11 = %6d, ne12 = %6d\n", ne00, ne01, ne02, ne11, ne12); | ||||
|                                 switch (src0->type) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Georgi Gerganov
					Georgi Gerganov