Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit 13cec58

Browse files
Merge pull request #152 from ferrolho/master
Removes `ivdep` from `forwarddiff_color_jacobian!`
2 parents 47a8a9f + 51d213f commit 13cec58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/differentiation/compute_jacobian_ad.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ function forwarddiff_color_jacobian!(J::AbstractMatrix{<:Number},
318318
for j in 1:chunksize
319319

320320
if dx isa Array
321-
@inbounds @simd ivdep for k in eachindex(dx)
321+
@inbounds @simd for k in eachindex(dx)
322322
dx[k] = partials(fx[k], j)
323323
end
324324
else

0 commit comments

Comments
 (0)