Skip to content

Commit

Permalink
Minor initial fix for missing comma (#3943)
Browse files Browse the repository at this point in the history
Co-authored-by: Peter McNeeley <[email protected]>
  • Loading branch information
petermcneeleychromium and Peter McNeeley authored Sep 11, 2024
1 parent 9619e6a commit 3208356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webgpu/shader/validation/expression/matrix/mul.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ g.test('overflow_mat_f16_internal')
for (let i = 0; i < t.params.c; i++) {
for (let k = 0; k < t.params.r; k++) {
lhs += `${t.params.lhs},`;
rhs += `1`;
rhs += `1,`;
}
}
rhs += ')';
Expand Down

0 comments on commit 3208356

Please sign in to comment.