We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f46fc81 commit 195de9aCopy full SHA for 195de9a
1 file changed
test/serial/PETScArraysTests.jl
@@ -6,6 +6,7 @@ using SparseArrays
6
using SparseMatricesCSR
7
using GridapPETSc: PetscScalar, PetscInt
8
using LinearAlgebra
9
+using Gridap.Algebra: muladd!
10
11
options = "-info"
12
out_1 = "some output"
@@ -67,6 +68,7 @@ out_2 = GridapPETSc.with(args=split(options)) do
67
68
@test typeof(y) == typeof(x)
69
@test y == [2,3,3,3]
70
muladd!(y,C,x)
71
+ @test y == [2,3,3,3]
72
73
y = 2*x
74
0 commit comments