Skip to content

Remove vectorization hints from operations that can be done inplace.

Previously we hinted to the compiler that it should vectorized operations where the input and output are the same array. This obviously caused problems, and these hints had to be removed.

In the future we need to first check for aliased arrays, and go from there.

Merge request reports