We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a41bba commit ba8e114Copy full SHA for ba8e114
1 file changed
base/broadcast.jl
@@ -973,14 +973,14 @@ end
973
destc = dest.chunks
974
cind = 1
975
bc′ = preprocess(dest, bc)
976
- for P in Iterators.partition(eachindex(bc′), bitcache_size)
+ @inbounds for P in Iterators.partition(eachindex(bc′), bitcache_size)
977
ind = 1
978
@simd for I in P
979
- @inbounds tmp[ind] = bc′[I]
+ tmp[ind] = bc′[I]
980
ind += 1
981
end
982
@simd for i in ind:bitcache_size
983
- @inbounds tmp[i] = false
+ tmp[i] = false
984
985
dumpbitcache(destc, cind, tmp)
986
cind += bitcache_chunks
0 commit comments