mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
Make use of 32 bit ints explicit and remove executable bit from headers.
This commit is contained in:
commit
73aec9219b
0
Eigen/src/Core/AssignEvaluator.h
Executable file → Normal file
0
Eigen/src/Core/AssignEvaluator.h
Executable file → Normal file
0
Eigen/src/Core/Assign_MKL.h
Executable file → Normal file
0
Eigen/src/Core/Assign_MKL.h
Executable file → Normal file
0
Eigen/src/Core/ProductEvaluators.h
Executable file → Normal file
0
Eigen/src/Core/ProductEvaluators.h
Executable file → Normal file
0
Eigen/src/Core/VectorwiseOp.h
Executable file → Normal file
0
Eigen/src/Core/VectorwiseOp.h
Executable file → Normal file
0
Eigen/src/Core/arch/AltiVec/PacketMath.h
Executable file → Normal file
0
Eigen/src/Core/arch/AltiVec/PacketMath.h
Executable file → Normal file
0
Eigen/src/Core/arch/SSE/PacketMath.h
Executable file → Normal file
0
Eigen/src/Core/arch/SSE/PacketMath.h
Executable file → Normal file
0
Eigen/src/Core/products/GeneralMatrixVector_MKL.h
Executable file → Normal file
0
Eigen/src/Core/products/GeneralMatrixVector_MKL.h
Executable file → Normal file
0
Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h
Executable file → Normal file
0
Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h
Executable file → Normal file
0
Eigen/src/Core/products/TriangularMatrixMatrix_MKL.h
Executable file → Normal file
0
Eigen/src/Core/products/TriangularMatrixMatrix_MKL.h
Executable file → Normal file
0
Eigen/src/Core/util/BlasUtil.h
Executable file → Normal file
0
Eigen/src/Core/util/BlasUtil.h
Executable file → Normal file
0
Eigen/src/Core/util/DisableStupidWarnings.h
Executable file → Normal file
0
Eigen/src/Core/util/DisableStupidWarnings.h
Executable file → Normal file
0
Eigen/src/Eigenvalues/ComplexSchur_MKL.h
Executable file → Normal file
0
Eigen/src/Eigenvalues/ComplexSchur_MKL.h
Executable file → Normal file
0
Eigen/src/Eigenvalues/GeneralizedEigenSolver.h
Executable file → Normal file
0
Eigen/src/Eigenvalues/GeneralizedEigenSolver.h
Executable file → Normal file
0
Eigen/src/Eigenvalues/RealQZ.h
Executable file → Normal file
0
Eigen/src/Eigenvalues/RealQZ.h
Executable file → Normal file
0
Eigen/src/Eigenvalues/RealSchur_MKL.h
Executable file → Normal file
0
Eigen/src/Eigenvalues/RealSchur_MKL.h
Executable file → Normal file
0
Eigen/src/Eigenvalues/SelfAdjointEigenSolver_MKL.h
Executable file → Normal file
0
Eigen/src/Eigenvalues/SelfAdjointEigenSolver_MKL.h
Executable file → Normal file
0
Eigen/src/PardisoSupport/PardisoSupport.h
Executable file → Normal file
0
Eigen/src/PardisoSupport/PardisoSupport.h
Executable file → Normal file
0
Eigen/src/QR/ColPivHouseholderQR_MKL.h
Executable file → Normal file
0
Eigen/src/QR/ColPivHouseholderQR_MKL.h
Executable file → Normal file
0
Eigen/src/SVD/JacobiSVD.h
Executable file → Normal file
0
Eigen/src/SVD/JacobiSVD.h
Executable file → Normal file
0
Eigen/src/SparseLU/SparseLU.h
Executable file → Normal file
0
Eigen/src/SparseLU/SparseLU.h
Executable file → Normal file
0
bench/btl/generic_bench/timers/portable_timer.hh
Executable file → Normal file
0
bench/btl/generic_bench/timers/portable_timer.hh
Executable file → Normal 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
0
unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h
Executable file → Normal file
Loading…
Reference in New Issue
Block a user