Skip to content

Commit

Permalink
Fixed spacing layernorm.cu
Browse files Browse the repository at this point in the history
  • Loading branch information
linjames0 committed Sep 24, 2023
1 parent 3696523 commit cb6880e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions layernorm.cu
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ __global__ void mean(float *d_a, float *d_mean, float *redArr1, int N) {
__syncthreads();

d_mean[0] = redArr1[0] / N;


}

__global__ void var(float *d_a, float *d_var, float *d_mean, float *redArr1, float *redArr2, int N) {
Expand Down

0 comments on commit cb6880e

Please sign in to comment.