Skip to content

Commit

Permalink
Remove some unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
qjia7 committed Feb 15, 2022
1 parent 84da7b9 commit c243e11
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tfjs-backend-webgpu/src/matmul_packed_webgpu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,7 @@ export function makeMatMulPackedSource(
numWorkgroups = NumWorkgroups;
let localRow = i32(localId.y);
let localCol = i32(localId.x);
let tileRow = localRow * ${workPerThread[1]};
let tileCol = localCol * ${workPerThread[0]};
let globalRow = i32(globalId.y) * ${workPerThread[1]};
let globalCol = i32(globalId.x) * ${workPerThread[0]};
let newGlobalRow = i32(workgroupId.y) * ${tileAOuter};
let newGlobalCol = i32(workgroupId.x) * ${tileBOuter};
Expand Down

0 comments on commit c243e11

Please sign in to comment.