For column-major matrices A*B, with A complex and B real would be equivalent to multiplying two real matrices where A has twice the height. Currently, Eigen is not able to vectorize this properly. Actually, clang is able to auto-vectorize this (for full FMA usage, sometimes this requires -ffast-math): https://godbolt.org/z/ILd8tL I guess complex*real could easially be solved by Bug 1019. But real*complex will require some new logic (essentially, the real matrix would need to have each row duplicated).
-- GitLab Migration Automatic Message -- This bug has been migrated to gitlab.com's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.com/libeigen/eigen/issues/1712.