Martin Möddel

Results 2 issues of Martin Möddel

Does `LoopVectorization` support complex vectors? E.g. ```julia using LoopVectorization function test_avx!(x::Vector, y::Vector, beta) @avx for n=1:length(x) x[n] += conj(beta)*y[n] end end # set up T = ComplexF32 N = 1024...

enhancement

Great package. I am currently using the `TypedPolynomials` package for the construction of polynomials, as it is the most performant in my use case. However, a straight froward conversion to...