tomoto 0.2.3 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +8 -10
- data/ext/tomoto/extconf.rb +6 -2
- data/ext/tomoto/{ext.cpp → tomoto.cpp} +1 -1
- data/lib/tomoto/version.rb +1 -1
- data/lib/tomoto.rb +5 -1
- data/vendor/EigenRand/EigenRand/Core.h +10 -10
- data/vendor/EigenRand/EigenRand/Dists/Basic.h +208 -9
- data/vendor/EigenRand/EigenRand/Dists/Discrete.h +52 -31
- data/vendor/EigenRand/EigenRand/Dists/GammaPoisson.h +9 -8
- data/vendor/EigenRand/EigenRand/Dists/NormalExp.h +28 -21
- data/vendor/EigenRand/EigenRand/EigenRand +11 -6
- data/vendor/EigenRand/EigenRand/Macro.h +13 -7
- data/vendor/EigenRand/EigenRand/MorePacketMath.h +348 -740
- data/vendor/EigenRand/EigenRand/MvDists/Multinomial.h +5 -3
- data/vendor/EigenRand/EigenRand/MvDists/MvNormal.h +9 -3
- data/vendor/EigenRand/EigenRand/PacketFilter.h +11 -253
- data/vendor/EigenRand/EigenRand/PacketRandomEngine.h +21 -47
- data/vendor/EigenRand/EigenRand/RandUtils.h +50 -344
- data/vendor/EigenRand/EigenRand/arch/AVX/MorePacketMath.h +619 -0
- data/vendor/EigenRand/EigenRand/arch/AVX/PacketFilter.h +149 -0
- data/vendor/EigenRand/EigenRand/arch/AVX/RandUtils.h +228 -0
- data/vendor/EigenRand/EigenRand/arch/NEON/MorePacketMath.h +473 -0
- data/vendor/EigenRand/EigenRand/arch/NEON/PacketFilter.h +142 -0
- data/vendor/EigenRand/EigenRand/arch/NEON/RandUtils.h +126 -0
- data/vendor/EigenRand/EigenRand/arch/SSE/MorePacketMath.h +501 -0
- data/vendor/EigenRand/EigenRand/arch/SSE/PacketFilter.h +133 -0
- data/vendor/EigenRand/EigenRand/arch/SSE/RandUtils.h +120 -0
- data/vendor/EigenRand/EigenRand/doc.h +24 -12
- data/vendor/EigenRand/README.md +57 -4
- data/vendor/eigen/COPYING.APACHE +203 -0
- data/vendor/eigen/COPYING.BSD +1 -1
- data/vendor/eigen/COPYING.MINPACK +51 -52
- data/vendor/eigen/Eigen/Cholesky +0 -1
- data/vendor/eigen/Eigen/Core +112 -265
- data/vendor/eigen/Eigen/Eigenvalues +2 -3
- data/vendor/eigen/Eigen/Geometry +5 -8
- data/vendor/eigen/Eigen/Householder +0 -1
- data/vendor/eigen/Eigen/Jacobi +0 -1
- data/vendor/eigen/Eigen/KLUSupport +41 -0
- data/vendor/eigen/Eigen/LU +2 -5
- data/vendor/eigen/Eigen/OrderingMethods +0 -3
- data/vendor/eigen/Eigen/PaStiXSupport +1 -0
- data/vendor/eigen/Eigen/PardisoSupport +0 -0
- data/vendor/eigen/Eigen/QR +2 -3
- data/vendor/eigen/Eigen/QtAlignedMalloc +0 -1
- data/vendor/eigen/Eigen/SVD +0 -1
- data/vendor/eigen/Eigen/Sparse +0 -2
- data/vendor/eigen/Eigen/SparseCholesky +0 -8
- data/vendor/eigen/Eigen/SparseLU +4 -0
- data/vendor/eigen/Eigen/SparseQR +0 -1
- data/vendor/eigen/Eigen/src/Cholesky/LDLT.h +42 -27
- data/vendor/eigen/Eigen/src/Cholesky/LLT.h +39 -23
- data/vendor/eigen/Eigen/src/CholmodSupport/CholmodSupport.h +90 -47
- data/vendor/eigen/Eigen/src/Core/ArithmeticSequence.h +413 -0
- data/vendor/eigen/Eigen/src/Core/Array.h +99 -11
- data/vendor/eigen/Eigen/src/Core/ArrayBase.h +3 -3
- data/vendor/eigen/Eigen/src/Core/ArrayWrapper.h +21 -21
- data/vendor/eigen/Eigen/src/Core/Assign.h +1 -1
- data/vendor/eigen/Eigen/src/Core/AssignEvaluator.h +125 -50
- data/vendor/eigen/Eigen/src/Core/Assign_MKL.h +10 -10
- data/vendor/eigen/Eigen/src/Core/BandMatrix.h +16 -16
- data/vendor/eigen/Eigen/src/Core/Block.h +56 -60
- data/vendor/eigen/Eigen/src/Core/BooleanRedux.h +29 -31
- data/vendor/eigen/Eigen/src/Core/CommaInitializer.h +7 -3
- data/vendor/eigen/Eigen/src/Core/CoreEvaluators.h +325 -272
- data/vendor/eigen/Eigen/src/Core/CoreIterators.h +5 -0
- data/vendor/eigen/Eigen/src/Core/CwiseBinaryOp.h +21 -22
- data/vendor/eigen/Eigen/src/Core/CwiseNullaryOp.h +153 -18
- data/vendor/eigen/Eigen/src/Core/CwiseUnaryOp.h +6 -6
- data/vendor/eigen/Eigen/src/Core/CwiseUnaryView.h +14 -10
- data/vendor/eigen/Eigen/src/Core/DenseBase.h +132 -42
- data/vendor/eigen/Eigen/src/Core/DenseCoeffsBase.h +25 -21
- data/vendor/eigen/Eigen/src/Core/DenseStorage.h +153 -71
- data/vendor/eigen/Eigen/src/Core/Diagonal.h +21 -23
- data/vendor/eigen/Eigen/src/Core/DiagonalMatrix.h +50 -2
- data/vendor/eigen/Eigen/src/Core/DiagonalProduct.h +1 -1
- data/vendor/eigen/Eigen/src/Core/Dot.h +10 -10
- data/vendor/eigen/Eigen/src/Core/EigenBase.h +10 -9
- data/vendor/eigen/Eigen/src/Core/ForceAlignedAccess.h +8 -4
- data/vendor/eigen/Eigen/src/Core/Fuzzy.h +3 -3
- data/vendor/eigen/Eigen/src/Core/GeneralProduct.h +20 -10
- data/vendor/eigen/Eigen/src/Core/GenericPacketMath.h +599 -152
- data/vendor/eigen/Eigen/src/Core/GlobalFunctions.h +40 -33
- data/vendor/eigen/Eigen/src/Core/IO.h +40 -7
- data/vendor/eigen/Eigen/src/Core/IndexedView.h +237 -0
- data/vendor/eigen/Eigen/src/Core/Inverse.h +9 -10
- data/vendor/eigen/Eigen/src/Core/Map.h +7 -7
- data/vendor/eigen/Eigen/src/Core/MapBase.h +10 -3
- data/vendor/eigen/Eigen/src/Core/MathFunctions.h +767 -125
- data/vendor/eigen/Eigen/src/Core/MathFunctionsImpl.h +118 -19
- data/vendor/eigen/Eigen/src/Core/Matrix.h +131 -25
- data/vendor/eigen/Eigen/src/Core/MatrixBase.h +21 -3
- data/vendor/eigen/Eigen/src/Core/NestByValue.h +25 -50
- data/vendor/eigen/Eigen/src/Core/NoAlias.h +4 -3
- data/vendor/eigen/Eigen/src/Core/NumTraits.h +107 -20
- data/vendor/eigen/Eigen/src/Core/PartialReduxEvaluator.h +232 -0
- data/vendor/eigen/Eigen/src/Core/PermutationMatrix.h +3 -31
- data/vendor/eigen/Eigen/src/Core/PlainObjectBase.h +152 -59
- data/vendor/eigen/Eigen/src/Core/Product.h +30 -25
- data/vendor/eigen/Eigen/src/Core/ProductEvaluators.h +192 -125
- data/vendor/eigen/Eigen/src/Core/Random.h +37 -1
- data/vendor/eigen/Eigen/src/Core/Redux.h +180 -170
- data/vendor/eigen/Eigen/src/Core/Ref.h +121 -23
- data/vendor/eigen/Eigen/src/Core/Replicate.h +8 -8
- data/vendor/eigen/Eigen/src/Core/Reshaped.h +454 -0
- data/vendor/eigen/Eigen/src/Core/ReturnByValue.h +7 -5
- data/vendor/eigen/Eigen/src/Core/Reverse.h +18 -12
- data/vendor/eigen/Eigen/src/Core/Select.h +8 -6
- data/vendor/eigen/Eigen/src/Core/SelfAdjointView.h +33 -20
- data/vendor/eigen/Eigen/src/Core/Solve.h +14 -14
- data/vendor/eigen/Eigen/src/Core/SolveTriangular.h +16 -16
- data/vendor/eigen/Eigen/src/Core/SolverBase.h +41 -3
- data/vendor/eigen/Eigen/src/Core/StableNorm.h +100 -70
- data/vendor/eigen/Eigen/src/Core/StlIterators.h +463 -0
- data/vendor/eigen/Eigen/src/Core/Stride.h +9 -4
- data/vendor/eigen/Eigen/src/Core/Swap.h +5 -4
- data/vendor/eigen/Eigen/src/Core/Transpose.h +88 -27
- data/vendor/eigen/Eigen/src/Core/Transpositions.h +26 -47
- data/vendor/eigen/Eigen/src/Core/TriangularMatrix.h +93 -75
- data/vendor/eigen/Eigen/src/Core/VectorBlock.h +5 -5
- data/vendor/eigen/Eigen/src/Core/VectorwiseOp.h +159 -70
- data/vendor/eigen/Eigen/src/Core/Visitor.h +137 -29
- data/vendor/eigen/Eigen/src/Core/arch/AVX/Complex.h +50 -129
- data/vendor/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h +126 -337
- data/vendor/eigen/Eigen/src/Core/arch/AVX/PacketMath.h +1092 -155
- data/vendor/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h +65 -1
- data/vendor/eigen/Eigen/src/Core/arch/AVX512/Complex.h +422 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h +207 -236
- data/vendor/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h +1482 -495
- data/vendor/eigen/Eigen/src/Core/arch/AVX512/TypeCasting.h +89 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/Complex.h +152 -165
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h +19 -251
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +2937 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +221 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +629 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h +2042 -392
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/Complex.h +235 -80
- data/vendor/eigen/Eigen/src/Core/arch/Default/BFloat16.h +700 -0
- data/vendor/eigen/Eigen/src/Core/arch/Default/ConjHelper.h +102 -14
- data/vendor/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +1649 -0
- data/vendor/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +110 -0
- data/vendor/eigen/Eigen/src/Core/arch/Default/Half.h +942 -0
- data/vendor/eigen/Eigen/src/Core/arch/Default/Settings.h +1 -1
- data/vendor/eigen/Eigen/src/Core/arch/Default/TypeCasting.h +120 -0
- data/vendor/eigen/Eigen/src/Core/arch/{CUDA → GPU}/MathFunctions.h +16 -4
- data/vendor/eigen/Eigen/src/Core/arch/GPU/PacketMath.h +1685 -0
- data/vendor/eigen/Eigen/src/Core/arch/GPU/TypeCasting.h +80 -0
- data/vendor/eigen/Eigen/src/Core/arch/HIP/hcc/math_constants.h +23 -0
- data/vendor/eigen/Eigen/src/Core/arch/MSA/Complex.h +648 -0
- data/vendor/eigen/Eigen/src/Core/arch/MSA/MathFunctions.h +387 -0
- data/vendor/eigen/Eigen/src/Core/arch/MSA/PacketMath.h +1233 -0
- data/vendor/eigen/Eigen/src/Core/arch/NEON/Complex.h +313 -219
- data/vendor/eigen/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +183 -0
- data/vendor/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h +54 -70
- data/vendor/eigen/Eigen/src/Core/arch/NEON/PacketMath.h +4376 -549
- data/vendor/eigen/Eigen/src/Core/arch/NEON/TypeCasting.h +1419 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/Complex.h +59 -179
- data/vendor/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h +65 -428
- data/vendor/eigen/Eigen/src/Core/arch/SSE/PacketMath.h +893 -283
- data/vendor/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h +65 -0
- data/vendor/eigen/Eigen/src/Core/arch/SVE/MathFunctions.h +44 -0
- data/vendor/eigen/Eigen/src/Core/arch/SVE/PacketMath.h +752 -0
- data/vendor/eigen/Eigen/src/Core/arch/SVE/TypeCasting.h +49 -0
- data/vendor/eigen/Eigen/src/Core/arch/SYCL/InteropHeaders.h +232 -0
- data/vendor/eigen/Eigen/src/Core/arch/SYCL/MathFunctions.h +301 -0
- data/vendor/eigen/Eigen/src/Core/arch/SYCL/PacketMath.h +670 -0
- data/vendor/eigen/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +694 -0
- data/vendor/eigen/Eigen/src/Core/arch/SYCL/TypeCasting.h +85 -0
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/Complex.h +212 -183
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h +101 -5
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h +510 -395
- data/vendor/eigen/Eigen/src/Core/functors/AssignmentFunctors.h +11 -2
- data/vendor/eigen/Eigen/src/Core/functors/BinaryFunctors.h +112 -46
- data/vendor/eigen/Eigen/src/Core/functors/NullaryFunctors.h +31 -30
- data/vendor/eigen/Eigen/src/Core/functors/StlFunctors.h +32 -2
- data/vendor/eigen/Eigen/src/Core/functors/UnaryFunctors.h +355 -16
- data/vendor/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h +1075 -586
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h +49 -24
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +41 -35
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +6 -6
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +4 -2
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixVector.h +382 -483
- data/vendor/eigen/Eigen/src/Core/products/Parallelizer.h +22 -5
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +53 -30
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +16 -8
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h +8 -6
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointProduct.h +4 -4
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h +5 -4
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h +33 -27
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +14 -12
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h +36 -34
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +8 -4
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverVector.h +13 -10
- data/vendor/eigen/Eigen/src/Core/util/BlasUtil.h +304 -119
- data/vendor/eigen/Eigen/src/Core/util/ConfigureVectorization.h +512 -0
- data/vendor/eigen/Eigen/src/Core/util/Constants.h +25 -9
- data/vendor/eigen/Eigen/src/Core/util/DisableStupidWarnings.h +26 -3
- data/vendor/eigen/Eigen/src/Core/util/ForwardDeclarations.h +29 -9
- data/vendor/eigen/Eigen/src/Core/util/IndexedViewHelper.h +186 -0
- data/vendor/eigen/Eigen/src/Core/util/IntegralConstant.h +272 -0
- data/vendor/eigen/Eigen/src/Core/util/MKL_support.h +8 -1
- data/vendor/eigen/Eigen/src/Core/util/Macros.h +709 -246
- data/vendor/eigen/Eigen/src/Core/util/Memory.h +222 -52
- data/vendor/eigen/Eigen/src/Core/util/Meta.h +355 -77
- data/vendor/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h +5 -1
- data/vendor/eigen/Eigen/src/Core/util/ReshapedHelper.h +51 -0
- data/vendor/eigen/Eigen/src/Core/util/StaticAssert.h +8 -5
- data/vendor/eigen/Eigen/src/Core/util/SymbolicIndex.h +293 -0
- data/vendor/eigen/Eigen/src/Core/util/XprHelper.h +65 -30
- data/vendor/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h +1 -1
- data/vendor/eigen/Eigen/src/Eigenvalues/ComplexSchur.h +7 -4
- data/vendor/eigen/Eigen/src/Eigenvalues/EigenSolver.h +2 -2
- data/vendor/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +1 -1
- data/vendor/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h +2 -2
- data/vendor/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +2 -2
- data/vendor/eigen/Eigen/src/Eigenvalues/RealQZ.h +9 -6
- data/vendor/eigen/Eigen/src/Eigenvalues/RealSchur.h +21 -9
- data/vendor/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +77 -43
- data/vendor/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h +20 -15
- data/vendor/eigen/Eigen/src/Geometry/AlignedBox.h +99 -5
- data/vendor/eigen/Eigen/src/Geometry/AngleAxis.h +4 -4
- data/vendor/eigen/Eigen/src/Geometry/EulerAngles.h +3 -3
- data/vendor/eigen/Eigen/src/Geometry/Homogeneous.h +15 -11
- data/vendor/eigen/Eigen/src/Geometry/Hyperplane.h +1 -1
- data/vendor/eigen/Eigen/src/Geometry/OrthoMethods.h +3 -2
- data/vendor/eigen/Eigen/src/Geometry/ParametrizedLine.h +39 -2
- data/vendor/eigen/Eigen/src/Geometry/Quaternion.h +70 -14
- data/vendor/eigen/Eigen/src/Geometry/Rotation2D.h +3 -3
- data/vendor/eigen/Eigen/src/Geometry/Scaling.h +23 -5
- data/vendor/eigen/Eigen/src/Geometry/Transform.h +88 -67
- data/vendor/eigen/Eigen/src/Geometry/Translation.h +6 -12
- data/vendor/eigen/Eigen/src/Geometry/Umeyama.h +1 -1
- data/vendor/eigen/Eigen/src/Geometry/arch/Geometry_SIMD.h +168 -0
- data/vendor/eigen/Eigen/src/Householder/BlockHouseholder.h +9 -2
- data/vendor/eigen/Eigen/src/Householder/Householder.h +8 -4
- data/vendor/eigen/Eigen/src/Householder/HouseholderSequence.h +123 -48
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +15 -15
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +7 -23
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +5 -22
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +41 -47
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +51 -60
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +70 -20
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +2 -20
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +11 -9
- data/vendor/eigen/Eigen/src/Jacobi/Jacobi.h +31 -10
- data/vendor/eigen/Eigen/src/KLUSupport/KLUSupport.h +358 -0
- data/vendor/eigen/Eigen/src/LU/Determinant.h +35 -19
- data/vendor/eigen/Eigen/src/LU/FullPivLU.h +29 -43
- data/vendor/eigen/Eigen/src/LU/InverseImpl.h +25 -8
- data/vendor/eigen/Eigen/src/LU/PartialPivLU.h +71 -58
- data/vendor/eigen/Eigen/src/LU/arch/InverseSize4.h +351 -0
- data/vendor/eigen/Eigen/src/OrderingMethods/Amd.h +7 -17
- data/vendor/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h +297 -277
- data/vendor/eigen/Eigen/src/OrderingMethods/Ordering.h +6 -10
- data/vendor/eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h +1 -1
- data/vendor/eigen/Eigen/src/PardisoSupport/PardisoSupport.h +9 -7
- data/vendor/eigen/Eigen/src/QR/ColPivHouseholderQR.h +41 -20
- data/vendor/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h +100 -27
- data/vendor/eigen/Eigen/src/QR/FullPivHouseholderQR.h +59 -22
- data/vendor/eigen/Eigen/src/QR/HouseholderQR.h +48 -23
- data/vendor/eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +25 -3
- data/vendor/eigen/Eigen/src/SVD/BDCSVD.h +183 -63
- data/vendor/eigen/Eigen/src/SVD/JacobiSVD.h +22 -14
- data/vendor/eigen/Eigen/src/SVD/SVDBase.h +83 -22
- data/vendor/eigen/Eigen/src/SVD/UpperBidiagonalization.h +3 -3
- data/vendor/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h +17 -9
- data/vendor/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +12 -37
- data/vendor/eigen/Eigen/src/SparseCore/AmbiVector.h +3 -2
- data/vendor/eigen/Eigen/src/SparseCore/CompressedStorage.h +16 -0
- data/vendor/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +6 -6
- data/vendor/eigen/Eigen/src/SparseCore/SparseAssign.h +81 -27
- data/vendor/eigen/Eigen/src/SparseCore/SparseBlock.h +25 -57
- data/vendor/eigen/Eigen/src/SparseCore/SparseCompressedBase.h +40 -11
- data/vendor/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +11 -15
- data/vendor/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +4 -2
- data/vendor/eigen/Eigen/src/SparseCore/SparseDenseProduct.h +30 -8
- data/vendor/eigen/Eigen/src/SparseCore/SparseMatrix.h +126 -11
- data/vendor/eigen/Eigen/src/SparseCore/SparseMatrixBase.h +5 -12
- data/vendor/eigen/Eigen/src/SparseCore/SparseProduct.h +13 -1
- data/vendor/eigen/Eigen/src/SparseCore/SparseRef.h +7 -7
- data/vendor/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h +5 -2
- data/vendor/eigen/Eigen/src/SparseCore/SparseUtil.h +8 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseVector.h +1 -1
- data/vendor/eigen/Eigen/src/SparseCore/SparseView.h +1 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU.h +162 -12
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_Memory.h +1 -1
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +76 -2
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h +2 -2
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +1 -1
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h +1 -1
- data/vendor/eigen/Eigen/src/SparseQR/SparseQR.h +19 -6
- data/vendor/eigen/Eigen/src/StlSupport/StdDeque.h +2 -12
- data/vendor/eigen/Eigen/src/StlSupport/StdList.h +2 -2
- data/vendor/eigen/Eigen/src/StlSupport/StdVector.h +2 -2
- data/vendor/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h +6 -8
- data/vendor/eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h +175 -39
- data/vendor/eigen/Eigen/src/misc/lapacke.h +5 -4
- data/vendor/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h +28 -2
- data/vendor/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h +155 -11
- data/vendor/eigen/Eigen/src/plugins/BlockMethods.h +626 -242
- data/vendor/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h +14 -0
- data/vendor/eigen/Eigen/src/plugins/IndexedViewMethods.h +262 -0
- data/vendor/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h +4 -4
- data/vendor/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h +10 -0
- data/vendor/eigen/Eigen/src/plugins/ReshapedMethods.h +149 -0
- data/vendor/eigen/README.md +2 -0
- data/vendor/eigen/bench/btl/README +1 -1
- data/vendor/eigen/bench/tensors/README +6 -7
- data/vendor/eigen/ci/README.md +56 -0
- data/vendor/eigen/demos/mix_eigen_and_c/README +1 -1
- data/vendor/eigen/unsupported/Eigen/CXX11/src/Tensor/README.md +213 -158
- data/vendor/eigen/unsupported/README.txt +1 -1
- data/vendor/tomotopy/README.kr.rst +21 -0
- data/vendor/tomotopy/README.rst +20 -0
- data/vendor/tomotopy/src/Labeling/FoRelevance.cpp +2 -2
- data/vendor/tomotopy/src/Labeling/Phraser.hpp +1 -1
- data/vendor/tomotopy/src/TopicModel/CTModel.hpp +2 -1
- data/vendor/tomotopy/src/TopicModel/DMRModel.hpp +2 -1
- data/vendor/tomotopy/src/TopicModel/DTModel.hpp +1 -1
- data/vendor/tomotopy/src/TopicModel/GDMRModel.hpp +2 -2
- data/vendor/tomotopy/src/TopicModel/HDP.h +1 -0
- data/vendor/tomotopy/src/TopicModel/HDPModel.hpp +53 -2
- data/vendor/tomotopy/src/TopicModel/HLDAModel.hpp +1 -1
- data/vendor/tomotopy/src/TopicModel/HPAModel.hpp +1 -0
- data/vendor/tomotopy/src/TopicModel/LDACVB0Model.hpp +2 -2
- data/vendor/tomotopy/src/TopicModel/LDAModel.hpp +16 -5
- data/vendor/tomotopy/src/TopicModel/LLDAModel.hpp +1 -0
- data/vendor/tomotopy/src/TopicModel/MGLDAModel.hpp +1 -0
- data/vendor/tomotopy/src/TopicModel/PLDAModel.hpp +1 -0
- data/vendor/tomotopy/src/TopicModel/PT.h +3 -1
- data/vendor/tomotopy/src/TopicModel/PTModel.hpp +31 -1
- data/vendor/tomotopy/src/TopicModel/SLDAModel.hpp +2 -2
- data/vendor/tomotopy/src/TopicModel/TopicModel.hpp +7 -5
- data/vendor/tomotopy/src/Utils/EigenAddonOps.hpp +36 -1
- data/vendor/tomotopy/src/Utils/exception.h +6 -0
- data/vendor/tomotopy/src/Utils/sample.hpp +14 -12
- data/vendor/tomotopy/src/Utils/sse_gamma.h +0 -3
- metadata +60 -14
- data/vendor/eigen/Eigen/CMakeLists.txt +0 -19
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/Half.h +0 -674
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/PacketMath.h +0 -333
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/PacketMathHalf.h +0 -1124
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/TypeCasting.h +0 -212
- data/vendor/eigen/Eigen/src/Geometry/arch/Geometry_SSE.h +0 -161
- data/vendor/eigen/Eigen/src/LU/arch/Inverse_SSE.h +0 -338
@@ -24,14 +24,14 @@ struct gebp_kernel;
|
|
24
24
|
template<typename Scalar, typename Index, typename DataMapper, int nr, int StorageOrder, bool Conjugate = false, bool PanelMode=false>
|
25
25
|
struct gemm_pack_rhs;
|
26
26
|
|
27
|
-
template<typename Scalar, typename Index, typename DataMapper, int Pack1, int Pack2, int StorageOrder, bool Conjugate = false, bool PanelMode = false>
|
27
|
+
template<typename Scalar, typename Index, typename DataMapper, int Pack1, int Pack2, typename Packet, int StorageOrder, bool Conjugate = false, bool PanelMode = false>
|
28
28
|
struct gemm_pack_lhs;
|
29
29
|
|
30
30
|
template<
|
31
31
|
typename Index,
|
32
32
|
typename LhsScalar, int LhsStorageOrder, bool ConjugateLhs,
|
33
33
|
typename RhsScalar, int RhsStorageOrder, bool ConjugateRhs,
|
34
|
-
int ResStorageOrder>
|
34
|
+
int ResStorageOrder, int ResInnerStride>
|
35
35
|
struct general_matrix_matrix_product;
|
36
36
|
|
37
37
|
template<typename Index,
|
@@ -39,90 +39,6 @@ template<typename Index,
|
|
39
39
|
typename RhsScalar, typename RhsMapper, bool ConjugateRhs, int Version=Specialized>
|
40
40
|
struct general_matrix_vector_product;
|
41
41
|
|
42
|
-
|
43
|
-
template<bool Conjugate> struct conj_if;
|
44
|
-
|
45
|
-
template<> struct conj_if<true> {
|
46
|
-
template<typename T>
|
47
|
-
inline T operator()(const T& x) const { return numext::conj(x); }
|
48
|
-
template<typename T>
|
49
|
-
inline T pconj(const T& x) const { return internal::pconj(x); }
|
50
|
-
};
|
51
|
-
|
52
|
-
template<> struct conj_if<false> {
|
53
|
-
template<typename T>
|
54
|
-
inline const T& operator()(const T& x) const { return x; }
|
55
|
-
template<typename T>
|
56
|
-
inline const T& pconj(const T& x) const { return x; }
|
57
|
-
};
|
58
|
-
|
59
|
-
// Generic implementation for custom complex types.
|
60
|
-
template<typename LhsScalar, typename RhsScalar, bool ConjLhs, bool ConjRhs>
|
61
|
-
struct conj_helper
|
62
|
-
{
|
63
|
-
typedef typename ScalarBinaryOpTraits<LhsScalar,RhsScalar>::ReturnType Scalar;
|
64
|
-
|
65
|
-
EIGEN_STRONG_INLINE Scalar pmadd(const LhsScalar& x, const RhsScalar& y, const Scalar& c) const
|
66
|
-
{ return padd(c, pmul(x,y)); }
|
67
|
-
|
68
|
-
EIGEN_STRONG_INLINE Scalar pmul(const LhsScalar& x, const RhsScalar& y) const
|
69
|
-
{ return conj_if<ConjLhs>()(x) * conj_if<ConjRhs>()(y); }
|
70
|
-
};
|
71
|
-
|
72
|
-
template<typename Scalar> struct conj_helper<Scalar,Scalar,false,false>
|
73
|
-
{
|
74
|
-
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar pmadd(const Scalar& x, const Scalar& y, const Scalar& c) const { return internal::pmadd(x,y,c); }
|
75
|
-
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar pmul(const Scalar& x, const Scalar& y) const { return internal::pmul(x,y); }
|
76
|
-
};
|
77
|
-
|
78
|
-
template<typename RealScalar> struct conj_helper<std::complex<RealScalar>, std::complex<RealScalar>, false,true>
|
79
|
-
{
|
80
|
-
typedef std::complex<RealScalar> Scalar;
|
81
|
-
EIGEN_STRONG_INLINE Scalar pmadd(const Scalar& x, const Scalar& y, const Scalar& c) const
|
82
|
-
{ return c + pmul(x,y); }
|
83
|
-
|
84
|
-
EIGEN_STRONG_INLINE Scalar pmul(const Scalar& x, const Scalar& y) const
|
85
|
-
{ return Scalar(numext::real(x)*numext::real(y) + numext::imag(x)*numext::imag(y), numext::imag(x)*numext::real(y) - numext::real(x)*numext::imag(y)); }
|
86
|
-
};
|
87
|
-
|
88
|
-
template<typename RealScalar> struct conj_helper<std::complex<RealScalar>, std::complex<RealScalar>, true,false>
|
89
|
-
{
|
90
|
-
typedef std::complex<RealScalar> Scalar;
|
91
|
-
EIGEN_STRONG_INLINE Scalar pmadd(const Scalar& x, const Scalar& y, const Scalar& c) const
|
92
|
-
{ return c + pmul(x,y); }
|
93
|
-
|
94
|
-
EIGEN_STRONG_INLINE Scalar pmul(const Scalar& x, const Scalar& y) const
|
95
|
-
{ return Scalar(numext::real(x)*numext::real(y) + numext::imag(x)*numext::imag(y), numext::real(x)*numext::imag(y) - numext::imag(x)*numext::real(y)); }
|
96
|
-
};
|
97
|
-
|
98
|
-
template<typename RealScalar> struct conj_helper<std::complex<RealScalar>, std::complex<RealScalar>, true,true>
|
99
|
-
{
|
100
|
-
typedef std::complex<RealScalar> Scalar;
|
101
|
-
EIGEN_STRONG_INLINE Scalar pmadd(const Scalar& x, const Scalar& y, const Scalar& c) const
|
102
|
-
{ return c + pmul(x,y); }
|
103
|
-
|
104
|
-
EIGEN_STRONG_INLINE Scalar pmul(const Scalar& x, const Scalar& y) const
|
105
|
-
{ return Scalar(numext::real(x)*numext::real(y) - numext::imag(x)*numext::imag(y), - numext::real(x)*numext::imag(y) - numext::imag(x)*numext::real(y)); }
|
106
|
-
};
|
107
|
-
|
108
|
-
template<typename RealScalar,bool Conj> struct conj_helper<std::complex<RealScalar>, RealScalar, Conj,false>
|
109
|
-
{
|
110
|
-
typedef std::complex<RealScalar> Scalar;
|
111
|
-
EIGEN_STRONG_INLINE Scalar pmadd(const Scalar& x, const RealScalar& y, const Scalar& c) const
|
112
|
-
{ return padd(c, pmul(x,y)); }
|
113
|
-
EIGEN_STRONG_INLINE Scalar pmul(const Scalar& x, const RealScalar& y) const
|
114
|
-
{ return conj_if<Conj>()(x)*y; }
|
115
|
-
};
|
116
|
-
|
117
|
-
template<typename RealScalar,bool Conj> struct conj_helper<RealScalar, std::complex<RealScalar>, false,Conj>
|
118
|
-
{
|
119
|
-
typedef std::complex<RealScalar> Scalar;
|
120
|
-
EIGEN_STRONG_INLINE Scalar pmadd(const RealScalar& x, const Scalar& y, const Scalar& c) const
|
121
|
-
{ return padd(c, pmul(x,y)); }
|
122
|
-
EIGEN_STRONG_INLINE Scalar pmul(const RealScalar& x, const Scalar& y) const
|
123
|
-
{ return x*conj_if<Conj>()(y); }
|
124
|
-
};
|
125
|
-
|
126
42
|
template<typename From,typename To> struct get_factor {
|
127
43
|
EIGEN_DEVICE_FUNC static EIGEN_STRONG_INLINE To run(const From& x) { return To(x); }
|
128
44
|
};
|
@@ -155,13 +71,19 @@ class BlasVectorMapper {
|
|
155
71
|
Scalar* m_data;
|
156
72
|
};
|
157
73
|
|
158
|
-
template<typename Scalar, typename Index, int AlignmentType>
|
159
|
-
class BlasLinearMapper
|
160
|
-
public:
|
161
|
-
typedef typename packet_traits<Scalar>::type Packet;
|
162
|
-
typedef typename packet_traits<Scalar>::half HalfPacket;
|
74
|
+
template<typename Scalar, typename Index, int AlignmentType, int Incr=1>
|
75
|
+
class BlasLinearMapper;
|
163
76
|
|
164
|
-
|
77
|
+
template<typename Scalar, typename Index, int AlignmentType>
|
78
|
+
class BlasLinearMapper<Scalar,Index,AlignmentType>
|
79
|
+
{
|
80
|
+
public:
|
81
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE BlasLinearMapper(Scalar *data, Index incr=1)
|
82
|
+
: m_data(data)
|
83
|
+
{
|
84
|
+
EIGEN_ONLY_USED_FOR_DEBUG(incr);
|
85
|
+
eigen_assert(incr==1);
|
86
|
+
}
|
165
87
|
|
166
88
|
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void prefetch(int i) const {
|
167
89
|
internal::prefetch(&operator()(i));
|
@@ -171,33 +93,86 @@ class BlasLinearMapper {
|
|
171
93
|
return m_data[i];
|
172
94
|
}
|
173
95
|
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE HalfPacket loadHalfPacket(Index i) const {
|
179
|
-
return ploadt<HalfPacket, AlignmentType>(m_data + i);
|
96
|
+
template<typename PacketType>
|
97
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE PacketType loadPacket(Index i) const {
|
98
|
+
return ploadt<PacketType, AlignmentType>(m_data + i);
|
180
99
|
}
|
181
100
|
|
182
|
-
|
183
|
-
|
101
|
+
template<typename PacketType>
|
102
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void storePacket(Index i, const PacketType &p) const {
|
103
|
+
pstoret<Scalar, PacketType, AlignmentType>(m_data + i, p);
|
184
104
|
}
|
185
105
|
|
186
|
-
|
106
|
+
protected:
|
187
107
|
Scalar *m_data;
|
188
108
|
};
|
189
109
|
|
190
110
|
// Lightweight helper class to access matrix coefficients.
|
191
|
-
template<typename Scalar, typename Index, int StorageOrder, int AlignmentType = Unaligned>
|
192
|
-
class blas_data_mapper
|
193
|
-
|
194
|
-
|
195
|
-
|
111
|
+
template<typename Scalar, typename Index, int StorageOrder, int AlignmentType = Unaligned, int Incr = 1>
|
112
|
+
class blas_data_mapper;
|
113
|
+
|
114
|
+
// TMP to help PacketBlock store implementation.
|
115
|
+
// There's currently no known use case for PacketBlock load.
|
116
|
+
// The default implementation assumes ColMajor order.
|
117
|
+
// It always store each packet sequentially one `stride` apart.
|
118
|
+
template<typename Index, typename Scalar, typename Packet, int n, int idx, int StorageOrder>
|
119
|
+
struct PacketBlockManagement
|
120
|
+
{
|
121
|
+
PacketBlockManagement<Index, Scalar, Packet, n, idx - 1, StorageOrder> pbm;
|
122
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void store(Scalar *to, const Index stride, Index i, Index j, const PacketBlock<Packet, n> &block) const {
|
123
|
+
pbm.store(to, stride, i, j, block);
|
124
|
+
pstoreu<Scalar>(to + i + (j + idx)*stride, block.packet[idx]);
|
125
|
+
}
|
126
|
+
};
|
127
|
+
|
128
|
+
// PacketBlockManagement specialization to take care of RowMajor order without ifs.
|
129
|
+
template<typename Index, typename Scalar, typename Packet, int n, int idx>
|
130
|
+
struct PacketBlockManagement<Index, Scalar, Packet, n, idx, RowMajor>
|
131
|
+
{
|
132
|
+
PacketBlockManagement<Index, Scalar, Packet, n, idx - 1, RowMajor> pbm;
|
133
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void store(Scalar *to, const Index stride, Index i, Index j, const PacketBlock<Packet, n> &block) const {
|
134
|
+
pbm.store(to, stride, i, j, block);
|
135
|
+
pstoreu<Scalar>(to + j + (i + idx)*stride, block.packet[idx]);
|
136
|
+
}
|
137
|
+
};
|
138
|
+
|
139
|
+
template<typename Index, typename Scalar, typename Packet, int n, int StorageOrder>
|
140
|
+
struct PacketBlockManagement<Index, Scalar, Packet, n, -1, StorageOrder>
|
141
|
+
{
|
142
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void store(Scalar *to, const Index stride, Index i, Index j, const PacketBlock<Packet, n> &block) const {
|
143
|
+
EIGEN_UNUSED_VARIABLE(to);
|
144
|
+
EIGEN_UNUSED_VARIABLE(stride);
|
145
|
+
EIGEN_UNUSED_VARIABLE(i);
|
146
|
+
EIGEN_UNUSED_VARIABLE(j);
|
147
|
+
EIGEN_UNUSED_VARIABLE(block);
|
148
|
+
}
|
149
|
+
};
|
150
|
+
|
151
|
+
template<typename Index, typename Scalar, typename Packet, int n>
|
152
|
+
struct PacketBlockManagement<Index, Scalar, Packet, n, -1, RowMajor>
|
153
|
+
{
|
154
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void store(Scalar *to, const Index stride, Index i, Index j, const PacketBlock<Packet, n> &block) const {
|
155
|
+
EIGEN_UNUSED_VARIABLE(to);
|
156
|
+
EIGEN_UNUSED_VARIABLE(stride);
|
157
|
+
EIGEN_UNUSED_VARIABLE(i);
|
158
|
+
EIGEN_UNUSED_VARIABLE(j);
|
159
|
+
EIGEN_UNUSED_VARIABLE(block);
|
160
|
+
}
|
161
|
+
};
|
196
162
|
|
163
|
+
template<typename Scalar, typename Index, int StorageOrder, int AlignmentType>
|
164
|
+
class blas_data_mapper<Scalar,Index,StorageOrder,AlignmentType,1>
|
165
|
+
{
|
166
|
+
public:
|
197
167
|
typedef BlasLinearMapper<Scalar, Index, AlignmentType> LinearMapper;
|
198
168
|
typedef BlasVectorMapper<Scalar, Index> VectorMapper;
|
199
169
|
|
200
|
-
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE blas_data_mapper(Scalar* data, Index stride
|
170
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE blas_data_mapper(Scalar* data, Index stride, Index incr=1)
|
171
|
+
: m_data(data), m_stride(stride)
|
172
|
+
{
|
173
|
+
EIGEN_ONLY_USED_FOR_DEBUG(incr);
|
174
|
+
eigen_assert(incr==1);
|
175
|
+
}
|
201
176
|
|
202
177
|
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE blas_data_mapper<Scalar, Index, StorageOrder, AlignmentType>
|
203
178
|
getSubMapper(Index i, Index j) const {
|
@@ -218,12 +193,14 @@ class blas_data_mapper {
|
|
218
193
|
return m_data[StorageOrder==RowMajor ? j + i*m_stride : i + j*m_stride];
|
219
194
|
}
|
220
195
|
|
221
|
-
|
222
|
-
|
196
|
+
template<typename PacketType>
|
197
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE PacketType loadPacket(Index i, Index j) const {
|
198
|
+
return ploadt<PacketType, AlignmentType>(&operator()(i, j));
|
223
199
|
}
|
224
200
|
|
225
|
-
|
226
|
-
|
201
|
+
template <typename PacketT, int AlignmentT>
|
202
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE PacketT load(Index i, Index j) const {
|
203
|
+
return ploadt<PacketT, AlignmentT>(&operator()(i, j));
|
227
204
|
}
|
228
205
|
|
229
206
|
template<typename SubPacket>
|
@@ -246,11 +223,167 @@ class blas_data_mapper {
|
|
246
223
|
return internal::first_default_aligned(m_data, size);
|
247
224
|
}
|
248
225
|
|
249
|
-
|
226
|
+
template<typename SubPacket, int n>
|
227
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void storePacketBlock(Index i, Index j, const PacketBlock<SubPacket, n> &block) const {
|
228
|
+
PacketBlockManagement<Index, Scalar, SubPacket, n, n-1, StorageOrder> pbm;
|
229
|
+
pbm.store(m_data, m_stride, i, j, block);
|
230
|
+
}
|
231
|
+
protected:
|
250
232
|
Scalar* EIGEN_RESTRICT m_data;
|
251
233
|
const Index m_stride;
|
252
234
|
};
|
253
235
|
|
236
|
+
// Implementation of non-natural increment (i.e. inner-stride != 1)
|
237
|
+
// The exposed API is not complete yet compared to the Incr==1 case
|
238
|
+
// because some features makes less sense in this case.
|
239
|
+
template<typename Scalar, typename Index, int AlignmentType, int Incr>
|
240
|
+
class BlasLinearMapper
|
241
|
+
{
|
242
|
+
public:
|
243
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE BlasLinearMapper(Scalar *data,Index incr) : m_data(data), m_incr(incr) {}
|
244
|
+
|
245
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void prefetch(int i) const {
|
246
|
+
internal::prefetch(&operator()(i));
|
247
|
+
}
|
248
|
+
|
249
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE Scalar& operator()(Index i) const {
|
250
|
+
return m_data[i*m_incr.value()];
|
251
|
+
}
|
252
|
+
|
253
|
+
template<typename PacketType>
|
254
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE PacketType loadPacket(Index i) const {
|
255
|
+
return pgather<Scalar,PacketType>(m_data + i*m_incr.value(), m_incr.value());
|
256
|
+
}
|
257
|
+
|
258
|
+
template<typename PacketType>
|
259
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void storePacket(Index i, const PacketType &p) const {
|
260
|
+
pscatter<Scalar, PacketType>(m_data + i*m_incr.value(), p, m_incr.value());
|
261
|
+
}
|
262
|
+
|
263
|
+
protected:
|
264
|
+
Scalar *m_data;
|
265
|
+
const internal::variable_if_dynamic<Index,Incr> m_incr;
|
266
|
+
};
|
267
|
+
|
268
|
+
template<typename Scalar, typename Index, int StorageOrder, int AlignmentType,int Incr>
|
269
|
+
class blas_data_mapper
|
270
|
+
{
|
271
|
+
public:
|
272
|
+
typedef BlasLinearMapper<Scalar, Index, AlignmentType,Incr> LinearMapper;
|
273
|
+
|
274
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE blas_data_mapper(Scalar* data, Index stride, Index incr) : m_data(data), m_stride(stride), m_incr(incr) {}
|
275
|
+
|
276
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE blas_data_mapper
|
277
|
+
getSubMapper(Index i, Index j) const {
|
278
|
+
return blas_data_mapper(&operator()(i, j), m_stride, m_incr.value());
|
279
|
+
}
|
280
|
+
|
281
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE LinearMapper getLinearMapper(Index i, Index j) const {
|
282
|
+
return LinearMapper(&operator()(i, j), m_incr.value());
|
283
|
+
}
|
284
|
+
|
285
|
+
EIGEN_DEVICE_FUNC
|
286
|
+
EIGEN_ALWAYS_INLINE Scalar& operator()(Index i, Index j) const {
|
287
|
+
return m_data[StorageOrder==RowMajor ? j*m_incr.value() + i*m_stride : i*m_incr.value() + j*m_stride];
|
288
|
+
}
|
289
|
+
|
290
|
+
template<typename PacketType>
|
291
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE PacketType loadPacket(Index i, Index j) const {
|
292
|
+
return pgather<Scalar,PacketType>(&operator()(i, j),m_incr.value());
|
293
|
+
}
|
294
|
+
|
295
|
+
template <typename PacketT, int AlignmentT>
|
296
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE PacketT load(Index i, Index j) const {
|
297
|
+
return pgather<Scalar,PacketT>(&operator()(i, j),m_incr.value());
|
298
|
+
}
|
299
|
+
|
300
|
+
template<typename SubPacket>
|
301
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void scatterPacket(Index i, Index j, const SubPacket &p) const {
|
302
|
+
pscatter<Scalar, SubPacket>(&operator()(i, j), p, m_stride);
|
303
|
+
}
|
304
|
+
|
305
|
+
template<typename SubPacket>
|
306
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE SubPacket gatherPacket(Index i, Index j) const {
|
307
|
+
return pgather<Scalar, SubPacket>(&operator()(i, j), m_stride);
|
308
|
+
}
|
309
|
+
|
310
|
+
// storePacketBlock_helper defines a way to access values inside the PacketBlock, this is essentially required by the Complex types.
|
311
|
+
template<typename SubPacket, typename ScalarT, int n, int idx>
|
312
|
+
struct storePacketBlock_helper
|
313
|
+
{
|
314
|
+
storePacketBlock_helper<SubPacket, ScalarT, n, idx-1> spbh;
|
315
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void store(const blas_data_mapper<Scalar, Index, StorageOrder, AlignmentType, Incr>* sup, Index i, Index j, const PacketBlock<SubPacket, n>& block) const {
|
316
|
+
spbh.store(sup, i,j,block);
|
317
|
+
for(int l = 0; l < unpacket_traits<SubPacket>::size; l++)
|
318
|
+
{
|
319
|
+
ScalarT *v = &sup->operator()(i+l, j+idx);
|
320
|
+
*v = block.packet[idx][l];
|
321
|
+
}
|
322
|
+
}
|
323
|
+
};
|
324
|
+
|
325
|
+
template<typename SubPacket, int n, int idx>
|
326
|
+
struct storePacketBlock_helper<SubPacket, std::complex<float>, n, idx>
|
327
|
+
{
|
328
|
+
storePacketBlock_helper<SubPacket, std::complex<float>, n, idx-1> spbh;
|
329
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void store(const blas_data_mapper<Scalar, Index, StorageOrder, AlignmentType, Incr>* sup, Index i, Index j, const PacketBlock<SubPacket, n>& block) const {
|
330
|
+
spbh.store(sup,i,j,block);
|
331
|
+
for(int l = 0; l < unpacket_traits<SubPacket>::size; l++)
|
332
|
+
{
|
333
|
+
std::complex<float> *v = &sup->operator()(i+l, j+idx);
|
334
|
+
v->real(block.packet[idx].v[2*l+0]);
|
335
|
+
v->imag(block.packet[idx].v[2*l+1]);
|
336
|
+
}
|
337
|
+
}
|
338
|
+
};
|
339
|
+
|
340
|
+
template<typename SubPacket, int n, int idx>
|
341
|
+
struct storePacketBlock_helper<SubPacket, std::complex<double>, n, idx>
|
342
|
+
{
|
343
|
+
storePacketBlock_helper<SubPacket, std::complex<double>, n, idx-1> spbh;
|
344
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void store(const blas_data_mapper<Scalar, Index, StorageOrder, AlignmentType, Incr>* sup, Index i, Index j, const PacketBlock<SubPacket, n>& block) const {
|
345
|
+
spbh.store(sup,i,j,block);
|
346
|
+
for(int l = 0; l < unpacket_traits<SubPacket>::size; l++)
|
347
|
+
{
|
348
|
+
std::complex<double> *v = &sup->operator()(i+l, j+idx);
|
349
|
+
v->real(block.packet[idx].v[2*l+0]);
|
350
|
+
v->imag(block.packet[idx].v[2*l+1]);
|
351
|
+
}
|
352
|
+
}
|
353
|
+
};
|
354
|
+
|
355
|
+
template<typename SubPacket, typename ScalarT, int n>
|
356
|
+
struct storePacketBlock_helper<SubPacket, ScalarT, n, -1>
|
357
|
+
{
|
358
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void store(const blas_data_mapper<Scalar, Index, StorageOrder, AlignmentType, Incr>*, Index, Index, const PacketBlock<SubPacket, n>& ) const {
|
359
|
+
}
|
360
|
+
};
|
361
|
+
|
362
|
+
template<typename SubPacket, int n>
|
363
|
+
struct storePacketBlock_helper<SubPacket, std::complex<float>, n, -1>
|
364
|
+
{
|
365
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void store(const blas_data_mapper<Scalar, Index, StorageOrder, AlignmentType, Incr>*, Index, Index, const PacketBlock<SubPacket, n>& ) const {
|
366
|
+
}
|
367
|
+
};
|
368
|
+
|
369
|
+
template<typename SubPacket, int n>
|
370
|
+
struct storePacketBlock_helper<SubPacket, std::complex<double>, n, -1>
|
371
|
+
{
|
372
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void store(const blas_data_mapper<Scalar, Index, StorageOrder, AlignmentType, Incr>*, Index, Index, const PacketBlock<SubPacket, n>& ) const {
|
373
|
+
}
|
374
|
+
};
|
375
|
+
// This function stores a PacketBlock on m_data, this approach is really quite slow compare to Incr=1 and should be avoided when possible.
|
376
|
+
template<typename SubPacket, int n>
|
377
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE void storePacketBlock(Index i, Index j, const PacketBlock<SubPacket, n>&block) const {
|
378
|
+
storePacketBlock_helper<SubPacket, Scalar, n, n-1> spb;
|
379
|
+
spb.store(this, i,j,block);
|
380
|
+
}
|
381
|
+
protected:
|
382
|
+
Scalar* EIGEN_RESTRICT m_data;
|
383
|
+
const Index m_stride;
|
384
|
+
const internal::variable_if_dynamic<Index,Incr> m_incr;
|
385
|
+
};
|
386
|
+
|
254
387
|
// lightweight helper class to access matrix coefficients (const version)
|
255
388
|
template<typename Scalar, typename Index, int StorageOrder>
|
256
389
|
class const_blas_data_mapper : public blas_data_mapper<const Scalar, Index, StorageOrder> {
|
@@ -278,14 +411,15 @@ template<typename XprType> struct blas_traits
|
|
278
411
|
HasUsableDirectAccess = ( (int(XprType::Flags)&DirectAccessBit)
|
279
412
|
&& ( bool(XprType::IsVectorAtCompileTime)
|
280
413
|
|| int(inner_stride_at_compile_time<XprType>::ret) == 1)
|
281
|
-
) ? 1 : 0
|
414
|
+
) ? 1 : 0,
|
415
|
+
HasScalarFactor = false
|
282
416
|
};
|
283
417
|
typedef typename conditional<bool(HasUsableDirectAccess),
|
284
418
|
ExtractType,
|
285
419
|
typename _ExtractType::PlainObject
|
286
420
|
>::type DirectLinearAccessType;
|
287
|
-
static inline ExtractType extract(const XprType& x) { return x; }
|
288
|
-
static inline const Scalar extractScalarFactor(const XprType&) { return Scalar(1); }
|
421
|
+
static inline EIGEN_DEVICE_FUNC ExtractType extract(const XprType& x) { return x; }
|
422
|
+
static inline EIGEN_DEVICE_FUNC const Scalar extractScalarFactor(const XprType&) { return Scalar(1); }
|
289
423
|
};
|
290
424
|
|
291
425
|
// pop conjugate
|
@@ -310,17 +444,23 @@ template<typename Scalar, typename NestedXpr, typename Plain>
|
|
310
444
|
struct blas_traits<CwiseBinaryOp<scalar_product_op<Scalar>, const CwiseNullaryOp<scalar_constant_op<Scalar>,Plain>, NestedXpr> >
|
311
445
|
: blas_traits<NestedXpr>
|
312
446
|
{
|
447
|
+
enum {
|
448
|
+
HasScalarFactor = true
|
449
|
+
};
|
313
450
|
typedef blas_traits<NestedXpr> Base;
|
314
451
|
typedef CwiseBinaryOp<scalar_product_op<Scalar>, const CwiseNullaryOp<scalar_constant_op<Scalar>,Plain>, NestedXpr> XprType;
|
315
452
|
typedef typename Base::ExtractType ExtractType;
|
316
|
-
static inline ExtractType extract(const XprType& x) { return Base::extract(x.rhs()); }
|
317
|
-
static inline Scalar extractScalarFactor(const XprType& x)
|
453
|
+
static inline EIGEN_DEVICE_FUNC ExtractType extract(const XprType& x) { return Base::extract(x.rhs()); }
|
454
|
+
static inline EIGEN_DEVICE_FUNC Scalar extractScalarFactor(const XprType& x)
|
318
455
|
{ return x.lhs().functor().m_other * Base::extractScalarFactor(x.rhs()); }
|
319
456
|
};
|
320
457
|
template<typename Scalar, typename NestedXpr, typename Plain>
|
321
458
|
struct blas_traits<CwiseBinaryOp<scalar_product_op<Scalar>, NestedXpr, const CwiseNullaryOp<scalar_constant_op<Scalar>,Plain> > >
|
322
459
|
: blas_traits<NestedXpr>
|
323
460
|
{
|
461
|
+
enum {
|
462
|
+
HasScalarFactor = true
|
463
|
+
};
|
324
464
|
typedef blas_traits<NestedXpr> Base;
|
325
465
|
typedef CwiseBinaryOp<scalar_product_op<Scalar>, NestedXpr, const CwiseNullaryOp<scalar_constant_op<Scalar>,Plain> > XprType;
|
326
466
|
typedef typename Base::ExtractType ExtractType;
|
@@ -339,6 +479,9 @@ template<typename Scalar, typename NestedXpr>
|
|
339
479
|
struct blas_traits<CwiseUnaryOp<scalar_opposite_op<Scalar>, NestedXpr> >
|
340
480
|
: blas_traits<NestedXpr>
|
341
481
|
{
|
482
|
+
enum {
|
483
|
+
HasScalarFactor = true
|
484
|
+
};
|
342
485
|
typedef blas_traits<NestedXpr> Base;
|
343
486
|
typedef CwiseUnaryOp<scalar_opposite_op<Scalar>, NestedXpr> XprType;
|
344
487
|
typedef typename Base::ExtractType ExtractType;
|
@@ -375,7 +518,7 @@ struct blas_traits<const T>
|
|
375
518
|
|
376
519
|
template<typename T, bool HasUsableDirectAccess=blas_traits<T>::HasUsableDirectAccess>
|
377
520
|
struct extract_data_selector {
|
378
|
-
static const typename T::Scalar* run(const T& m)
|
521
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE static const typename T::Scalar* run(const T& m)
|
379
522
|
{
|
380
523
|
return blas_traits<T>::extract(m).data();
|
381
524
|
}
|
@@ -386,11 +529,53 @@ struct extract_data_selector<T,false> {
|
|
386
529
|
static typename T::Scalar* run(const T&) { return 0; }
|
387
530
|
};
|
388
531
|
|
389
|
-
template<typename T>
|
532
|
+
template<typename T>
|
533
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE const typename T::Scalar* extract_data(const T& m)
|
390
534
|
{
|
391
535
|
return extract_data_selector<T>::run(m);
|
392
536
|
}
|
393
537
|
|
538
|
+
/**
|
539
|
+
* \c combine_scalar_factors extracts and multiplies factors from GEMM and GEMV products.
|
540
|
+
* There is a specialization for booleans
|
541
|
+
*/
|
542
|
+
template<typename ResScalar, typename Lhs, typename Rhs>
|
543
|
+
struct combine_scalar_factors_impl
|
544
|
+
{
|
545
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE static ResScalar run(const Lhs& lhs, const Rhs& rhs)
|
546
|
+
{
|
547
|
+
return blas_traits<Lhs>::extractScalarFactor(lhs) * blas_traits<Rhs>::extractScalarFactor(rhs);
|
548
|
+
}
|
549
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE static ResScalar run(const ResScalar& alpha, const Lhs& lhs, const Rhs& rhs)
|
550
|
+
{
|
551
|
+
return alpha * blas_traits<Lhs>::extractScalarFactor(lhs) * blas_traits<Rhs>::extractScalarFactor(rhs);
|
552
|
+
}
|
553
|
+
};
|
554
|
+
template<typename Lhs, typename Rhs>
|
555
|
+
struct combine_scalar_factors_impl<bool, Lhs, Rhs>
|
556
|
+
{
|
557
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE static bool run(const Lhs& lhs, const Rhs& rhs)
|
558
|
+
{
|
559
|
+
return blas_traits<Lhs>::extractScalarFactor(lhs) && blas_traits<Rhs>::extractScalarFactor(rhs);
|
560
|
+
}
|
561
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE static bool run(const bool& alpha, const Lhs& lhs, const Rhs& rhs)
|
562
|
+
{
|
563
|
+
return alpha && blas_traits<Lhs>::extractScalarFactor(lhs) && blas_traits<Rhs>::extractScalarFactor(rhs);
|
564
|
+
}
|
565
|
+
};
|
566
|
+
|
567
|
+
template<typename ResScalar, typename Lhs, typename Rhs>
|
568
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE ResScalar combine_scalar_factors(const ResScalar& alpha, const Lhs& lhs, const Rhs& rhs)
|
569
|
+
{
|
570
|
+
return combine_scalar_factors_impl<ResScalar,Lhs,Rhs>::run(alpha, lhs, rhs);
|
571
|
+
}
|
572
|
+
template<typename ResScalar, typename Lhs, typename Rhs>
|
573
|
+
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE ResScalar combine_scalar_factors(const Lhs& lhs, const Rhs& rhs)
|
574
|
+
{
|
575
|
+
return combine_scalar_factors_impl<ResScalar,Lhs,Rhs>::run(lhs, rhs);
|
576
|
+
}
|
577
|
+
|
578
|
+
|
394
579
|
} // end namespace internal
|
395
580
|
|
396
581
|
} // end namespace Eigen
|