Skip to content

Commit

Permalink
work around repr bug in Nim 1.6.14
Browse files Browse the repository at this point in the history
  • Loading branch information
jcosborn committed Aug 5, 2023
1 parent 27f6e7f commit 828e35a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bench/benchLinalg.nim
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ proc test(lat:auto) =
bench(nc*mvf, 3*mb, 3*mb):
for e in m3:
var vt{.noInit.}:type(v2[e])
forStatic i, 0, nc.pred:
#forStatic i, 0, nc.pred:
for i in 0..<nc:
mul(vt, m1[e], row(m2[e],i))
setRow(m3[e], vt, i)

Expand Down

0 comments on commit 828e35a

Please sign in to comment.