Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into snnn/p99999
Browse files Browse the repository at this point in the history
  • Loading branch information
snnn committed Jul 12, 2024
2 parents c484559 + 92a8407 commit 08e4bb1
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -328,13 +328,6 @@ fn main(@builtin(local_invocation_id) localId : vec3<u32>,
var kStart = ${splitK ? `i32(globalId.z) * ${splitedDimInner}` : '0'};
var acc : array<array<${type}, colPerThread>, rowPerThread>;
// Without this initialization strange values show up in acc.
for (var innerRow = 0; innerRow < rowPerThread; innerRow = innerRow + 1) {
for (var innerCol = 0; innerCol < colPerThread; innerCol = innerCol + 1) {
acc[innerRow][innerCol] = 0.0;
}
}
${matmulSnippet}
}
`;
Expand Down

0 comments on commit 08e4bb1

Please sign in to comment.