# HG changeset patch # User Tuomo Valkonen # Date 1630072576 -10800 # Node ID 69242e8598eb2a0891502cdcb8b8769505240961 # Parent ffd693c381f2a177d3ca6c8c4e308e7426fd36aa a bit less workaround diff -r ffd693c381f2 -r 69242e8598eb src/Util.jl --- a/src/Util.jl Fri Aug 27 16:35:50 2021 +0300 +++ b/src/Util.jl Fri Aug 27 16:56:16 2021 +0300 @@ -195,7 +195,7 @@ @inbounds @simd for i=1:size(y′, 2)# in CartesianIndices(size(y)[2:end]) n² = norm₂²(@view(y′[:, i])) if n²>α² - @. @views y′[:, i] = y′[:, i]*(α/√n²) + @views y′[:, i] .*= (α/√n²) end end end