Skip to content

Commit 96e1795

Browse files
committed
Fix bug in tests with Julia 1.9.2
1 parent d35230b commit 96e1795

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/eval.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ function carry_out!(
113113
(α1, α2) = graph.coeffs[node]
114114
# Assumes second argument is copy(parentval2)
115115
vals[node] = copy(parentval2)
116-
BLAS.axpby!(α1, parentval1, α2, vals[node])
116+
axpby!(α1, parentval1, α2, vals[node])
117117
#result[:]=α1*parentval1+α2*parentval2 # equivalent
118118
elseif (op == :ldiv)
119119
vals[node] = parentval1 \ parentval2

0 commit comments

Comments
 (0)