tomoto 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +123 -0
- data/ext/tomoto/ext.cpp +245 -0
- data/ext/tomoto/extconf.rb +28 -0
- data/lib/tomoto.rb +12 -0
- data/lib/tomoto/ct.rb +11 -0
- data/lib/tomoto/hdp.rb +11 -0
- data/lib/tomoto/lda.rb +67 -0
- data/lib/tomoto/version.rb +3 -0
- data/vendor/EigenRand/EigenRand/Core.h +1139 -0
- data/vendor/EigenRand/EigenRand/Dists/Basic.h +111 -0
- data/vendor/EigenRand/EigenRand/Dists/Discrete.h +877 -0
- data/vendor/EigenRand/EigenRand/Dists/GammaPoisson.h +108 -0
- data/vendor/EigenRand/EigenRand/Dists/NormalExp.h +626 -0
- data/vendor/EigenRand/EigenRand/EigenRand +19 -0
- data/vendor/EigenRand/EigenRand/Macro.h +24 -0
- data/vendor/EigenRand/EigenRand/MorePacketMath.h +978 -0
- data/vendor/EigenRand/EigenRand/PacketFilter.h +286 -0
- data/vendor/EigenRand/EigenRand/PacketRandomEngine.h +624 -0
- data/vendor/EigenRand/EigenRand/RandUtils.h +413 -0
- data/vendor/EigenRand/EigenRand/doc.h +220 -0
- data/vendor/EigenRand/LICENSE +21 -0
- data/vendor/EigenRand/README.md +288 -0
- data/vendor/eigen/COPYING.BSD +26 -0
- data/vendor/eigen/COPYING.GPL +674 -0
- data/vendor/eigen/COPYING.LGPL +502 -0
- data/vendor/eigen/COPYING.MINPACK +52 -0
- data/vendor/eigen/COPYING.MPL2 +373 -0
- data/vendor/eigen/COPYING.README +18 -0
- data/vendor/eigen/Eigen/CMakeLists.txt +19 -0
- data/vendor/eigen/Eigen/Cholesky +46 -0
- data/vendor/eigen/Eigen/CholmodSupport +48 -0
- data/vendor/eigen/Eigen/Core +537 -0
- data/vendor/eigen/Eigen/Dense +7 -0
- data/vendor/eigen/Eigen/Eigen +2 -0
- data/vendor/eigen/Eigen/Eigenvalues +61 -0
- data/vendor/eigen/Eigen/Geometry +62 -0
- data/vendor/eigen/Eigen/Householder +30 -0
- data/vendor/eigen/Eigen/IterativeLinearSolvers +48 -0
- data/vendor/eigen/Eigen/Jacobi +33 -0
- data/vendor/eigen/Eigen/LU +50 -0
- data/vendor/eigen/Eigen/MetisSupport +35 -0
- data/vendor/eigen/Eigen/OrderingMethods +73 -0
- data/vendor/eigen/Eigen/PaStiXSupport +48 -0
- data/vendor/eigen/Eigen/PardisoSupport +35 -0
- data/vendor/eigen/Eigen/QR +51 -0
- data/vendor/eigen/Eigen/QtAlignedMalloc +40 -0
- data/vendor/eigen/Eigen/SPQRSupport +34 -0
- data/vendor/eigen/Eigen/SVD +51 -0
- data/vendor/eigen/Eigen/Sparse +36 -0
- data/vendor/eigen/Eigen/SparseCholesky +45 -0
- data/vendor/eigen/Eigen/SparseCore +69 -0
- data/vendor/eigen/Eigen/SparseLU +46 -0
- data/vendor/eigen/Eigen/SparseQR +37 -0
- data/vendor/eigen/Eigen/StdDeque +27 -0
- data/vendor/eigen/Eigen/StdList +26 -0
- data/vendor/eigen/Eigen/StdVector +27 -0
- data/vendor/eigen/Eigen/SuperLUSupport +64 -0
- data/vendor/eigen/Eigen/UmfPackSupport +40 -0
- data/vendor/eigen/Eigen/src/Cholesky/LDLT.h +673 -0
- data/vendor/eigen/Eigen/src/Cholesky/LLT.h +542 -0
- data/vendor/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h +99 -0
- data/vendor/eigen/Eigen/src/CholmodSupport/CholmodSupport.h +639 -0
- data/vendor/eigen/Eigen/src/Core/Array.h +329 -0
- data/vendor/eigen/Eigen/src/Core/ArrayBase.h +226 -0
- data/vendor/eigen/Eigen/src/Core/ArrayWrapper.h +209 -0
- data/vendor/eigen/Eigen/src/Core/Assign.h +90 -0
- data/vendor/eigen/Eigen/src/Core/AssignEvaluator.h +935 -0
- data/vendor/eigen/Eigen/src/Core/Assign_MKL.h +178 -0
- data/vendor/eigen/Eigen/src/Core/BandMatrix.h +353 -0
- data/vendor/eigen/Eigen/src/Core/Block.h +452 -0
- data/vendor/eigen/Eigen/src/Core/BooleanRedux.h +164 -0
- data/vendor/eigen/Eigen/src/Core/CommaInitializer.h +160 -0
- data/vendor/eigen/Eigen/src/Core/ConditionEstimator.h +175 -0
- data/vendor/eigen/Eigen/src/Core/CoreEvaluators.h +1688 -0
- data/vendor/eigen/Eigen/src/Core/CoreIterators.h +127 -0
- data/vendor/eigen/Eigen/src/Core/CwiseBinaryOp.h +184 -0
- data/vendor/eigen/Eigen/src/Core/CwiseNullaryOp.h +866 -0
- data/vendor/eigen/Eigen/src/Core/CwiseTernaryOp.h +197 -0
- data/vendor/eigen/Eigen/src/Core/CwiseUnaryOp.h +103 -0
- data/vendor/eigen/Eigen/src/Core/CwiseUnaryView.h +128 -0
- data/vendor/eigen/Eigen/src/Core/DenseBase.h +611 -0
- data/vendor/eigen/Eigen/src/Core/DenseCoeffsBase.h +681 -0
- data/vendor/eigen/Eigen/src/Core/DenseStorage.h +570 -0
- data/vendor/eigen/Eigen/src/Core/Diagonal.h +260 -0
- data/vendor/eigen/Eigen/src/Core/DiagonalMatrix.h +343 -0
- data/vendor/eigen/Eigen/src/Core/DiagonalProduct.h +28 -0
- data/vendor/eigen/Eigen/src/Core/Dot.h +318 -0
- data/vendor/eigen/Eigen/src/Core/EigenBase.h +159 -0
- data/vendor/eigen/Eigen/src/Core/ForceAlignedAccess.h +146 -0
- data/vendor/eigen/Eigen/src/Core/Fuzzy.h +155 -0
- data/vendor/eigen/Eigen/src/Core/GeneralProduct.h +455 -0
- data/vendor/eigen/Eigen/src/Core/GenericPacketMath.h +593 -0
- data/vendor/eigen/Eigen/src/Core/GlobalFunctions.h +187 -0
- data/vendor/eigen/Eigen/src/Core/IO.h +225 -0
- data/vendor/eigen/Eigen/src/Core/Inverse.h +118 -0
- data/vendor/eigen/Eigen/src/Core/Map.h +171 -0
- data/vendor/eigen/Eigen/src/Core/MapBase.h +303 -0
- data/vendor/eigen/Eigen/src/Core/MathFunctions.h +1415 -0
- data/vendor/eigen/Eigen/src/Core/MathFunctionsImpl.h +101 -0
- data/vendor/eigen/Eigen/src/Core/Matrix.h +459 -0
- data/vendor/eigen/Eigen/src/Core/MatrixBase.h +529 -0
- data/vendor/eigen/Eigen/src/Core/NestByValue.h +110 -0
- data/vendor/eigen/Eigen/src/Core/NoAlias.h +108 -0
- data/vendor/eigen/Eigen/src/Core/NumTraits.h +248 -0
- data/vendor/eigen/Eigen/src/Core/PermutationMatrix.h +633 -0
- data/vendor/eigen/Eigen/src/Core/PlainObjectBase.h +1035 -0
- data/vendor/eigen/Eigen/src/Core/Product.h +186 -0
- data/vendor/eigen/Eigen/src/Core/ProductEvaluators.h +1112 -0
- data/vendor/eigen/Eigen/src/Core/Random.h +182 -0
- data/vendor/eigen/Eigen/src/Core/Redux.h +505 -0
- data/vendor/eigen/Eigen/src/Core/Ref.h +283 -0
- data/vendor/eigen/Eigen/src/Core/Replicate.h +142 -0
- data/vendor/eigen/Eigen/src/Core/ReturnByValue.h +117 -0
- data/vendor/eigen/Eigen/src/Core/Reverse.h +211 -0
- data/vendor/eigen/Eigen/src/Core/Select.h +162 -0
- data/vendor/eigen/Eigen/src/Core/SelfAdjointView.h +352 -0
- data/vendor/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h +47 -0
- data/vendor/eigen/Eigen/src/Core/Solve.h +188 -0
- data/vendor/eigen/Eigen/src/Core/SolveTriangular.h +235 -0
- data/vendor/eigen/Eigen/src/Core/SolverBase.h +130 -0
- data/vendor/eigen/Eigen/src/Core/StableNorm.h +221 -0
- data/vendor/eigen/Eigen/src/Core/Stride.h +111 -0
- data/vendor/eigen/Eigen/src/Core/Swap.h +67 -0
- data/vendor/eigen/Eigen/src/Core/Transpose.h +403 -0
- data/vendor/eigen/Eigen/src/Core/Transpositions.h +407 -0
- data/vendor/eigen/Eigen/src/Core/TriangularMatrix.h +983 -0
- data/vendor/eigen/Eigen/src/Core/VectorBlock.h +96 -0
- data/vendor/eigen/Eigen/src/Core/VectorwiseOp.h +695 -0
- data/vendor/eigen/Eigen/src/Core/Visitor.h +273 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/Complex.h +451 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h +439 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/PacketMath.h +637 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h +51 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h +391 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h +1316 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/Complex.h +430 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h +322 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h +1061 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/Complex.h +103 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/Half.h +674 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/MathFunctions.h +91 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/PacketMath.h +333 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/PacketMathHalf.h +1124 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/TypeCasting.h +212 -0
- data/vendor/eigen/Eigen/src/Core/arch/Default/ConjHelper.h +29 -0
- data/vendor/eigen/Eigen/src/Core/arch/Default/Settings.h +49 -0
- data/vendor/eigen/Eigen/src/Core/arch/NEON/Complex.h +490 -0
- data/vendor/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h +91 -0
- data/vendor/eigen/Eigen/src/Core/arch/NEON/PacketMath.h +760 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/Complex.h +471 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h +562 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/PacketMath.h +895 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h +77 -0
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/Complex.h +397 -0
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h +137 -0
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h +945 -0
- data/vendor/eigen/Eigen/src/Core/functors/AssignmentFunctors.h +168 -0
- data/vendor/eigen/Eigen/src/Core/functors/BinaryFunctors.h +475 -0
- data/vendor/eigen/Eigen/src/Core/functors/NullaryFunctors.h +188 -0
- data/vendor/eigen/Eigen/src/Core/functors/StlFunctors.h +136 -0
- data/vendor/eigen/Eigen/src/Core/functors/TernaryFunctors.h +25 -0
- data/vendor/eigen/Eigen/src/Core/functors/UnaryFunctors.h +792 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h +2156 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h +492 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +311 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +145 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +122 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixVector.h +619 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +136 -0
- data/vendor/eigen/Eigen/src/Core/products/Parallelizer.h +163 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +521 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +287 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h +260 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +118 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointProduct.h +133 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h +93 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h +466 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +315 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixVector.h +350 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +255 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h +335 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +163 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverVector.h +145 -0
- data/vendor/eigen/Eigen/src/Core/util/BlasUtil.h +398 -0
- data/vendor/eigen/Eigen/src/Core/util/Constants.h +547 -0
- data/vendor/eigen/Eigen/src/Core/util/DisableStupidWarnings.h +83 -0
- data/vendor/eigen/Eigen/src/Core/util/ForwardDeclarations.h +302 -0
- data/vendor/eigen/Eigen/src/Core/util/MKL_support.h +130 -0
- data/vendor/eigen/Eigen/src/Core/util/Macros.h +1001 -0
- data/vendor/eigen/Eigen/src/Core/util/Memory.h +993 -0
- data/vendor/eigen/Eigen/src/Core/util/Meta.h +534 -0
- data/vendor/eigen/Eigen/src/Core/util/NonMPL2.h +3 -0
- data/vendor/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h +27 -0
- data/vendor/eigen/Eigen/src/Core/util/StaticAssert.h +218 -0
- data/vendor/eigen/Eigen/src/Core/util/XprHelper.h +821 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h +346 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/ComplexSchur.h +459 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +91 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/EigenSolver.h +622 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +418 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +226 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h +374 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +158 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/RealQZ.h +654 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/RealSchur.h +546 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +77 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +870 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +87 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h +556 -0
- data/vendor/eigen/Eigen/src/Geometry/AlignedBox.h +392 -0
- data/vendor/eigen/Eigen/src/Geometry/AngleAxis.h +247 -0
- data/vendor/eigen/Eigen/src/Geometry/EulerAngles.h +114 -0
- data/vendor/eigen/Eigen/src/Geometry/Homogeneous.h +497 -0
- data/vendor/eigen/Eigen/src/Geometry/Hyperplane.h +282 -0
- data/vendor/eigen/Eigen/src/Geometry/OrthoMethods.h +234 -0
- data/vendor/eigen/Eigen/src/Geometry/ParametrizedLine.h +195 -0
- data/vendor/eigen/Eigen/src/Geometry/Quaternion.h +814 -0
- data/vendor/eigen/Eigen/src/Geometry/Rotation2D.h +199 -0
- data/vendor/eigen/Eigen/src/Geometry/RotationBase.h +206 -0
- data/vendor/eigen/Eigen/src/Geometry/Scaling.h +170 -0
- data/vendor/eigen/Eigen/src/Geometry/Transform.h +1542 -0
- data/vendor/eigen/Eigen/src/Geometry/Translation.h +208 -0
- data/vendor/eigen/Eigen/src/Geometry/Umeyama.h +166 -0
- data/vendor/eigen/Eigen/src/Geometry/arch/Geometry_SSE.h +161 -0
- data/vendor/eigen/Eigen/src/Householder/BlockHouseholder.h +103 -0
- data/vendor/eigen/Eigen/src/Householder/Householder.h +172 -0
- data/vendor/eigen/Eigen/src/Householder/HouseholderSequence.h +470 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +226 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +228 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +246 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +400 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +462 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +394 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +216 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +115 -0
- data/vendor/eigen/Eigen/src/Jacobi/Jacobi.h +462 -0
- data/vendor/eigen/Eigen/src/LU/Determinant.h +101 -0
- data/vendor/eigen/Eigen/src/LU/FullPivLU.h +891 -0
- data/vendor/eigen/Eigen/src/LU/InverseImpl.h +415 -0
- data/vendor/eigen/Eigen/src/LU/PartialPivLU.h +611 -0
- data/vendor/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h +83 -0
- data/vendor/eigen/Eigen/src/LU/arch/Inverse_SSE.h +338 -0
- data/vendor/eigen/Eigen/src/MetisSupport/MetisSupport.h +137 -0
- data/vendor/eigen/Eigen/src/OrderingMethods/Amd.h +445 -0
- data/vendor/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h +1843 -0
- data/vendor/eigen/Eigen/src/OrderingMethods/Ordering.h +157 -0
- data/vendor/eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h +678 -0
- data/vendor/eigen/Eigen/src/PardisoSupport/PardisoSupport.h +543 -0
- data/vendor/eigen/Eigen/src/QR/ColPivHouseholderQR.h +653 -0
- data/vendor/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +97 -0
- data/vendor/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h +562 -0
- data/vendor/eigen/Eigen/src/QR/FullPivHouseholderQR.h +676 -0
- data/vendor/eigen/Eigen/src/QR/HouseholderQR.h +409 -0
- data/vendor/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h +68 -0
- data/vendor/eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +313 -0
- data/vendor/eigen/Eigen/src/SVD/BDCSVD.h +1246 -0
- data/vendor/eigen/Eigen/src/SVD/JacobiSVD.h +804 -0
- data/vendor/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h +91 -0
- data/vendor/eigen/Eigen/src/SVD/SVDBase.h +315 -0
- data/vendor/eigen/Eigen/src/SVD/UpperBidiagonalization.h +414 -0
- data/vendor/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h +689 -0
- data/vendor/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +199 -0
- data/vendor/eigen/Eigen/src/SparseCore/AmbiVector.h +377 -0
- data/vendor/eigen/Eigen/src/SparseCore/CompressedStorage.h +258 -0
- data/vendor/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +352 -0
- data/vendor/eigen/Eigen/src/SparseCore/MappedSparseMatrix.h +67 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseAssign.h +216 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseBlock.h +603 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseColEtree.h +206 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseCompressedBase.h +341 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +726 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +148 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseDenseProduct.h +320 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h +138 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseDot.h +98 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseFuzzy.h +29 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseMap.h +305 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseMatrix.h +1403 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseMatrixBase.h +405 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparsePermutation.h +178 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseProduct.h +169 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseRedux.h +49 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseRef.h +397 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h +656 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseSolverBase.h +124 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +198 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseTranspose.h +92 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseTriangularView.h +189 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseUtil.h +178 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseVector.h +478 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseView.h +253 -0
- data/vendor/eigen/Eigen/src/SparseCore/TriangularSolver.h +315 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU.h +773 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLUImpl.h +66 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_Memory.h +226 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_Structs.h +110 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +301 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_Utils.h +80 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h +181 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h +179 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +107 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +280 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +126 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +130 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h +223 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h +258 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h +137 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h +136 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h +83 -0
- data/vendor/eigen/Eigen/src/SparseQR/SparseQR.h +745 -0
- data/vendor/eigen/Eigen/src/StlSupport/StdDeque.h +126 -0
- data/vendor/eigen/Eigen/src/StlSupport/StdList.h +106 -0
- data/vendor/eigen/Eigen/src/StlSupport/StdVector.h +131 -0
- data/vendor/eigen/Eigen/src/StlSupport/details.h +84 -0
- data/vendor/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h +1027 -0
- data/vendor/eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h +506 -0
- data/vendor/eigen/Eigen/src/misc/Image.h +82 -0
- data/vendor/eigen/Eigen/src/misc/Kernel.h +79 -0
- data/vendor/eigen/Eigen/src/misc/RealSvd2x2.h +55 -0
- data/vendor/eigen/Eigen/src/misc/blas.h +440 -0
- data/vendor/eigen/Eigen/src/misc/lapack.h +152 -0
- data/vendor/eigen/Eigen/src/misc/lapacke.h +16291 -0
- data/vendor/eigen/Eigen/src/misc/lapacke_mangling.h +17 -0
- data/vendor/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h +332 -0
- data/vendor/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h +552 -0
- data/vendor/eigen/Eigen/src/plugins/BlockMethods.h +1058 -0
- data/vendor/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h +115 -0
- data/vendor/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h +163 -0
- data/vendor/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h +152 -0
- data/vendor/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h +85 -0
- data/vendor/eigen/README.md +3 -0
- data/vendor/eigen/bench/README.txt +55 -0
- data/vendor/eigen/bench/btl/COPYING +340 -0
- data/vendor/eigen/bench/btl/README +154 -0
- data/vendor/eigen/bench/tensors/README +21 -0
- data/vendor/eigen/blas/README.txt +6 -0
- data/vendor/eigen/demos/mandelbrot/README +10 -0
- data/vendor/eigen/demos/mix_eigen_and_c/README +9 -0
- data/vendor/eigen/demos/opengl/README +13 -0
- data/vendor/eigen/unsupported/Eigen/CXX11/src/Tensor/README.md +1760 -0
- data/vendor/eigen/unsupported/README.txt +50 -0
- data/vendor/tomotopy/LICENSE +21 -0
- data/vendor/tomotopy/README.kr.rst +375 -0
- data/vendor/tomotopy/README.rst +382 -0
- data/vendor/tomotopy/src/Labeling/FoRelevance.cpp +362 -0
- data/vendor/tomotopy/src/Labeling/FoRelevance.h +88 -0
- data/vendor/tomotopy/src/Labeling/Labeler.h +50 -0
- data/vendor/tomotopy/src/TopicModel/CT.h +37 -0
- data/vendor/tomotopy/src/TopicModel/CTModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/CTModel.hpp +293 -0
- data/vendor/tomotopy/src/TopicModel/DMR.h +51 -0
- data/vendor/tomotopy/src/TopicModel/DMRModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/DMRModel.hpp +374 -0
- data/vendor/tomotopy/src/TopicModel/DT.h +65 -0
- data/vendor/tomotopy/src/TopicModel/DTM.h +22 -0
- data/vendor/tomotopy/src/TopicModel/DTModel.cpp +15 -0
- data/vendor/tomotopy/src/TopicModel/DTModel.hpp +572 -0
- data/vendor/tomotopy/src/TopicModel/GDMR.h +37 -0
- data/vendor/tomotopy/src/TopicModel/GDMRModel.cpp +14 -0
- data/vendor/tomotopy/src/TopicModel/GDMRModel.hpp +485 -0
- data/vendor/tomotopy/src/TopicModel/HDP.h +74 -0
- data/vendor/tomotopy/src/TopicModel/HDPModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/HDPModel.hpp +592 -0
- data/vendor/tomotopy/src/TopicModel/HLDA.h +40 -0
- data/vendor/tomotopy/src/TopicModel/HLDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/HLDAModel.hpp +681 -0
- data/vendor/tomotopy/src/TopicModel/HPA.h +27 -0
- data/vendor/tomotopy/src/TopicModel/HPAModel.cpp +21 -0
- data/vendor/tomotopy/src/TopicModel/HPAModel.hpp +588 -0
- data/vendor/tomotopy/src/TopicModel/LDA.h +144 -0
- data/vendor/tomotopy/src/TopicModel/LDACVB0Model.hpp +442 -0
- data/vendor/tomotopy/src/TopicModel/LDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/LDAModel.hpp +1058 -0
- data/vendor/tomotopy/src/TopicModel/LLDA.h +45 -0
- data/vendor/tomotopy/src/TopicModel/LLDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/LLDAModel.hpp +203 -0
- data/vendor/tomotopy/src/TopicModel/MGLDA.h +63 -0
- data/vendor/tomotopy/src/TopicModel/MGLDAModel.cpp +17 -0
- data/vendor/tomotopy/src/TopicModel/MGLDAModel.hpp +558 -0
- data/vendor/tomotopy/src/TopicModel/PA.h +43 -0
- data/vendor/tomotopy/src/TopicModel/PAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/PAModel.hpp +467 -0
- data/vendor/tomotopy/src/TopicModel/PLDA.h +17 -0
- data/vendor/tomotopy/src/TopicModel/PLDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/PLDAModel.hpp +214 -0
- data/vendor/tomotopy/src/TopicModel/SLDA.h +54 -0
- data/vendor/tomotopy/src/TopicModel/SLDAModel.cpp +17 -0
- data/vendor/tomotopy/src/TopicModel/SLDAModel.hpp +456 -0
- data/vendor/tomotopy/src/TopicModel/TopicModel.hpp +692 -0
- data/vendor/tomotopy/src/Utils/AliasMethod.hpp +169 -0
- data/vendor/tomotopy/src/Utils/Dictionary.h +80 -0
- data/vendor/tomotopy/src/Utils/EigenAddonOps.hpp +181 -0
- data/vendor/tomotopy/src/Utils/LBFGS.h +202 -0
- data/vendor/tomotopy/src/Utils/LBFGS/LineSearchBacktracking.h +120 -0
- data/vendor/tomotopy/src/Utils/LBFGS/LineSearchBracketing.h +122 -0
- data/vendor/tomotopy/src/Utils/LBFGS/Param.h +213 -0
- data/vendor/tomotopy/src/Utils/LUT.hpp +82 -0
- data/vendor/tomotopy/src/Utils/MultiNormalDistribution.hpp +69 -0
- data/vendor/tomotopy/src/Utils/PolyaGamma.hpp +200 -0
- data/vendor/tomotopy/src/Utils/PolyaGammaHybrid.hpp +672 -0
- data/vendor/tomotopy/src/Utils/ThreadPool.hpp +150 -0
- data/vendor/tomotopy/src/Utils/Trie.hpp +220 -0
- data/vendor/tomotopy/src/Utils/TruncMultiNormal.hpp +94 -0
- data/vendor/tomotopy/src/Utils/Utils.hpp +337 -0
- data/vendor/tomotopy/src/Utils/avx_gamma.h +46 -0
- data/vendor/tomotopy/src/Utils/avx_mathfun.h +736 -0
- data/vendor/tomotopy/src/Utils/exception.h +28 -0
- data/vendor/tomotopy/src/Utils/math.h +281 -0
- data/vendor/tomotopy/src/Utils/rtnorm.hpp +2690 -0
- data/vendor/tomotopy/src/Utils/sample.hpp +192 -0
- data/vendor/tomotopy/src/Utils/serializer.hpp +695 -0
- data/vendor/tomotopy/src/Utils/slp.hpp +131 -0
- data/vendor/tomotopy/src/Utils/sse_gamma.h +48 -0
- data/vendor/tomotopy/src/Utils/sse_mathfun.h +710 -0
- data/vendor/tomotopy/src/Utils/text.hpp +49 -0
- data/vendor/tomotopy/src/Utils/tvector.hpp +543 -0
- metadata +531 -0
@@ -0,0 +1,534 @@
|
|
1
|
+
// This file is part of Eigen, a lightweight C++ template library
|
2
|
+
// for linear algebra.
|
3
|
+
//
|
4
|
+
// Copyright (C) 2008-2015 Gael Guennebaud <gael.guennebaud@inria.fr>
|
5
|
+
// Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
|
6
|
+
//
|
7
|
+
// This Source Code Form is subject to the terms of the Mozilla
|
8
|
+
// Public License v. 2.0. If a copy of the MPL was not distributed
|
9
|
+
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
10
|
+
|
11
|
+
#ifndef EIGEN_META_H
|
12
|
+
#define EIGEN_META_H
|
13
|
+
|
14
|
+
#if defined(__CUDA_ARCH__)
|
15
|
+
#include <cfloat>
|
16
|
+
#include <math_constants.h>
|
17
|
+
#endif
|
18
|
+
|
19
|
+
#if EIGEN_COMP_ICC>=1600 && __cplusplus >= 201103L
|
20
|
+
#include <cstdint>
|
21
|
+
#endif
|
22
|
+
|
23
|
+
namespace Eigen {
|
24
|
+
|
25
|
+
typedef EIGEN_DEFAULT_DENSE_INDEX_TYPE DenseIndex;
|
26
|
+
|
27
|
+
/**
|
28
|
+
* \brief The Index type as used for the API.
|
29
|
+
* \details To change this, \c \#define the preprocessor symbol \c EIGEN_DEFAULT_DENSE_INDEX_TYPE.
|
30
|
+
* \sa \blank \ref TopicPreprocessorDirectives, StorageIndex.
|
31
|
+
*/
|
32
|
+
|
33
|
+
typedef EIGEN_DEFAULT_DENSE_INDEX_TYPE Index;
|
34
|
+
|
35
|
+
namespace internal {
|
36
|
+
|
37
|
+
/** \internal
|
38
|
+
* \file Meta.h
|
39
|
+
* This file contains generic metaprogramming classes which are not specifically related to Eigen.
|
40
|
+
* \note In case you wonder, yes we're aware that Boost already provides all these features,
|
41
|
+
* we however don't want to add a dependency to Boost.
|
42
|
+
*/
|
43
|
+
|
44
|
+
// Only recent versions of ICC complain about using ptrdiff_t to hold pointers,
|
45
|
+
// and older versions do not provide *intptr_t types.
|
46
|
+
#if EIGEN_COMP_ICC>=1600 && __cplusplus >= 201103L
|
47
|
+
typedef std::intptr_t IntPtr;
|
48
|
+
typedef std::uintptr_t UIntPtr;
|
49
|
+
#else
|
50
|
+
typedef std::ptrdiff_t IntPtr;
|
51
|
+
typedef std::size_t UIntPtr;
|
52
|
+
#endif
|
53
|
+
|
54
|
+
struct true_type { enum { value = 1 }; };
|
55
|
+
struct false_type { enum { value = 0 }; };
|
56
|
+
|
57
|
+
template<bool Condition, typename Then, typename Else>
|
58
|
+
struct conditional { typedef Then type; };
|
59
|
+
|
60
|
+
template<typename Then, typename Else>
|
61
|
+
struct conditional <false, Then, Else> { typedef Else type; };
|
62
|
+
|
63
|
+
template<typename T, typename U> struct is_same { enum { value = 0 }; };
|
64
|
+
template<typename T> struct is_same<T,T> { enum { value = 1 }; };
|
65
|
+
|
66
|
+
template<typename T> struct remove_reference { typedef T type; };
|
67
|
+
template<typename T> struct remove_reference<T&> { typedef T type; };
|
68
|
+
|
69
|
+
template<typename T> struct remove_pointer { typedef T type; };
|
70
|
+
template<typename T> struct remove_pointer<T*> { typedef T type; };
|
71
|
+
template<typename T> struct remove_pointer<T*const> { typedef T type; };
|
72
|
+
|
73
|
+
template <class T> struct remove_const { typedef T type; };
|
74
|
+
template <class T> struct remove_const<const T> { typedef T type; };
|
75
|
+
template <class T> struct remove_const<const T[]> { typedef T type[]; };
|
76
|
+
template <class T, unsigned int Size> struct remove_const<const T[Size]> { typedef T type[Size]; };
|
77
|
+
|
78
|
+
template<typename T> struct remove_all { typedef T type; };
|
79
|
+
template<typename T> struct remove_all<const T> { typedef typename remove_all<T>::type type; };
|
80
|
+
template<typename T> struct remove_all<T const&> { typedef typename remove_all<T>::type type; };
|
81
|
+
template<typename T> struct remove_all<T&> { typedef typename remove_all<T>::type type; };
|
82
|
+
template<typename T> struct remove_all<T const*> { typedef typename remove_all<T>::type type; };
|
83
|
+
template<typename T> struct remove_all<T*> { typedef typename remove_all<T>::type type; };
|
84
|
+
|
85
|
+
template<typename T> struct is_arithmetic { enum { value = false }; };
|
86
|
+
template<> struct is_arithmetic<float> { enum { value = true }; };
|
87
|
+
template<> struct is_arithmetic<double> { enum { value = true }; };
|
88
|
+
template<> struct is_arithmetic<long double> { enum { value = true }; };
|
89
|
+
template<> struct is_arithmetic<bool> { enum { value = true }; };
|
90
|
+
template<> struct is_arithmetic<char> { enum { value = true }; };
|
91
|
+
template<> struct is_arithmetic<signed char> { enum { value = true }; };
|
92
|
+
template<> struct is_arithmetic<unsigned char> { enum { value = true }; };
|
93
|
+
template<> struct is_arithmetic<signed short> { enum { value = true }; };
|
94
|
+
template<> struct is_arithmetic<unsigned short>{ enum { value = true }; };
|
95
|
+
template<> struct is_arithmetic<signed int> { enum { value = true }; };
|
96
|
+
template<> struct is_arithmetic<unsigned int> { enum { value = true }; };
|
97
|
+
template<> struct is_arithmetic<signed long> { enum { value = true }; };
|
98
|
+
template<> struct is_arithmetic<unsigned long> { enum { value = true }; };
|
99
|
+
|
100
|
+
template<typename T> struct is_integral { enum { value = false }; };
|
101
|
+
template<> struct is_integral<bool> { enum { value = true }; };
|
102
|
+
template<> struct is_integral<char> { enum { value = true }; };
|
103
|
+
template<> struct is_integral<signed char> { enum { value = true }; };
|
104
|
+
template<> struct is_integral<unsigned char> { enum { value = true }; };
|
105
|
+
template<> struct is_integral<signed short> { enum { value = true }; };
|
106
|
+
template<> struct is_integral<unsigned short> { enum { value = true }; };
|
107
|
+
template<> struct is_integral<signed int> { enum { value = true }; };
|
108
|
+
template<> struct is_integral<unsigned int> { enum { value = true }; };
|
109
|
+
template<> struct is_integral<signed long> { enum { value = true }; };
|
110
|
+
template<> struct is_integral<unsigned long> { enum { value = true }; };
|
111
|
+
|
112
|
+
#if EIGEN_HAS_CXX11
|
113
|
+
using std::make_unsigned;
|
114
|
+
#else
|
115
|
+
// TODO: Possibly improve this implementation of make_unsigned.
|
116
|
+
// It is currently used only by
|
117
|
+
// template<typename Scalar> struct random_default_impl<Scalar, false, true>.
|
118
|
+
template<typename> struct make_unsigned;
|
119
|
+
template<> struct make_unsigned<char> { typedef unsigned char type; };
|
120
|
+
template<> struct make_unsigned<signed char> { typedef unsigned char type; };
|
121
|
+
template<> struct make_unsigned<unsigned char> { typedef unsigned char type; };
|
122
|
+
template<> struct make_unsigned<signed short> { typedef unsigned short type; };
|
123
|
+
template<> struct make_unsigned<unsigned short> { typedef unsigned short type; };
|
124
|
+
template<> struct make_unsigned<signed int> { typedef unsigned int type; };
|
125
|
+
template<> struct make_unsigned<unsigned int> { typedef unsigned int type; };
|
126
|
+
template<> struct make_unsigned<signed long> { typedef unsigned long type; };
|
127
|
+
template<> struct make_unsigned<unsigned long> { typedef unsigned long type; };
|
128
|
+
#if EIGEN_COMP_MSVC
|
129
|
+
template<> struct make_unsigned<signed __int64> { typedef unsigned __int64 type; };
|
130
|
+
template<> struct make_unsigned<unsigned __int64> { typedef unsigned __int64 type; };
|
131
|
+
#endif
|
132
|
+
#endif
|
133
|
+
|
134
|
+
template <typename T> struct add_const { typedef const T type; };
|
135
|
+
template <typename T> struct add_const<T&> { typedef T& type; };
|
136
|
+
|
137
|
+
template <typename T> struct is_const { enum { value = 0 }; };
|
138
|
+
template <typename T> struct is_const<T const> { enum { value = 1 }; };
|
139
|
+
|
140
|
+
template<typename T> struct add_const_on_value_type { typedef const T type; };
|
141
|
+
template<typename T> struct add_const_on_value_type<T&> { typedef T const& type; };
|
142
|
+
template<typename T> struct add_const_on_value_type<T*> { typedef T const* type; };
|
143
|
+
template<typename T> struct add_const_on_value_type<T* const> { typedef T const* const type; };
|
144
|
+
template<typename T> struct add_const_on_value_type<T const* const> { typedef T const* const type; };
|
145
|
+
|
146
|
+
|
147
|
+
template<typename From, typename To>
|
148
|
+
struct is_convertible_impl
|
149
|
+
{
|
150
|
+
private:
|
151
|
+
struct any_conversion
|
152
|
+
{
|
153
|
+
template <typename T> any_conversion(const volatile T&);
|
154
|
+
template <typename T> any_conversion(T&);
|
155
|
+
};
|
156
|
+
struct yes {int a[1];};
|
157
|
+
struct no {int a[2];};
|
158
|
+
|
159
|
+
static yes test(const To&, int);
|
160
|
+
static no test(any_conversion, ...);
|
161
|
+
|
162
|
+
public:
|
163
|
+
static From ms_from;
|
164
|
+
#ifdef __INTEL_COMPILER
|
165
|
+
#pragma warning push
|
166
|
+
#pragma warning ( disable : 2259 )
|
167
|
+
#endif
|
168
|
+
enum { value = sizeof(test(ms_from, 0))==sizeof(yes) };
|
169
|
+
#ifdef __INTEL_COMPILER
|
170
|
+
#pragma warning pop
|
171
|
+
#endif
|
172
|
+
};
|
173
|
+
|
174
|
+
template<typename From, typename To>
|
175
|
+
struct is_convertible
|
176
|
+
{
|
177
|
+
enum { value = is_convertible_impl<typename remove_all<From>::type,
|
178
|
+
typename remove_all<To >::type>::value };
|
179
|
+
};
|
180
|
+
|
181
|
+
/** \internal Allows to enable/disable an overload
|
182
|
+
* according to a compile time condition.
|
183
|
+
*/
|
184
|
+
template<bool Condition, typename T=void> struct enable_if;
|
185
|
+
|
186
|
+
template<typename T> struct enable_if<true,T>
|
187
|
+
{ typedef T type; };
|
188
|
+
|
189
|
+
#if defined(__CUDA_ARCH__)
|
190
|
+
#if !defined(__FLT_EPSILON__)
|
191
|
+
#define __FLT_EPSILON__ FLT_EPSILON
|
192
|
+
#define __DBL_EPSILON__ DBL_EPSILON
|
193
|
+
#endif
|
194
|
+
|
195
|
+
namespace device {
|
196
|
+
|
197
|
+
template<typename T> struct numeric_limits
|
198
|
+
{
|
199
|
+
EIGEN_DEVICE_FUNC
|
200
|
+
static T epsilon() { return 0; }
|
201
|
+
static T (max)() { assert(false && "Highest not supported for this type"); }
|
202
|
+
static T (min)() { assert(false && "Lowest not supported for this type"); }
|
203
|
+
static T infinity() { assert(false && "Infinity not supported for this type"); }
|
204
|
+
static T quiet_NaN() { assert(false && "quiet_NaN not supported for this type"); }
|
205
|
+
};
|
206
|
+
template<> struct numeric_limits<float>
|
207
|
+
{
|
208
|
+
EIGEN_DEVICE_FUNC
|
209
|
+
static float epsilon() { return __FLT_EPSILON__; }
|
210
|
+
EIGEN_DEVICE_FUNC
|
211
|
+
static float (max)() { return CUDART_MAX_NORMAL_F; }
|
212
|
+
EIGEN_DEVICE_FUNC
|
213
|
+
static float (min)() { return FLT_MIN; }
|
214
|
+
EIGEN_DEVICE_FUNC
|
215
|
+
static float infinity() { return CUDART_INF_F; }
|
216
|
+
EIGEN_DEVICE_FUNC
|
217
|
+
static float quiet_NaN() { return CUDART_NAN_F; }
|
218
|
+
};
|
219
|
+
template<> struct numeric_limits<double>
|
220
|
+
{
|
221
|
+
EIGEN_DEVICE_FUNC
|
222
|
+
static double epsilon() { return __DBL_EPSILON__; }
|
223
|
+
EIGEN_DEVICE_FUNC
|
224
|
+
static double (max)() { return DBL_MAX; }
|
225
|
+
EIGEN_DEVICE_FUNC
|
226
|
+
static double (min)() { return DBL_MIN; }
|
227
|
+
EIGEN_DEVICE_FUNC
|
228
|
+
static double infinity() { return CUDART_INF; }
|
229
|
+
EIGEN_DEVICE_FUNC
|
230
|
+
static double quiet_NaN() { return CUDART_NAN; }
|
231
|
+
};
|
232
|
+
template<> struct numeric_limits<int>
|
233
|
+
{
|
234
|
+
EIGEN_DEVICE_FUNC
|
235
|
+
static int epsilon() { return 0; }
|
236
|
+
EIGEN_DEVICE_FUNC
|
237
|
+
static int (max)() { return INT_MAX; }
|
238
|
+
EIGEN_DEVICE_FUNC
|
239
|
+
static int (min)() { return INT_MIN; }
|
240
|
+
};
|
241
|
+
template<> struct numeric_limits<unsigned int>
|
242
|
+
{
|
243
|
+
EIGEN_DEVICE_FUNC
|
244
|
+
static unsigned int epsilon() { return 0; }
|
245
|
+
EIGEN_DEVICE_FUNC
|
246
|
+
static unsigned int (max)() { return UINT_MAX; }
|
247
|
+
EIGEN_DEVICE_FUNC
|
248
|
+
static unsigned int (min)() { return 0; }
|
249
|
+
};
|
250
|
+
template<> struct numeric_limits<long>
|
251
|
+
{
|
252
|
+
EIGEN_DEVICE_FUNC
|
253
|
+
static long epsilon() { return 0; }
|
254
|
+
EIGEN_DEVICE_FUNC
|
255
|
+
static long (max)() { return LONG_MAX; }
|
256
|
+
EIGEN_DEVICE_FUNC
|
257
|
+
static long (min)() { return LONG_MIN; }
|
258
|
+
};
|
259
|
+
template<> struct numeric_limits<unsigned long>
|
260
|
+
{
|
261
|
+
EIGEN_DEVICE_FUNC
|
262
|
+
static unsigned long epsilon() { return 0; }
|
263
|
+
EIGEN_DEVICE_FUNC
|
264
|
+
static unsigned long (max)() { return ULONG_MAX; }
|
265
|
+
EIGEN_DEVICE_FUNC
|
266
|
+
static unsigned long (min)() { return 0; }
|
267
|
+
};
|
268
|
+
template<> struct numeric_limits<long long>
|
269
|
+
{
|
270
|
+
EIGEN_DEVICE_FUNC
|
271
|
+
static long long epsilon() { return 0; }
|
272
|
+
EIGEN_DEVICE_FUNC
|
273
|
+
static long long (max)() { return LLONG_MAX; }
|
274
|
+
EIGEN_DEVICE_FUNC
|
275
|
+
static long long (min)() { return LLONG_MIN; }
|
276
|
+
};
|
277
|
+
template<> struct numeric_limits<unsigned long long>
|
278
|
+
{
|
279
|
+
EIGEN_DEVICE_FUNC
|
280
|
+
static unsigned long long epsilon() { return 0; }
|
281
|
+
EIGEN_DEVICE_FUNC
|
282
|
+
static unsigned long long (max)() { return ULLONG_MAX; }
|
283
|
+
EIGEN_DEVICE_FUNC
|
284
|
+
static unsigned long long (min)() { return 0; }
|
285
|
+
};
|
286
|
+
|
287
|
+
}
|
288
|
+
|
289
|
+
#endif
|
290
|
+
|
291
|
+
/** \internal
|
292
|
+
* A base class do disable default copy ctor and copy assignement operator.
|
293
|
+
*/
|
294
|
+
class noncopyable
|
295
|
+
{
|
296
|
+
EIGEN_DEVICE_FUNC noncopyable(const noncopyable&);
|
297
|
+
EIGEN_DEVICE_FUNC const noncopyable& operator=(const noncopyable&);
|
298
|
+
protected:
|
299
|
+
EIGEN_DEVICE_FUNC noncopyable() {}
|
300
|
+
EIGEN_DEVICE_FUNC ~noncopyable() {}
|
301
|
+
};
|
302
|
+
|
303
|
+
/** \internal
|
304
|
+
* Convenient struct to get the result type of a unary or binary functor.
|
305
|
+
*
|
306
|
+
* It supports both the current STL mechanism (using the result_type member) as well as
|
307
|
+
* upcoming next STL generation (using a templated result member).
|
308
|
+
* If none of these members is provided, then the type of the first argument is returned. FIXME, that behavior is a pretty bad hack.
|
309
|
+
*/
|
310
|
+
#if EIGEN_HAS_STD_RESULT_OF
|
311
|
+
template<typename T> struct result_of {
|
312
|
+
typedef typename std::result_of<T>::type type1;
|
313
|
+
typedef typename remove_all<type1>::type type;
|
314
|
+
};
|
315
|
+
#else
|
316
|
+
template<typename T> struct result_of { };
|
317
|
+
|
318
|
+
struct has_none {int a[1];};
|
319
|
+
struct has_std_result_type {int a[2];};
|
320
|
+
struct has_tr1_result {int a[3];};
|
321
|
+
|
322
|
+
template<typename Func, typename ArgType, int SizeOf=sizeof(has_none)>
|
323
|
+
struct unary_result_of_select {typedef typename internal::remove_all<ArgType>::type type;};
|
324
|
+
|
325
|
+
template<typename Func, typename ArgType>
|
326
|
+
struct unary_result_of_select<Func, ArgType, sizeof(has_std_result_type)> {typedef typename Func::result_type type;};
|
327
|
+
|
328
|
+
template<typename Func, typename ArgType>
|
329
|
+
struct unary_result_of_select<Func, ArgType, sizeof(has_tr1_result)> {typedef typename Func::template result<Func(ArgType)>::type type;};
|
330
|
+
|
331
|
+
template<typename Func, typename ArgType>
|
332
|
+
struct result_of<Func(ArgType)> {
|
333
|
+
template<typename T>
|
334
|
+
static has_std_result_type testFunctor(T const *, typename T::result_type const * = 0);
|
335
|
+
template<typename T>
|
336
|
+
static has_tr1_result testFunctor(T const *, typename T::template result<T(ArgType)>::type const * = 0);
|
337
|
+
static has_none testFunctor(...);
|
338
|
+
|
339
|
+
// note that the following indirection is needed for gcc-3.3
|
340
|
+
enum {FunctorType = sizeof(testFunctor(static_cast<Func*>(0)))};
|
341
|
+
typedef typename unary_result_of_select<Func, ArgType, FunctorType>::type type;
|
342
|
+
};
|
343
|
+
|
344
|
+
template<typename Func, typename ArgType0, typename ArgType1, int SizeOf=sizeof(has_none)>
|
345
|
+
struct binary_result_of_select {typedef typename internal::remove_all<ArgType0>::type type;};
|
346
|
+
|
347
|
+
template<typename Func, typename ArgType0, typename ArgType1>
|
348
|
+
struct binary_result_of_select<Func, ArgType0, ArgType1, sizeof(has_std_result_type)>
|
349
|
+
{typedef typename Func::result_type type;};
|
350
|
+
|
351
|
+
template<typename Func, typename ArgType0, typename ArgType1>
|
352
|
+
struct binary_result_of_select<Func, ArgType0, ArgType1, sizeof(has_tr1_result)>
|
353
|
+
{typedef typename Func::template result<Func(ArgType0,ArgType1)>::type type;};
|
354
|
+
|
355
|
+
template<typename Func, typename ArgType0, typename ArgType1>
|
356
|
+
struct result_of<Func(ArgType0,ArgType1)> {
|
357
|
+
template<typename T>
|
358
|
+
static has_std_result_type testFunctor(T const *, typename T::result_type const * = 0);
|
359
|
+
template<typename T>
|
360
|
+
static has_tr1_result testFunctor(T const *, typename T::template result<T(ArgType0,ArgType1)>::type const * = 0);
|
361
|
+
static has_none testFunctor(...);
|
362
|
+
|
363
|
+
// note that the following indirection is needed for gcc-3.3
|
364
|
+
enum {FunctorType = sizeof(testFunctor(static_cast<Func*>(0)))};
|
365
|
+
typedef typename binary_result_of_select<Func, ArgType0, ArgType1, FunctorType>::type type;
|
366
|
+
};
|
367
|
+
|
368
|
+
template<typename Func, typename ArgType0, typename ArgType1, typename ArgType2, int SizeOf=sizeof(has_none)>
|
369
|
+
struct ternary_result_of_select {typedef typename internal::remove_all<ArgType0>::type type;};
|
370
|
+
|
371
|
+
template<typename Func, typename ArgType0, typename ArgType1, typename ArgType2>
|
372
|
+
struct ternary_result_of_select<Func, ArgType0, ArgType1, ArgType2, sizeof(has_std_result_type)>
|
373
|
+
{typedef typename Func::result_type type;};
|
374
|
+
|
375
|
+
template<typename Func, typename ArgType0, typename ArgType1, typename ArgType2>
|
376
|
+
struct ternary_result_of_select<Func, ArgType0, ArgType1, ArgType2, sizeof(has_tr1_result)>
|
377
|
+
{typedef typename Func::template result<Func(ArgType0,ArgType1,ArgType2)>::type type;};
|
378
|
+
|
379
|
+
template<typename Func, typename ArgType0, typename ArgType1, typename ArgType2>
|
380
|
+
struct result_of<Func(ArgType0,ArgType1,ArgType2)> {
|
381
|
+
template<typename T>
|
382
|
+
static has_std_result_type testFunctor(T const *, typename T::result_type const * = 0);
|
383
|
+
template<typename T>
|
384
|
+
static has_tr1_result testFunctor(T const *, typename T::template result<T(ArgType0,ArgType1,ArgType2)>::type const * = 0);
|
385
|
+
static has_none testFunctor(...);
|
386
|
+
|
387
|
+
// note that the following indirection is needed for gcc-3.3
|
388
|
+
enum {FunctorType = sizeof(testFunctor(static_cast<Func*>(0)))};
|
389
|
+
typedef typename ternary_result_of_select<Func, ArgType0, ArgType1, ArgType2, FunctorType>::type type;
|
390
|
+
};
|
391
|
+
#endif
|
392
|
+
|
393
|
+
struct meta_yes { char a[1]; };
|
394
|
+
struct meta_no { char a[2]; };
|
395
|
+
|
396
|
+
// Check whether T::ReturnType does exist
|
397
|
+
template <typename T>
|
398
|
+
struct has_ReturnType
|
399
|
+
{
|
400
|
+
template <typename C> static meta_yes testFunctor(typename C::ReturnType const *);
|
401
|
+
template <typename C> static meta_no testFunctor(...);
|
402
|
+
|
403
|
+
enum { value = sizeof(testFunctor<T>(0)) == sizeof(meta_yes) };
|
404
|
+
};
|
405
|
+
|
406
|
+
template<typename T> const T* return_ptr();
|
407
|
+
|
408
|
+
template <typename T, typename IndexType=Index>
|
409
|
+
struct has_nullary_operator
|
410
|
+
{
|
411
|
+
template <typename C> static meta_yes testFunctor(C const *,typename enable_if<(sizeof(return_ptr<C>()->operator()())>0)>::type * = 0);
|
412
|
+
static meta_no testFunctor(...);
|
413
|
+
|
414
|
+
enum { value = sizeof(testFunctor(static_cast<T*>(0))) == sizeof(meta_yes) };
|
415
|
+
};
|
416
|
+
|
417
|
+
template <typename T, typename IndexType=Index>
|
418
|
+
struct has_unary_operator
|
419
|
+
{
|
420
|
+
template <typename C> static meta_yes testFunctor(C const *,typename enable_if<(sizeof(return_ptr<C>()->operator()(IndexType(0)))>0)>::type * = 0);
|
421
|
+
static meta_no testFunctor(...);
|
422
|
+
|
423
|
+
enum { value = sizeof(testFunctor(static_cast<T*>(0))) == sizeof(meta_yes) };
|
424
|
+
};
|
425
|
+
|
426
|
+
template <typename T, typename IndexType=Index>
|
427
|
+
struct has_binary_operator
|
428
|
+
{
|
429
|
+
template <typename C> static meta_yes testFunctor(C const *,typename enable_if<(sizeof(return_ptr<C>()->operator()(IndexType(0),IndexType(0)))>0)>::type * = 0);
|
430
|
+
static meta_no testFunctor(...);
|
431
|
+
|
432
|
+
enum { value = sizeof(testFunctor(static_cast<T*>(0))) == sizeof(meta_yes) };
|
433
|
+
};
|
434
|
+
|
435
|
+
/** \internal In short, it computes int(sqrt(\a Y)) with \a Y an integer.
|
436
|
+
* Usage example: \code meta_sqrt<1023>::ret \endcode
|
437
|
+
*/
|
438
|
+
template<int Y,
|
439
|
+
int InfX = 0,
|
440
|
+
int SupX = ((Y==1) ? 1 : Y/2),
|
441
|
+
bool Done = ((SupX-InfX)<=1 ? true : ((SupX*SupX <= Y) && ((SupX+1)*(SupX+1) > Y))) >
|
442
|
+
// use ?: instead of || just to shut up a stupid gcc 4.3 warning
|
443
|
+
class meta_sqrt
|
444
|
+
{
|
445
|
+
enum {
|
446
|
+
MidX = (InfX+SupX)/2,
|
447
|
+
TakeInf = MidX*MidX > Y ? 1 : 0,
|
448
|
+
NewInf = int(TakeInf) ? InfX : int(MidX),
|
449
|
+
NewSup = int(TakeInf) ? int(MidX) : SupX
|
450
|
+
};
|
451
|
+
public:
|
452
|
+
enum { ret = meta_sqrt<Y,NewInf,NewSup>::ret };
|
453
|
+
};
|
454
|
+
|
455
|
+
template<int Y, int InfX, int SupX>
|
456
|
+
class meta_sqrt<Y, InfX, SupX, true> { public: enum { ret = (SupX*SupX <= Y) ? SupX : InfX }; };
|
457
|
+
|
458
|
+
|
459
|
+
/** \internal Computes the least common multiple of two positive integer A and B
|
460
|
+
* at compile-time. It implements a naive algorithm testing all multiples of A.
|
461
|
+
* It thus works better if A>=B.
|
462
|
+
*/
|
463
|
+
template<int A, int B, int K=1, bool Done = ((A*K)%B)==0>
|
464
|
+
struct meta_least_common_multiple
|
465
|
+
{
|
466
|
+
enum { ret = meta_least_common_multiple<A,B,K+1>::ret };
|
467
|
+
};
|
468
|
+
template<int A, int B, int K>
|
469
|
+
struct meta_least_common_multiple<A,B,K,true>
|
470
|
+
{
|
471
|
+
enum { ret = A*K };
|
472
|
+
};
|
473
|
+
|
474
|
+
/** \internal determines whether the product of two numeric types is allowed and what the return type is */
|
475
|
+
template<typename T, typename U> struct scalar_product_traits
|
476
|
+
{
|
477
|
+
enum { Defined = 0 };
|
478
|
+
};
|
479
|
+
|
480
|
+
// FIXME quick workaround around current limitation of result_of
|
481
|
+
// template<typename Scalar, typename ArgType0, typename ArgType1>
|
482
|
+
// struct result_of<scalar_product_op<Scalar>(ArgType0,ArgType1)> {
|
483
|
+
// typedef typename scalar_product_traits<typename remove_all<ArgType0>::type, typename remove_all<ArgType1>::type>::ReturnType type;
|
484
|
+
// };
|
485
|
+
|
486
|
+
} // end namespace internal
|
487
|
+
|
488
|
+
namespace numext {
|
489
|
+
|
490
|
+
#if defined(__CUDA_ARCH__)
|
491
|
+
template<typename T> EIGEN_DEVICE_FUNC void swap(T &a, T &b) { T tmp = b; b = a; a = tmp; }
|
492
|
+
#else
|
493
|
+
template<typename T> EIGEN_STRONG_INLINE void swap(T &a, T &b) { std::swap(a,b); }
|
494
|
+
#endif
|
495
|
+
|
496
|
+
#if defined(__CUDA_ARCH__)
|
497
|
+
using internal::device::numeric_limits;
|
498
|
+
#else
|
499
|
+
using std::numeric_limits;
|
500
|
+
#endif
|
501
|
+
|
502
|
+
// Integer division with rounding up.
|
503
|
+
// T is assumed to be an integer type with a>=0, and b>0
|
504
|
+
template<typename T>
|
505
|
+
T div_ceil(const T &a, const T &b)
|
506
|
+
{
|
507
|
+
return (a+b-1) / b;
|
508
|
+
}
|
509
|
+
|
510
|
+
// The aim of the following functions is to bypass -Wfloat-equal warnings
|
511
|
+
// when we really want a strict equality comparison on floating points.
|
512
|
+
template<typename X, typename Y> EIGEN_STRONG_INLINE
|
513
|
+
bool equal_strict(const X& x,const Y& y) { return x == y; }
|
514
|
+
|
515
|
+
template<> EIGEN_STRONG_INLINE
|
516
|
+
bool equal_strict(const float& x,const float& y) { return std::equal_to<float>()(x,y); }
|
517
|
+
|
518
|
+
template<> EIGEN_STRONG_INLINE
|
519
|
+
bool equal_strict(const double& x,const double& y) { return std::equal_to<double>()(x,y); }
|
520
|
+
|
521
|
+
template<typename X, typename Y> EIGEN_STRONG_INLINE
|
522
|
+
bool not_equal_strict(const X& x,const Y& y) { return x != y; }
|
523
|
+
|
524
|
+
template<> EIGEN_STRONG_INLINE
|
525
|
+
bool not_equal_strict(const float& x,const float& y) { return std::not_equal_to<float>()(x,y); }
|
526
|
+
|
527
|
+
template<> EIGEN_STRONG_INLINE
|
528
|
+
bool not_equal_strict(const double& x,const double& y) { return std::not_equal_to<double>()(x,y); }
|
529
|
+
|
530
|
+
} // end namespace numext
|
531
|
+
|
532
|
+
} // end namespace Eigen
|
533
|
+
|
534
|
+
#endif // EIGEN_META_H
|