Closed DilumAluthge closed 3 years ago
You can also view the coverage on the Codecov website, specifically here: https://codecov.io/gh/JuliaLinearAlgebra/Octavian.jl/src/master/src/macrokernels.jl
Observe that line 6 is red.
If I delete line 5 (the line that says iszero(β) && return macrokernel!(C, A, B, α, StaticInt{0}())
, then it works just fine.
And I definitely have a test in the test suite with nonzero β
.
Here's coverage for
src/macrokernel.jl
. Observe the0
on line 6:Any idea what's going on? Why is the line with
@avx
not getting covered?I thought maybe the issue was having both the
for n
andfor m
on the same line, so I moved thefor m
onto the next line. But that doesn't change anything. Here's the coverage from that experiment. As you can see, there is still a0
on line 6: