| commit | 8e1df5b08280f07a8814719fdbbeaf6fababd2dc | [log] [tgz] |
|---|---|---|
| author | Yong Tang <yong.tang.github@outlook.com> | Thu May 28 05:50:56 2020 -0700 |
| committer | Yong Tang <yong.tang.github@outlook.com> | Thu May 28 05:53:44 2020 -0700 |
| tree | b7d8e618a4fd7d8030c9b71dc6ea5c15365a9206 | |
| parent | 4e7046063babd95e100ab202d52ca5776997c80c [diff] |
Fix incorrect usage of `if defined(EIGEN_ARCH_PPC)` => `if EIGEN_ARCH_PPC` This PR tries to fix an incorrect usage of `if defined(EIGEN_ARCH_PPC)` in `Eigen/Core` header. In `Eigen/src/Core/util/Macros.h`, EIGEN_ARCH_PPC was explicitly defined as either 0 or 1. As a result `if defined(EIGEN_ARCH_PPC)` will always be true. This causes issues when building on non PPC platform and `MatrixProduct.h` is not available. This fix changes `if defined(EIGEN_ARCH_PPC)` => `if EIGEN_ARCH_PPC`. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms.
For more information go to http://eigen.tuxfamily.org/.
For pull request, bug reports, and feature requests, go to https://gitlab.com/libeigen/eigen.