Skip to content

Commit

Permalink
update test for Broadcast.materialize (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
jishnub authored Aug 26, 2023
1 parent 6a6280f commit 631cf79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_broadcasting.jl
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ import BandedMatrices: BandedStyle, BandedRows, BandError
@test Matrix(A)*x y
if l >= 0 && u >= 0
@test all(BLAS.gbmv!('N', n, l, u, 1.0, A.data, x, 0.0, copy(y)) .===
Broadcast.materialize!(MulAdd(1.0,A,x,0.0,similar(y))) .=== y)
ArrayLayouts.materialize!(MulAdd(1.0,A,x,0.0,similar(y))) .=== y)
end

z .= MulAdd(2.0,A,x,3.0,y)
Expand Down

0 comments on commit 631cf79

Please sign in to comment.