We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey,
Compilation breaks with magma 1.5 due to change in the typedef of magma_vec_t
1.4.1:
typedef char magma_vec_t;
1.5
typedef enum { MagmaNoVec = 301, /* geev, syev, gesvd */ MagmaVec = 302, /* geev, syev */ MagmaIVec = 303, /* stedc */ MagmaAllVec = 304, /* gesvd, trevc */ MagmaSomeVec = 305, /* gesvd, trevc */ MagmaOverwriteVec = 306, /* gesvd */ MagmaBacktransVec = 307 /* trevc */ } magma_vec_t;
This breaks compilation of Eigen/src/SVD/JacobiSVD_MAGMA.h because magma_vec_t is an enum now and these options need to be parsed differently:
jobu = (m_computeFullU) ? 'A' : (m_computeThinU) ? 'S' : 'N'; \ jobvt = (m_computeFullV) ? 'A' : (m_computeThinV) ? 'S' : 'N'; \
I will attach a patch shortly.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey,
Compilation breaks with magma 1.5 due to change in the typedef of magma_vec_t
1.4.1:
1.5
This breaks compilation of Eigen/src/SVD/JacobiSVD_MAGMA.h because magma_vec_t is an enum now and these options need to be parsed differently:
I will attach a patch shortly.
The text was updated successfully, but these errors were encountered: