Skip to content

Commit ed076f7

Browse files
authored
Merge pull request #39 from termi-official/do/remove-faulty-batch
Remove faulty batch
2 parents b40c73d + f74a59a commit ed076f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SparseMatrixCSR.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ function smul!(y::AbstractVector,A::SparseMatrixCSR,v::AbstractVector, α::Numbe
334334
β != 0 ? rmul!(y, β) : fill!(y, zero(eltype(y)))
335335
end
336336
o = getoffset(A)
337-
@batch for row = 1:size(y, 1)
337+
for row = 1:size(y, 1)
338338
@inbounds for nz in nzrange(A,row)
339339
col = A.colval[nz]+o
340340
y[row] += A.nzval[nz]*v[col]*α

0 commit comments

Comments
 (0)