From 631cf793fcd7e2b2df52a50dd70ec8aa6ddaeb75 Mon Sep 17 00:00:00 2001 From: Jishnu Bhattacharya Date: Sat, 26 Aug 2023 13:42:27 +0400 Subject: [PATCH] update test for Broadcast.materialize (#397) --- test/test_broadcasting.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_broadcasting.jl b/test/test_broadcasting.jl index 45ab873b..6752a7a6 100644 --- a/test/test_broadcasting.jl +++ b/test/test_broadcasting.jl @@ -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)