Skip to content

Commit

Permalink
Fix for 16f min (#3913)
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 Aug 22, 2024
1 parent 6632746 commit 348b113
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ g.test('underflow_f16')
let rhs = `mat${t.params.c}x${t.params.r}h(`;
for (let i = 0; i < t.params.c; i++) {
for (let k = 0; k < t.params.r; k++) {
lhs += `${kValue.f32.negative.min / 2},`;
lhs += `${kValue.f16.negative.min / 2},`;
rhs += `${t.params.rhs},`;
}
}
Expand Down

0 comments on commit 348b113

Please sign in to comment.