mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-30 08:42:00 +00:00 
			
		
		
		
	metal : correct fix of kernel_norm (#3060)
Co-authored-by: Iwan Kawrakow <iwan.kawrakow@gmail.com> Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
This commit is contained in:
		| @@ -220,29 +220,14 @@ kernel void kernel_norm( | |||||||
|         } |         } | ||||||
|         threadgroup_barrier(mem_flags::mem_threadgroup); |         threadgroup_barrier(mem_flags::mem_threadgroup); | ||||||
|     } |     } | ||||||
|     // broadcast |     const float mean  = sum[0] / ne00; | ||||||
|     if (tpitg == 0) { |  | ||||||
|         sum[0] /= ne00; |     // recenter and VARIANCE | ||||||
|     } |  | ||||||
|     threadgroup_barrier(mem_flags::mem_threadgroup); |     threadgroup_barrier(mem_flags::mem_threadgroup); | ||||||
|     const float mean  = sum[0]; |  | ||||||
|  |  | ||||||
|     // recenter |  | ||||||
|     device float * y = dst + tgpig*ne00; |     device float * y = dst + tgpig*ne00; | ||||||
|     for (int i00 = tpitg; i00 < ne00; i00 += ntg) { |  | ||||||
|         y[i00] = x[i00] - mean; |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     // VARIANCE |  | ||||||
|     // parallel sum |  | ||||||
|     // |  | ||||||
|     // WARNING: combining this loop with the one above will give you wrong results for nth == 256 |  | ||||||
|     //          I have no idea why, so for now I am keeping them separate. But this behavior is very concerning. |  | ||||||
|     //          Tested with: |  | ||||||
|     //          ./perplexity -m ./falcon-7b/ggml-model-q4_0.gguf -f wiki.test.raw -ngl 1 -t 4 |  | ||||||
|     // |  | ||||||
|     sum[tpitg] = 0.0f; |     sum[tpitg] = 0.0f; | ||||||
|     for (int i00 = tpitg; i00 < ne00; i00 += ntg) { |     for (int i00 = tpitg; i00 < ne00; i00 += ntg) { | ||||||
|  |         y[i00] = x[i00] - mean; | ||||||
|         sum[tpitg] += y[i00] * y[i00]; |         sum[tpitg] += y[i00] * y[i00]; | ||||||
|     } |     } | ||||||
|  |  | ||||||
| @@ -254,12 +239,7 @@ kernel void kernel_norm( | |||||||
|         } |         } | ||||||
|         threadgroup_barrier(mem_flags::mem_threadgroup); |         threadgroup_barrier(mem_flags::mem_threadgroup); | ||||||
|     } |     } | ||||||
|     // broadcast |     const float variance = sum[0] / ne00; | ||||||
|     if (tpitg == 0) { |  | ||||||
|         sum[0] /= ne00; |  | ||||||
|     } |  | ||||||
|     threadgroup_barrier(mem_flags::mem_threadgroup); |  | ||||||
|     const float variance = sum[0]; |  | ||||||
|  |  | ||||||
|     const float scale = 1.0f/sqrt(variance + eps); |     const float scale = 1.0f/sqrt(variance + eps); | ||||||
|     for (int i00 = tpitg; i00 < ne00; i00 += ntg) { |     for (int i00 = tpitg; i00 < ne00; i00 += ntg) { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Kawrakow
					Kawrakow