Skip to content

Commit f1aad67

Browse files
committed
Turn off fastmath mode in turbo
1 parent 5030ad7 commit f1aad67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ end
7878
is_bad_array(x) = !is_good_array(x)
7979
function is_good_array(x::AbstractArray{T}) where {T}
8080
cumulator = zero(T)
81-
@turbo for i in eachindex(x)
81+
@turbo safe = false for i in eachindex(x)
8282
cumulator += x[i] * 0
8383
end
8484
return cumulator == 0

0 commit comments

Comments
 (0)