Make use of 32 bit ints explicit and remove executable bit from headers.

This commit is contained in:
Ville Kallioniemi 2016-01-21 23:00:32 -07:00
commit 73aec9219b
23 changed files with 2 additions and 8 deletions

0
Eigen/src/Core/AssignEvaluator.h Executable file → Normal file
View File

0
Eigen/src/Core/Assign_MKL.h Executable file → Normal file
View File

0
Eigen/src/Core/ProductEvaluators.h Executable file → Normal file
View File

0
Eigen/src/Core/VectorwiseOp.h Executable file → Normal file
View File

0
Eigen/src/Core/arch/AltiVec/PacketMath.h Executable file → Normal file
View File

0
Eigen/src/Core/arch/SSE/PacketMath.h Executable file → Normal file
View File

0
Eigen/src/Core/products/GeneralMatrixVector_MKL.h Executable file → Normal file
View File

0
Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h Executable file → Normal file
View File

0
Eigen/src/Core/products/TriangularMatrixMatrix_MKL.h Executable file → Normal file
View File

0
Eigen/src/Core/util/BlasUtil.h Executable file → Normal file
View File

0
Eigen/src/Core/util/DisableStupidWarnings.h Executable file → Normal file
View File

0
Eigen/src/Eigenvalues/ComplexSchur_MKL.h Executable file → Normal file
View File

0
Eigen/src/Eigenvalues/GeneralizedEigenSolver.h Executable file → Normal file
View File

0
Eigen/src/Eigenvalues/RealQZ.h Executable file → Normal file
View File

0
Eigen/src/Eigenvalues/RealSchur_MKL.h Executable file → Normal file
View File

0
Eigen/src/Eigenvalues/SelfAdjointEigenSolver_MKL.h Executable file → Normal file
View File

0
Eigen/src/PardisoSupport/PardisoSupport.h Executable file → Normal file
View File

0
Eigen/src/QR/ColPivHouseholderQR_MKL.h Executable file → Normal file
View File

0
Eigen/src/SVD/JacobiSVD.h Executable file → Normal file
View File

0
Eigen/src/SparseLU/SparseLU.h Executable file → Normal file
View File

0
bench/btl/generic_bench/timers/portable_timer.hh Executable file → Normal file
View File

View File

@ -34,17 +34,11 @@ struct TensorUInt128
LOW low;
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE
TensorUInt128(int x) : high(0), low(x) {
TensorUInt128(int32_t x) : high(0), low(x) {
eigen_assert(x >= 0);
}
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE
TensorUInt128(unsigned int x) : high(0), low(x) { }
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE
TensorUInt128(long x) : high(0), low(x) {
eigen_assert(x >= 0);
}
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE
TensorUInt128(unsigned long x) : high(0), low(x) { }
TensorUInt128(uint32_t x) : high(0), low(x) { }
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE
TensorUInt128(int64_t x) : high(0), low(x) {
eigen_assert(x >= 0);

0
unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h Executable file → Normal file
View File