Re: [eigen] Array of complex numbers

[ Thread Index | Date Index | More lists.tuxfamily.org/eigen Archives ]


for pzero, you need the devel branch of Eigen, or just replace it by pset1<Packet>(0).

For linear combination with complex coeffs I don't think it's possible to get close SoA for such small (i.e. in-cache) arrays.

gael

On Thu, Jan 10, 2019 at 11:00 PM Francois Fayard <fayard@xxxxxxxxxxxxx> wrote:
Thanks,

You are right about the operations. Obviously, for the “linear combination”, I am interested in the case where rk are complex numbers.

I have tried to compile your code that implements the scalar product, but I don’t have any definition for pzero? Where is it?

François

> On 10 Jan 2019, at 22:25, Gael Guennebaud <gael.guennebaud@xxxxxxxxx> wrote:
>
> Hi,
>
> just to be sure I fully understood the operations you're considering, let's assume you have:
>
> VectorXcf A1(300), A2(300), ...;
> complex<float> c1, c2, ...;
> float r1, r2, ...;
>
> then "Scalar product" means:
>
> A1.dot(A2)
>
>  and "Linear combination" means:
>
> r1*A1 + r2*A2 + ...
>
> If this is right, then linear combination with real coefficients should already be 100% optimal and the only problematic operation could be dot products because of the complex*complex product overhead. I think those can be optimized while keeping an AoS layout by accumulating within multiple packets that we combine only at the end of the reduction instead of doing and expensive combination for every product. This is similar to what we do in GEMM.
>
> I gave it a shot, and I get similar speed than with a SoA layout. See attached file. This is a proof of concept : AVX only, no conjugation, n%16==0, etc.
>
> I think this can be integrated within Eigen by generalizing a bit the current reduction code to allow for custom accumulation packets.
>
> cheers,
> gael
> <bench_cplx_dotprod.cpp>





Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/