pylibsparseir 0.1.0__cp312-cp312-macosx_15_0_arm64.whl → 0.5.2__cp312-cp312-macosx_15_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pylibsparseir might be problematic. Click here for more details.
- include/eigen3/Eigen/Cholesky +45 -0
- include/eigen3/Eigen/CholmodSupport +48 -0
- include/eigen3/Eigen/Core +384 -0
- include/eigen3/Eigen/Dense +7 -0
- include/eigen3/Eigen/Eigen +2 -0
- include/eigen3/Eigen/Eigenvalues +60 -0
- include/eigen3/Eigen/Geometry +59 -0
- include/eigen3/Eigen/Householder +29 -0
- include/eigen3/Eigen/IterativeLinearSolvers +48 -0
- include/eigen3/Eigen/Jacobi +32 -0
- include/eigen3/Eigen/KLUSupport +41 -0
- include/eigen3/Eigen/LU +47 -0
- include/eigen3/Eigen/MetisSupport +35 -0
- include/eigen3/Eigen/OrderingMethods +70 -0
- include/eigen3/Eigen/PaStiXSupport +49 -0
- include/eigen3/Eigen/PardisoSupport +35 -0
- include/eigen3/Eigen/QR +50 -0
- include/eigen3/Eigen/QtAlignedMalloc +39 -0
- include/eigen3/Eigen/SPQRSupport +34 -0
- include/eigen3/Eigen/SVD +50 -0
- include/eigen3/Eigen/Sparse +34 -0
- include/eigen3/Eigen/SparseCholesky +37 -0
- include/eigen3/Eigen/SparseCore +69 -0
- include/eigen3/Eigen/SparseLU +50 -0
- include/eigen3/Eigen/SparseQR +36 -0
- include/eigen3/Eigen/StdDeque +27 -0
- include/eigen3/Eigen/StdList +26 -0
- include/eigen3/Eigen/StdVector +27 -0
- include/eigen3/Eigen/SuperLUSupport +64 -0
- include/eigen3/Eigen/UmfPackSupport +40 -0
- include/eigen3/Eigen/src/Cholesky/LDLT.h +688 -0
- include/eigen3/Eigen/src/Cholesky/LLT.h +558 -0
- include/eigen3/Eigen/src/Cholesky/LLT_LAPACKE.h +99 -0
- include/eigen3/Eigen/src/CholmodSupport/CholmodSupport.h +682 -0
- include/eigen3/Eigen/src/Core/ArithmeticSequence.h +413 -0
- include/eigen3/Eigen/src/Core/Array.h +417 -0
- include/eigen3/Eigen/src/Core/ArrayBase.h +226 -0
- include/eigen3/Eigen/src/Core/ArrayWrapper.h +209 -0
- include/eigen3/Eigen/src/Core/Assign.h +90 -0
- include/eigen3/Eigen/src/Core/AssignEvaluator.h +1010 -0
- include/eigen3/Eigen/src/Core/Assign_MKL.h +178 -0
- include/eigen3/Eigen/src/Core/BandMatrix.h +353 -0
- include/eigen3/Eigen/src/Core/Block.h +448 -0
- include/eigen3/Eigen/src/Core/BooleanRedux.h +162 -0
- include/eigen3/Eigen/src/Core/CommaInitializer.h +164 -0
- include/eigen3/Eigen/src/Core/ConditionEstimator.h +175 -0
- include/eigen3/Eigen/src/Core/CoreEvaluators.h +1741 -0
- include/eigen3/Eigen/src/Core/CoreIterators.h +132 -0
- include/eigen3/Eigen/src/Core/CwiseBinaryOp.h +183 -0
- include/eigen3/Eigen/src/Core/CwiseNullaryOp.h +1001 -0
- include/eigen3/Eigen/src/Core/CwiseTernaryOp.h +197 -0
- include/eigen3/Eigen/src/Core/CwiseUnaryOp.h +103 -0
- include/eigen3/Eigen/src/Core/CwiseUnaryView.h +132 -0
- include/eigen3/Eigen/src/Core/DenseBase.h +701 -0
- include/eigen3/Eigen/src/Core/DenseCoeffsBase.h +685 -0
- include/eigen3/Eigen/src/Core/DenseStorage.h +652 -0
- include/eigen3/Eigen/src/Core/Diagonal.h +258 -0
- include/eigen3/Eigen/src/Core/DiagonalMatrix.h +391 -0
- include/eigen3/Eigen/src/Core/DiagonalProduct.h +28 -0
- include/eigen3/Eigen/src/Core/Dot.h +318 -0
- include/eigen3/Eigen/src/Core/EigenBase.h +160 -0
- include/eigen3/Eigen/src/Core/ForceAlignedAccess.h +150 -0
- include/eigen3/Eigen/src/Core/Fuzzy.h +155 -0
- include/eigen3/Eigen/src/Core/GeneralProduct.h +465 -0
- include/eigen3/Eigen/src/Core/GenericPacketMath.h +1040 -0
- include/eigen3/Eigen/src/Core/GlobalFunctions.h +194 -0
- include/eigen3/Eigen/src/Core/IO.h +258 -0
- include/eigen3/Eigen/src/Core/IndexedView.h +237 -0
- include/eigen3/Eigen/src/Core/Inverse.h +117 -0
- include/eigen3/Eigen/src/Core/Map.h +171 -0
- include/eigen3/Eigen/src/Core/MapBase.h +310 -0
- include/eigen3/Eigen/src/Core/MathFunctions.h +2057 -0
- include/eigen3/Eigen/src/Core/MathFunctionsImpl.h +200 -0
- include/eigen3/Eigen/src/Core/Matrix.h +565 -0
- include/eigen3/Eigen/src/Core/MatrixBase.h +547 -0
- include/eigen3/Eigen/src/Core/NestByValue.h +85 -0
- include/eigen3/Eigen/src/Core/NoAlias.h +109 -0
- include/eigen3/Eigen/src/Core/NumTraits.h +335 -0
- include/eigen3/Eigen/src/Core/PartialReduxEvaluator.h +232 -0
- include/eigen3/Eigen/src/Core/PermutationMatrix.h +605 -0
- include/eigen3/Eigen/src/Core/PlainObjectBase.h +1128 -0
- include/eigen3/Eigen/src/Core/Product.h +191 -0
- include/eigen3/Eigen/src/Core/ProductEvaluators.h +1179 -0
- include/eigen3/Eigen/src/Core/Random.h +218 -0
- include/eigen3/Eigen/src/Core/Redux.h +515 -0
- include/eigen3/Eigen/src/Core/Ref.h +381 -0
- include/eigen3/Eigen/src/Core/Replicate.h +142 -0
- include/eigen3/Eigen/src/Core/Reshaped.h +454 -0
- include/eigen3/Eigen/src/Core/ReturnByValue.h +119 -0
- include/eigen3/Eigen/src/Core/Reverse.h +217 -0
- include/eigen3/Eigen/src/Core/Select.h +164 -0
- include/eigen3/Eigen/src/Core/SelfAdjointView.h +365 -0
- include/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h +47 -0
- include/eigen3/Eigen/src/Core/Solve.h +188 -0
- include/eigen3/Eigen/src/Core/SolveTriangular.h +235 -0
- include/eigen3/Eigen/src/Core/SolverBase.h +168 -0
- include/eigen3/Eigen/src/Core/StableNorm.h +251 -0
- include/eigen3/Eigen/src/Core/StlIterators.h +463 -0
- include/eigen3/Eigen/src/Core/Stride.h +116 -0
- include/eigen3/Eigen/src/Core/Swap.h +68 -0
- include/eigen3/Eigen/src/Core/Transpose.h +464 -0
- include/eigen3/Eigen/src/Core/Transpositions.h +386 -0
- include/eigen3/Eigen/src/Core/TriangularMatrix.h +1001 -0
- include/eigen3/Eigen/src/Core/VectorBlock.h +96 -0
- include/eigen3/Eigen/src/Core/VectorwiseOp.h +784 -0
- include/eigen3/Eigen/src/Core/Visitor.h +381 -0
- include/eigen3/Eigen/src/Core/arch/AVX/Complex.h +372 -0
- include/eigen3/Eigen/src/Core/arch/AVX/MathFunctions.h +228 -0
- include/eigen3/Eigen/src/Core/arch/AVX/PacketMath.h +1574 -0
- include/eigen3/Eigen/src/Core/arch/AVX/TypeCasting.h +115 -0
- include/eigen3/Eigen/src/Core/arch/AVX512/Complex.h +422 -0
- include/eigen3/Eigen/src/Core/arch/AVX512/MathFunctions.h +362 -0
- include/eigen3/Eigen/src/Core/arch/AVX512/PacketMath.h +2303 -0
- include/eigen3/Eigen/src/Core/arch/AVX512/TypeCasting.h +89 -0
- include/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h +417 -0
- include/eigen3/Eigen/src/Core/arch/AltiVec/MathFunctions.h +90 -0
- include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +2937 -0
- include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +221 -0
- include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +629 -0
- include/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h +2711 -0
- include/eigen3/Eigen/src/Core/arch/CUDA/Complex.h +258 -0
- include/eigen3/Eigen/src/Core/arch/Default/BFloat16.h +700 -0
- include/eigen3/Eigen/src/Core/arch/Default/ConjHelper.h +117 -0
- include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +1649 -0
- include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +110 -0
- include/eigen3/Eigen/src/Core/arch/Default/Half.h +942 -0
- include/eigen3/Eigen/src/Core/arch/Default/Settings.h +49 -0
- include/eigen3/Eigen/src/Core/arch/Default/TypeCasting.h +120 -0
- include/eigen3/Eigen/src/Core/arch/GPU/MathFunctions.h +103 -0
- include/eigen3/Eigen/src/Core/arch/GPU/PacketMath.h +1685 -0
- include/eigen3/Eigen/src/Core/arch/GPU/TypeCasting.h +80 -0
- include/eigen3/Eigen/src/Core/arch/HIP/hcc/math_constants.h +23 -0
- include/eigen3/Eigen/src/Core/arch/MSA/Complex.h +648 -0
- include/eigen3/Eigen/src/Core/arch/MSA/MathFunctions.h +387 -0
- include/eigen3/Eigen/src/Core/arch/MSA/PacketMath.h +1233 -0
- include/eigen3/Eigen/src/Core/arch/NEON/Complex.h +584 -0
- include/eigen3/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +183 -0
- include/eigen3/Eigen/src/Core/arch/NEON/MathFunctions.h +75 -0
- include/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h +4587 -0
- include/eigen3/Eigen/src/Core/arch/NEON/TypeCasting.h +1419 -0
- include/eigen3/Eigen/src/Core/arch/SSE/Complex.h +351 -0
- include/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h +199 -0
- include/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h +1505 -0
- include/eigen3/Eigen/src/Core/arch/SSE/TypeCasting.h +142 -0
- include/eigen3/Eigen/src/Core/arch/SVE/MathFunctions.h +44 -0
- include/eigen3/Eigen/src/Core/arch/SVE/PacketMath.h +752 -0
- include/eigen3/Eigen/src/Core/arch/SVE/TypeCasting.h +49 -0
- include/eigen3/Eigen/src/Core/arch/SYCL/InteropHeaders.h +232 -0
- include/eigen3/Eigen/src/Core/arch/SYCL/MathFunctions.h +301 -0
- include/eigen3/Eigen/src/Core/arch/SYCL/PacketMath.h +670 -0
- include/eigen3/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +694 -0
- include/eigen3/Eigen/src/Core/arch/SYCL/TypeCasting.h +85 -0
- include/eigen3/Eigen/src/Core/arch/ZVector/Complex.h +426 -0
- include/eigen3/Eigen/src/Core/arch/ZVector/MathFunctions.h +233 -0
- include/eigen3/Eigen/src/Core/arch/ZVector/PacketMath.h +1060 -0
- include/eigen3/Eigen/src/Core/functors/AssignmentFunctors.h +177 -0
- include/eigen3/Eigen/src/Core/functors/BinaryFunctors.h +541 -0
- include/eigen3/Eigen/src/Core/functors/NullaryFunctors.h +189 -0
- include/eigen3/Eigen/src/Core/functors/StlFunctors.h +166 -0
- include/eigen3/Eigen/src/Core/functors/TernaryFunctors.h +25 -0
- include/eigen3/Eigen/src/Core/functors/UnaryFunctors.h +1131 -0
- include/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h +2645 -0
- include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h +517 -0
- include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +317 -0
- include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +145 -0
- include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +124 -0
- include/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h +518 -0
- include/eigen3/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +136 -0
- include/eigen3/Eigen/src/Core/products/Parallelizer.h +180 -0
- include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +544 -0
- include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +295 -0
- include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h +262 -0
- include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +118 -0
- include/eigen3/Eigen/src/Core/products/SelfadjointProduct.h +133 -0
- include/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h +94 -0
- include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h +472 -0
- include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +317 -0
- include/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h +350 -0
- include/eigen3/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +255 -0
- include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h +337 -0
- include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +167 -0
- include/eigen3/Eigen/src/Core/products/TriangularSolverVector.h +148 -0
- include/eigen3/Eigen/src/Core/util/BlasUtil.h +583 -0
- include/eigen3/Eigen/src/Core/util/ConfigureVectorization.h +512 -0
- include/eigen3/Eigen/src/Core/util/Constants.h +563 -0
- include/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h +106 -0
- include/eigen3/Eigen/src/Core/util/ForwardDeclarations.h +322 -0
- include/eigen3/Eigen/src/Core/util/IndexedViewHelper.h +186 -0
- include/eigen3/Eigen/src/Core/util/IntegralConstant.h +272 -0
- include/eigen3/Eigen/src/Core/util/MKL_support.h +137 -0
- include/eigen3/Eigen/src/Core/util/Macros.h +1464 -0
- include/eigen3/Eigen/src/Core/util/Memory.h +1163 -0
- include/eigen3/Eigen/src/Core/util/Meta.h +812 -0
- include/eigen3/Eigen/src/Core/util/NonMPL2.h +3 -0
- include/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h +31 -0
- include/eigen3/Eigen/src/Core/util/ReshapedHelper.h +51 -0
- include/eigen3/Eigen/src/Core/util/StaticAssert.h +221 -0
- include/eigen3/Eigen/src/Core/util/SymbolicIndex.h +293 -0
- include/eigen3/Eigen/src/Core/util/XprHelper.h +856 -0
- include/eigen3/Eigen/src/Eigenvalues/ComplexEigenSolver.h +346 -0
- include/eigen3/Eigen/src/Eigenvalues/ComplexSchur.h +462 -0
- include/eigen3/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +91 -0
- include/eigen3/Eigen/src/Eigenvalues/EigenSolver.h +622 -0
- include/eigen3/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +418 -0
- include/eigen3/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +226 -0
- include/eigen3/Eigen/src/Eigenvalues/HessenbergDecomposition.h +374 -0
- include/eigen3/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +158 -0
- include/eigen3/Eigen/src/Eigenvalues/RealQZ.h +657 -0
- include/eigen3/Eigen/src/Eigenvalues/RealSchur.h +558 -0
- include/eigen3/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +77 -0
- include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +904 -0
- include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +87 -0
- include/eigen3/Eigen/src/Eigenvalues/Tridiagonalization.h +561 -0
- include/eigen3/Eigen/src/Geometry/AlignedBox.h +486 -0
- include/eigen3/Eigen/src/Geometry/AngleAxis.h +247 -0
- include/eigen3/Eigen/src/Geometry/EulerAngles.h +114 -0
- include/eigen3/Eigen/src/Geometry/Homogeneous.h +501 -0
- include/eigen3/Eigen/src/Geometry/Hyperplane.h +282 -0
- include/eigen3/Eigen/src/Geometry/OrthoMethods.h +235 -0
- include/eigen3/Eigen/src/Geometry/ParametrizedLine.h +232 -0
- include/eigen3/Eigen/src/Geometry/Quaternion.h +870 -0
- include/eigen3/Eigen/src/Geometry/Rotation2D.h +199 -0
- include/eigen3/Eigen/src/Geometry/RotationBase.h +206 -0
- include/eigen3/Eigen/src/Geometry/Scaling.h +188 -0
- include/eigen3/Eigen/src/Geometry/Transform.h +1563 -0
- include/eigen3/Eigen/src/Geometry/Translation.h +202 -0
- include/eigen3/Eigen/src/Geometry/Umeyama.h +166 -0
- include/eigen3/Eigen/src/Geometry/arch/Geometry_SIMD.h +168 -0
- include/eigen3/Eigen/src/Householder/BlockHouseholder.h +110 -0
- include/eigen3/Eigen/src/Householder/Householder.h +176 -0
- include/eigen3/Eigen/src/Householder/HouseholderSequence.h +545 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +226 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +212 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +229 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +394 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +453 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +444 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +198 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +117 -0
- include/eigen3/Eigen/src/Jacobi/Jacobi.h +483 -0
- include/eigen3/Eigen/src/KLUSupport/KLUSupport.h +358 -0
- include/eigen3/Eigen/src/LU/Determinant.h +117 -0
- include/eigen3/Eigen/src/LU/FullPivLU.h +877 -0
- include/eigen3/Eigen/src/LU/InverseImpl.h +432 -0
- include/eigen3/Eigen/src/LU/PartialPivLU.h +624 -0
- include/eigen3/Eigen/src/LU/PartialPivLU_LAPACKE.h +83 -0
- include/eigen3/Eigen/src/LU/arch/InverseSize4.h +351 -0
- include/eigen3/Eigen/src/MetisSupport/MetisSupport.h +137 -0
- include/eigen3/Eigen/src/OrderingMethods/Amd.h +435 -0
- include/eigen3/Eigen/src/OrderingMethods/Eigen_Colamd.h +1863 -0
- include/eigen3/Eigen/src/OrderingMethods/Ordering.h +153 -0
- include/eigen3/Eigen/src/PaStiXSupport/PaStiXSupport.h +678 -0
- include/eigen3/Eigen/src/PardisoSupport/PardisoSupport.h +545 -0
- include/eigen3/Eigen/src/QR/ColPivHouseholderQR.h +674 -0
- include/eigen3/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +97 -0
- include/eigen3/Eigen/src/QR/CompleteOrthogonalDecomposition.h +635 -0
- include/eigen3/Eigen/src/QR/FullPivHouseholderQR.h +713 -0
- include/eigen3/Eigen/src/QR/HouseholderQR.h +434 -0
- include/eigen3/Eigen/src/QR/HouseholderQR_LAPACKE.h +68 -0
- include/eigen3/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +335 -0
- include/eigen3/Eigen/src/SVD/BDCSVD.h +1366 -0
- include/eigen3/Eigen/src/SVD/JacobiSVD.h +812 -0
- include/eigen3/Eigen/src/SVD/JacobiSVD_LAPACKE.h +91 -0
- include/eigen3/Eigen/src/SVD/SVDBase.h +376 -0
- include/eigen3/Eigen/src/SVD/UpperBidiagonalization.h +414 -0
- include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky.h +697 -0
- include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +174 -0
- include/eigen3/Eigen/src/SparseCore/AmbiVector.h +378 -0
- include/eigen3/Eigen/src/SparseCore/CompressedStorage.h +274 -0
- include/eigen3/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +352 -0
- include/eigen3/Eigen/src/SparseCore/MappedSparseMatrix.h +67 -0
- include/eigen3/Eigen/src/SparseCore/SparseAssign.h +270 -0
- include/eigen3/Eigen/src/SparseCore/SparseBlock.h +571 -0
- include/eigen3/Eigen/src/SparseCore/SparseColEtree.h +206 -0
- include/eigen3/Eigen/src/SparseCore/SparseCompressedBase.h +370 -0
- include/eigen3/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +722 -0
- include/eigen3/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +150 -0
- include/eigen3/Eigen/src/SparseCore/SparseDenseProduct.h +342 -0
- include/eigen3/Eigen/src/SparseCore/SparseDiagonalProduct.h +138 -0
- include/eigen3/Eigen/src/SparseCore/SparseDot.h +98 -0
- include/eigen3/Eigen/src/SparseCore/SparseFuzzy.h +29 -0
- include/eigen3/Eigen/src/SparseCore/SparseMap.h +305 -0
- include/eigen3/Eigen/src/SparseCore/SparseMatrix.h +1518 -0
- include/eigen3/Eigen/src/SparseCore/SparseMatrixBase.h +398 -0
- include/eigen3/Eigen/src/SparseCore/SparsePermutation.h +178 -0
- include/eigen3/Eigen/src/SparseCore/SparseProduct.h +181 -0
- include/eigen3/Eigen/src/SparseCore/SparseRedux.h +49 -0
- include/eigen3/Eigen/src/SparseCore/SparseRef.h +397 -0
- include/eigen3/Eigen/src/SparseCore/SparseSelfAdjointView.h +659 -0
- include/eigen3/Eigen/src/SparseCore/SparseSolverBase.h +124 -0
- include/eigen3/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +198 -0
- include/eigen3/Eigen/src/SparseCore/SparseTranspose.h +92 -0
- include/eigen3/Eigen/src/SparseCore/SparseTriangularView.h +189 -0
- include/eigen3/Eigen/src/SparseCore/SparseUtil.h +186 -0
- include/eigen3/Eigen/src/SparseCore/SparseVector.h +478 -0
- include/eigen3/Eigen/src/SparseCore/SparseView.h +254 -0
- include/eigen3/Eigen/src/SparseCore/TriangularSolver.h +315 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU.h +923 -0
- include/eigen3/Eigen/src/SparseLU/SparseLUImpl.h +66 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_Memory.h +226 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_Structs.h +110 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +375 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_Utils.h +80 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_column_bmod.h +181 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_column_dfs.h +179 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +107 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +280 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +126 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +130 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_panel_bmod.h +223 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_panel_dfs.h +258 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_pivotL.h +137 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_pruneL.h +136 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_relax_snode.h +83 -0
- include/eigen3/Eigen/src/SparseQR/SparseQR.h +758 -0
- include/eigen3/Eigen/src/StlSupport/StdDeque.h +116 -0
- include/eigen3/Eigen/src/StlSupport/StdList.h +106 -0
- include/eigen3/Eigen/src/StlSupport/StdVector.h +131 -0
- include/eigen3/Eigen/src/StlSupport/details.h +84 -0
- include/eigen3/Eigen/src/SuperLUSupport/SuperLUSupport.h +1025 -0
- include/eigen3/Eigen/src/UmfPackSupport/UmfPackSupport.h +642 -0
- include/eigen3/Eigen/src/misc/Image.h +82 -0
- include/eigen3/Eigen/src/misc/Kernel.h +79 -0
- include/eigen3/Eigen/src/misc/RealSvd2x2.h +55 -0
- include/eigen3/Eigen/src/misc/blas.h +440 -0
- include/eigen3/Eigen/src/misc/lapack.h +152 -0
- include/eigen3/Eigen/src/misc/lapacke.h +16292 -0
- include/eigen3/Eigen/src/misc/lapacke_mangling.h +17 -0
- include/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h +358 -0
- include/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h +696 -0
- include/eigen3/Eigen/src/plugins/BlockMethods.h +1442 -0
- include/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h +115 -0
- include/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h +177 -0
- include/eigen3/Eigen/src/plugins/IndexedViewMethods.h +262 -0
- include/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h +152 -0
- include/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h +95 -0
- include/eigen3/Eigen/src/plugins/ReshapedMethods.h +149 -0
- include/eigen3/signature_of_eigen3_matrix_library +1 -0
- include/eigen3/unsupported/Eigen/AdolcForward +159 -0
- include/eigen3/unsupported/Eigen/AlignedVector3 +234 -0
- include/eigen3/unsupported/Eigen/ArpackSupport +30 -0
- include/eigen3/unsupported/Eigen/AutoDiff +46 -0
- include/eigen3/unsupported/Eigen/BVH +95 -0
- include/eigen3/unsupported/Eigen/CXX11/Tensor +137 -0
- include/eigen3/unsupported/Eigen/CXX11/TensorSymmetry +42 -0
- include/eigen3/unsupported/Eigen/CXX11/ThreadPool +74 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +554 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h +329 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h +247 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +1176 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h +1559 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h +1093 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +518 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h +377 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +1023 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h +73 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h +6 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h +1413 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h +575 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +1650 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +1679 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h +456 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h +1132 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h +544 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h +214 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h +347 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h +137 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h +6 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h +104 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h +389 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +1048 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +409 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +236 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +490 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h +236 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h +983 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h +703 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h +388 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h +669 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h +379 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h +237 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +191 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h +488 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h +302 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h +33 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h +99 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h +44 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +79 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h +603 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h +738 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h +247 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h +82 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +263 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h +216 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h +98 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +327 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h +311 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h +1102 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h +708 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h +291 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +322 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h +998 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h +6 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h +966 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +582 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h +454 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +465 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h +528 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h +513 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h +471 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h +161 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h +346 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h +303 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h +264 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h +249 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +629 -0
- include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h +293 -0
- include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h +236 -0
- include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h +338 -0
- include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h +669 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h +67 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h +249 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h +486 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h +236 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h +23 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h +40 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h +301 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h +48 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h +20 -0
- include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +537 -0
- include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h +88 -0
- include/eigen3/unsupported/Eigen/CXX11/src/util/EmulateArray.h +261 -0
- include/eigen3/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h +158 -0
- include/eigen3/unsupported/Eigen/EulerAngles +43 -0
- include/eigen3/unsupported/Eigen/FFT +419 -0
- include/eigen3/unsupported/Eigen/IterativeSolvers +51 -0
- include/eigen3/unsupported/Eigen/KroneckerProduct +36 -0
- include/eigen3/unsupported/Eigen/LevenbergMarquardt +49 -0
- include/eigen3/unsupported/Eigen/MPRealSupport +213 -0
- include/eigen3/unsupported/Eigen/MatrixFunctions +504 -0
- include/eigen3/unsupported/Eigen/MoreVectorization +24 -0
- include/eigen3/unsupported/Eigen/NonLinearOptimization +140 -0
- include/eigen3/unsupported/Eigen/NumericalDiff +56 -0
- include/eigen3/unsupported/Eigen/OpenGLSupport +322 -0
- include/eigen3/unsupported/Eigen/Polynomials +137 -0
- include/eigen3/unsupported/Eigen/Skyline +39 -0
- include/eigen3/unsupported/Eigen/SparseExtra +54 -0
- include/eigen3/unsupported/Eigen/SpecialFunctions +103 -0
- include/eigen3/unsupported/Eigen/Splines +35 -0
- include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h +108 -0
- include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +730 -0
- include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h +220 -0
- include/eigen3/unsupported/Eigen/src/BVH/BVAlgorithms.h +293 -0
- include/eigen3/unsupported/Eigen/src/BVH/KdBVH.h +223 -0
- include/eigen3/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h +790 -0
- include/eigen3/unsupported/Eigen/src/EulerAngles/EulerAngles.h +355 -0
- include/eigen3/unsupported/Eigen/src/EulerAngles/EulerSystem.h +305 -0
- include/eigen3/unsupported/Eigen/src/FFT/ei_fftw_impl.h +261 -0
- include/eigen3/unsupported/Eigen/src/FFT/ei_kissfft_impl.h +449 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h +187 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/DGMRES.h +511 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/GMRES.h +335 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/IDRS.h +436 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h +90 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/IterationController.h +154 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/MINRES.h +267 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/Scaling.h +193 -0
- include/eigen3/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +305 -0
- include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h +84 -0
- include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h +202 -0
- include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h +160 -0
- include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h +188 -0
- include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h +396 -0
- include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +441 -0
- include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +569 -0
- include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +373 -0
- include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +705 -0
- include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +368 -0
- include/eigen3/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +117 -0
- include/eigen3/unsupported/Eigen/src/MoreVectorization/MathFunctions.h +95 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h +601 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h +657 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/chkder.h +66 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/covar.h +70 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/dogleg.h +107 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h +79 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/lmpar.h +298 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h +91 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h +30 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1updt.h +99 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h +49 -0
- include/eigen3/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h +130 -0
- include/eigen3/unsupported/Eigen/src/Polynomials/Companion.h +280 -0
- include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialSolver.h +428 -0
- include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialUtils.h +143 -0
- include/eigen3/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h +352 -0
- include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrix.h +862 -0
- include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h +212 -0
- include/eigen3/unsupported/Eigen/src/Skyline/SkylineProduct.h +295 -0
- include/eigen3/unsupported/Eigen/src/Skyline/SkylineStorage.h +259 -0
- include/eigen3/unsupported/Eigen/src/Skyline/SkylineUtil.h +89 -0
- include/eigen3/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h +122 -0
- include/eigen3/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h +1079 -0
- include/eigen3/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h +404 -0
- include/eigen3/unsupported/Eigen/src/SparseExtra/MarketIO.h +282 -0
- include/eigen3/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h +247 -0
- include/eigen3/unsupported/Eigen/src/SparseExtra/RandomSetter.h +349 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h +286 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h +68 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h +357 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h +66 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h +1959 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h +118 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h +67 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h +167 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h +58 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h +330 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h +58 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h +2045 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h +79 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h +46 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h +16 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h +46 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h +16 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h +369 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h +54 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h +34 -0
- include/eigen3/unsupported/Eigen/src/Splines/Spline.h +507 -0
- include/eigen3/unsupported/Eigen/src/Splines/SplineFitting.h +431 -0
- include/eigen3/unsupported/Eigen/src/Splines/SplineFwd.h +93 -0
- pylibsparseir/__init__.py +31 -0
- pylibsparseir/clean_build_artifacts.py +0 -1
- pylibsparseir/core.py +160 -45
- pylibsparseir/libsparseir.dylib +0 -0
- pylibsparseir-0.5.2.dist-info/METADATA +215 -0
- pylibsparseir-0.5.2.dist-info/RECORD +545 -0
- {pylibsparseir-0.1.0.dist-info → pylibsparseir-0.5.2.dist-info}/WHEEL +1 -1
- pylibsparseir-0.5.2.dist-info/licenses/LICENSE +21 -0
- share/eigen3/cmake/Eigen3Config.cmake +37 -0
- share/eigen3/cmake/Eigen3ConfigVersion.cmake +65 -0
- share/eigen3/cmake/Eigen3Targets.cmake +106 -0
- share/eigen3/cmake/UseEigen3.cmake +6 -0
- share/pkgconfig/eigen3.pc +9 -0
- pylibsparseir/libsparseir.0.4.2.dylib +0 -0
- pylibsparseir/libsparseir.0.dylib +0 -0
- pylibsparseir-0.1.0.dist-info/METADATA +0 -130
- pylibsparseir-0.1.0.dist-info/RECORD +0 -12
- pylibsparseir-0.1.0.dist-info/entry_points.txt +0 -2
- pylibsparseir-0.1.0.dist-info/top_level.txt +0 -1
|
@@ -0,0 +1,419 @@
|
|
|
1
|
+
// This file is part of Eigen, a lightweight C++ template library
|
|
2
|
+
// for linear algebra.
|
|
3
|
+
//
|
|
4
|
+
// Copyright (C) 2009 Mark Borgerding mark a borgerding net
|
|
5
|
+
//
|
|
6
|
+
// This Source Code Form is subject to the terms of the Mozilla
|
|
7
|
+
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
8
|
+
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
9
|
+
|
|
10
|
+
#ifndef EIGEN_FFT_H
|
|
11
|
+
#define EIGEN_FFT_H
|
|
12
|
+
|
|
13
|
+
#include <complex>
|
|
14
|
+
#include <vector>
|
|
15
|
+
#include <map>
|
|
16
|
+
#include "../../Eigen/Core"
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* \defgroup FFT_Module Fast Fourier Transform module
|
|
21
|
+
*
|
|
22
|
+
* \code
|
|
23
|
+
* #include <unsupported/Eigen/FFT>
|
|
24
|
+
* \endcode
|
|
25
|
+
*
|
|
26
|
+
* This module provides Fast Fourier transformation, with a configurable backend
|
|
27
|
+
* implementation.
|
|
28
|
+
*
|
|
29
|
+
* The default implementation is based on kissfft. It is a small, free, and
|
|
30
|
+
* reasonably efficient default.
|
|
31
|
+
*
|
|
32
|
+
* There are currently two implementation backend:
|
|
33
|
+
*
|
|
34
|
+
* - fftw (http://www.fftw.org) : faster, GPL -- incompatible with Eigen in LGPL form, bigger code size.
|
|
35
|
+
* - MKL (http://en.wikipedia.org/wiki/Math_Kernel_Library) : fastest, commercial -- may be incompatible with Eigen in GPL form.
|
|
36
|
+
*
|
|
37
|
+
* \section FFTDesign Design
|
|
38
|
+
*
|
|
39
|
+
* The following design decisions were made concerning scaling and
|
|
40
|
+
* half-spectrum for real FFT.
|
|
41
|
+
*
|
|
42
|
+
* The intent is to facilitate generic programming and ease migrating code
|
|
43
|
+
* from Matlab/octave.
|
|
44
|
+
* We think the default behavior of Eigen/FFT should favor correctness and
|
|
45
|
+
* generality over speed. Of course, the caller should be able to "opt-out" from this
|
|
46
|
+
* behavior and get the speed increase if they want it.
|
|
47
|
+
*
|
|
48
|
+
* 1) %Scaling:
|
|
49
|
+
* Other libraries (FFTW,IMKL,KISSFFT) do not perform scaling, so there
|
|
50
|
+
* is a constant gain incurred after the forward&inverse transforms , so
|
|
51
|
+
* IFFT(FFT(x)) = Kx; this is done to avoid a vector-by-value multiply.
|
|
52
|
+
* The downside is that algorithms that worked correctly in Matlab/octave
|
|
53
|
+
* don't behave the same way once implemented in C++.
|
|
54
|
+
*
|
|
55
|
+
* How Eigen/FFT differs: invertible scaling is performed so IFFT( FFT(x) ) = x.
|
|
56
|
+
*
|
|
57
|
+
* 2) Real FFT half-spectrum
|
|
58
|
+
* Other libraries use only half the frequency spectrum (plus one extra
|
|
59
|
+
* sample for the Nyquist bin) for a real FFT, the other half is the
|
|
60
|
+
* conjugate-symmetric of the first half. This saves them a copy and some
|
|
61
|
+
* memory. The downside is the caller needs to have special logic for the
|
|
62
|
+
* number of bins in complex vs real.
|
|
63
|
+
*
|
|
64
|
+
* How Eigen/FFT differs: The full spectrum is returned from the forward
|
|
65
|
+
* transform. This facilitates generic template programming by obviating
|
|
66
|
+
* separate specializations for real vs complex. On the inverse
|
|
67
|
+
* transform, only half the spectrum is actually used if the output type is real.
|
|
68
|
+
*/
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
|
|
72
|
+
|
|
73
|
+
#ifdef EIGEN_FFTW_DEFAULT
|
|
74
|
+
// FFTW: faster, GPL -- incompatible with Eigen in LGPL form, bigger code size
|
|
75
|
+
# include <fftw3.h>
|
|
76
|
+
# include "src/FFT/ei_fftw_impl.h"
|
|
77
|
+
namespace Eigen {
|
|
78
|
+
//template <typename T> typedef struct internal::fftw_impl default_fft_impl; this does not work
|
|
79
|
+
template <typename T> struct default_fft_impl : public internal::fftw_impl<T> {};
|
|
80
|
+
}
|
|
81
|
+
#elif defined EIGEN_MKL_DEFAULT
|
|
82
|
+
// TODO
|
|
83
|
+
// intel Math Kernel Library: fastest, commercial -- may be incompatible with Eigen in GPL form
|
|
84
|
+
# include "src/FFT/ei_imklfft_impl.h"
|
|
85
|
+
namespace Eigen {
|
|
86
|
+
template <typename T> struct default_fft_impl : public internal::imklfft_impl {};
|
|
87
|
+
}
|
|
88
|
+
#else
|
|
89
|
+
// internal::kissfft_impl: small, free, reasonably efficient default, derived from kissfft
|
|
90
|
+
//
|
|
91
|
+
# include "src/FFT/ei_kissfft_impl.h"
|
|
92
|
+
namespace Eigen {
|
|
93
|
+
template <typename T>
|
|
94
|
+
struct default_fft_impl : public internal::kissfft_impl<T> {};
|
|
95
|
+
}
|
|
96
|
+
#endif
|
|
97
|
+
|
|
98
|
+
namespace Eigen {
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
//
|
|
102
|
+
template<typename T_SrcMat,typename T_FftIfc> struct fft_fwd_proxy;
|
|
103
|
+
template<typename T_SrcMat,typename T_FftIfc> struct fft_inv_proxy;
|
|
104
|
+
|
|
105
|
+
namespace internal {
|
|
106
|
+
template<typename T_SrcMat,typename T_FftIfc>
|
|
107
|
+
struct traits< fft_fwd_proxy<T_SrcMat,T_FftIfc> >
|
|
108
|
+
{
|
|
109
|
+
typedef typename T_SrcMat::PlainObject ReturnType;
|
|
110
|
+
};
|
|
111
|
+
template<typename T_SrcMat,typename T_FftIfc>
|
|
112
|
+
struct traits< fft_inv_proxy<T_SrcMat,T_FftIfc> >
|
|
113
|
+
{
|
|
114
|
+
typedef typename T_SrcMat::PlainObject ReturnType;
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
template<typename T_SrcMat,typename T_FftIfc>
|
|
119
|
+
struct fft_fwd_proxy
|
|
120
|
+
: public ReturnByValue<fft_fwd_proxy<T_SrcMat,T_FftIfc> >
|
|
121
|
+
{
|
|
122
|
+
typedef DenseIndex Index;
|
|
123
|
+
|
|
124
|
+
fft_fwd_proxy(const T_SrcMat& src,T_FftIfc & fft, Index nfft) : m_src(src),m_ifc(fft), m_nfft(nfft) {}
|
|
125
|
+
|
|
126
|
+
template<typename T_DestMat> void evalTo(T_DestMat& dst) const;
|
|
127
|
+
|
|
128
|
+
Index rows() const { return m_src.rows(); }
|
|
129
|
+
Index cols() const { return m_src.cols(); }
|
|
130
|
+
protected:
|
|
131
|
+
const T_SrcMat & m_src;
|
|
132
|
+
T_FftIfc & m_ifc;
|
|
133
|
+
Index m_nfft;
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
template<typename T_SrcMat,typename T_FftIfc>
|
|
137
|
+
struct fft_inv_proxy
|
|
138
|
+
: public ReturnByValue<fft_inv_proxy<T_SrcMat,T_FftIfc> >
|
|
139
|
+
{
|
|
140
|
+
typedef DenseIndex Index;
|
|
141
|
+
|
|
142
|
+
fft_inv_proxy(const T_SrcMat& src,T_FftIfc & fft, Index nfft) : m_src(src),m_ifc(fft), m_nfft(nfft) {}
|
|
143
|
+
|
|
144
|
+
template<typename T_DestMat> void evalTo(T_DestMat& dst) const;
|
|
145
|
+
|
|
146
|
+
Index rows() const { return m_src.rows(); }
|
|
147
|
+
Index cols() const { return m_src.cols(); }
|
|
148
|
+
protected:
|
|
149
|
+
const T_SrcMat & m_src;
|
|
150
|
+
T_FftIfc & m_ifc;
|
|
151
|
+
Index m_nfft;
|
|
152
|
+
};
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
template <typename T_Scalar,
|
|
156
|
+
typename T_Impl=default_fft_impl<T_Scalar> >
|
|
157
|
+
class FFT
|
|
158
|
+
{
|
|
159
|
+
public:
|
|
160
|
+
typedef T_Impl impl_type;
|
|
161
|
+
typedef DenseIndex Index;
|
|
162
|
+
typedef typename impl_type::Scalar Scalar;
|
|
163
|
+
typedef typename impl_type::Complex Complex;
|
|
164
|
+
|
|
165
|
+
enum Flag {
|
|
166
|
+
Default=0, // goof proof
|
|
167
|
+
Unscaled=1,
|
|
168
|
+
HalfSpectrum=2,
|
|
169
|
+
// SomeOtherSpeedOptimization=4
|
|
170
|
+
Speedy=32767
|
|
171
|
+
};
|
|
172
|
+
|
|
173
|
+
FFT( const impl_type & impl=impl_type() , Flag flags=Default ) :m_impl(impl),m_flag(flags) { }
|
|
174
|
+
|
|
175
|
+
inline
|
|
176
|
+
bool HasFlag(Flag f) const { return (m_flag & (int)f) == f;}
|
|
177
|
+
|
|
178
|
+
inline
|
|
179
|
+
void SetFlag(Flag f) { m_flag |= (int)f;}
|
|
180
|
+
|
|
181
|
+
inline
|
|
182
|
+
void ClearFlag(Flag f) { m_flag &= (~(int)f);}
|
|
183
|
+
|
|
184
|
+
inline
|
|
185
|
+
void fwd( Complex * dst, const Scalar * src, Index nfft)
|
|
186
|
+
{
|
|
187
|
+
m_impl.fwd(dst,src,static_cast<int>(nfft));
|
|
188
|
+
if ( HasFlag(HalfSpectrum) == false)
|
|
189
|
+
ReflectSpectrum(dst,nfft);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
inline
|
|
193
|
+
void fwd( Complex * dst, const Complex * src, Index nfft)
|
|
194
|
+
{
|
|
195
|
+
m_impl.fwd(dst,src,static_cast<int>(nfft));
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
/*
|
|
199
|
+
inline
|
|
200
|
+
void fwd2(Complex * dst, const Complex * src, int n0,int n1)
|
|
201
|
+
{
|
|
202
|
+
m_impl.fwd2(dst,src,n0,n1);
|
|
203
|
+
}
|
|
204
|
+
*/
|
|
205
|
+
|
|
206
|
+
template <typename _Input>
|
|
207
|
+
inline
|
|
208
|
+
void fwd( std::vector<Complex> & dst, const std::vector<_Input> & src)
|
|
209
|
+
{
|
|
210
|
+
if ( NumTraits<_Input>::IsComplex == 0 && HasFlag(HalfSpectrum) )
|
|
211
|
+
dst.resize( (src.size()>>1)+1); // half the bins + Nyquist bin
|
|
212
|
+
else
|
|
213
|
+
dst.resize(src.size());
|
|
214
|
+
fwd(&dst[0],&src[0],src.size());
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
template<typename InputDerived, typename ComplexDerived>
|
|
218
|
+
inline
|
|
219
|
+
void fwd( MatrixBase<ComplexDerived> & dst, const MatrixBase<InputDerived> & src, Index nfft=-1)
|
|
220
|
+
{
|
|
221
|
+
typedef typename ComplexDerived::Scalar dst_type;
|
|
222
|
+
typedef typename InputDerived::Scalar src_type;
|
|
223
|
+
EIGEN_STATIC_ASSERT_VECTOR_ONLY(InputDerived)
|
|
224
|
+
EIGEN_STATIC_ASSERT_VECTOR_ONLY(ComplexDerived)
|
|
225
|
+
EIGEN_STATIC_ASSERT_SAME_VECTOR_SIZE(ComplexDerived,InputDerived) // size at compile-time
|
|
226
|
+
EIGEN_STATIC_ASSERT((internal::is_same<dst_type, Complex>::value),
|
|
227
|
+
YOU_MIXED_DIFFERENT_NUMERIC_TYPES__YOU_NEED_TO_USE_THE_CAST_METHOD_OF_MATRIXBASE_TO_CAST_NUMERIC_TYPES_EXPLICITLY)
|
|
228
|
+
EIGEN_STATIC_ASSERT(int(InputDerived::Flags)&int(ComplexDerived::Flags)&DirectAccessBit,
|
|
229
|
+
THIS_METHOD_IS_ONLY_FOR_EXPRESSIONS_WITH_DIRECT_MEMORY_ACCESS_SUCH_AS_MAP_OR_PLAIN_MATRICES)
|
|
230
|
+
|
|
231
|
+
if (nfft<1)
|
|
232
|
+
nfft = src.size();
|
|
233
|
+
|
|
234
|
+
if ( NumTraits< src_type >::IsComplex == 0 && HasFlag(HalfSpectrum) )
|
|
235
|
+
dst.derived().resize( (nfft>>1)+1);
|
|
236
|
+
else
|
|
237
|
+
dst.derived().resize(nfft);
|
|
238
|
+
|
|
239
|
+
if ( src.innerStride() != 1 || src.size() < nfft ) {
|
|
240
|
+
Matrix<src_type,1,Dynamic> tmp;
|
|
241
|
+
if (src.size()<nfft) {
|
|
242
|
+
tmp.setZero(nfft);
|
|
243
|
+
tmp.block(0,0,src.size(),1 ) = src;
|
|
244
|
+
}else{
|
|
245
|
+
tmp = src;
|
|
246
|
+
}
|
|
247
|
+
fwd( &dst[0],&tmp[0],nfft );
|
|
248
|
+
}else{
|
|
249
|
+
fwd( &dst[0],&src[0],nfft );
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
template<typename InputDerived>
|
|
254
|
+
inline
|
|
255
|
+
fft_fwd_proxy< MatrixBase<InputDerived>, FFT<T_Scalar,T_Impl> >
|
|
256
|
+
fwd( const MatrixBase<InputDerived> & src, Index nfft=-1)
|
|
257
|
+
{
|
|
258
|
+
return fft_fwd_proxy< MatrixBase<InputDerived> ,FFT<T_Scalar,T_Impl> >( src, *this,nfft );
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
template<typename InputDerived>
|
|
262
|
+
inline
|
|
263
|
+
fft_inv_proxy< MatrixBase<InputDerived>, FFT<T_Scalar,T_Impl> >
|
|
264
|
+
inv( const MatrixBase<InputDerived> & src, Index nfft=-1)
|
|
265
|
+
{
|
|
266
|
+
return fft_inv_proxy< MatrixBase<InputDerived> ,FFT<T_Scalar,T_Impl> >( src, *this,nfft );
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
inline
|
|
270
|
+
void inv( Complex * dst, const Complex * src, Index nfft)
|
|
271
|
+
{
|
|
272
|
+
m_impl.inv( dst,src,static_cast<int>(nfft) );
|
|
273
|
+
if ( HasFlag( Unscaled ) == false)
|
|
274
|
+
scale(dst,Scalar(1./nfft),nfft); // scale the time series
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
inline
|
|
278
|
+
void inv( Scalar * dst, const Complex * src, Index nfft)
|
|
279
|
+
{
|
|
280
|
+
m_impl.inv( dst,src,static_cast<int>(nfft) );
|
|
281
|
+
if ( HasFlag( Unscaled ) == false)
|
|
282
|
+
scale(dst,Scalar(1./nfft),nfft); // scale the time series
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
template<typename OutputDerived, typename ComplexDerived>
|
|
286
|
+
inline
|
|
287
|
+
void inv( MatrixBase<OutputDerived> & dst, const MatrixBase<ComplexDerived> & src, Index nfft=-1)
|
|
288
|
+
{
|
|
289
|
+
typedef typename ComplexDerived::Scalar src_type;
|
|
290
|
+
typedef typename ComplexDerived::RealScalar real_type;
|
|
291
|
+
typedef typename OutputDerived::Scalar dst_type;
|
|
292
|
+
const bool realfft= (NumTraits<dst_type>::IsComplex == 0);
|
|
293
|
+
EIGEN_STATIC_ASSERT_VECTOR_ONLY(OutputDerived)
|
|
294
|
+
EIGEN_STATIC_ASSERT_VECTOR_ONLY(ComplexDerived)
|
|
295
|
+
EIGEN_STATIC_ASSERT_SAME_VECTOR_SIZE(ComplexDerived,OutputDerived) // size at compile-time
|
|
296
|
+
EIGEN_STATIC_ASSERT((internal::is_same<src_type, Complex>::value),
|
|
297
|
+
YOU_MIXED_DIFFERENT_NUMERIC_TYPES__YOU_NEED_TO_USE_THE_CAST_METHOD_OF_MATRIXBASE_TO_CAST_NUMERIC_TYPES_EXPLICITLY)
|
|
298
|
+
EIGEN_STATIC_ASSERT(int(OutputDerived::Flags)&int(ComplexDerived::Flags)&DirectAccessBit,
|
|
299
|
+
THIS_METHOD_IS_ONLY_FOR_EXPRESSIONS_WITH_DIRECT_MEMORY_ACCESS_SUCH_AS_MAP_OR_PLAIN_MATRICES)
|
|
300
|
+
|
|
301
|
+
if (nfft<1) { //automatic FFT size determination
|
|
302
|
+
if ( realfft && HasFlag(HalfSpectrum) )
|
|
303
|
+
nfft = 2*(src.size()-1); //assume even fft size
|
|
304
|
+
else
|
|
305
|
+
nfft = src.size();
|
|
306
|
+
}
|
|
307
|
+
dst.derived().resize( nfft );
|
|
308
|
+
|
|
309
|
+
// check for nfft that does not fit the input data size
|
|
310
|
+
Index resize_input= ( realfft && HasFlag(HalfSpectrum) )
|
|
311
|
+
? ( (nfft/2+1) - src.size() )
|
|
312
|
+
: ( nfft - src.size() );
|
|
313
|
+
|
|
314
|
+
if ( src.innerStride() != 1 || resize_input ) {
|
|
315
|
+
// if the vector is strided, then we need to copy it to a packed temporary
|
|
316
|
+
Matrix<src_type,1,Dynamic> tmp;
|
|
317
|
+
if ( resize_input ) {
|
|
318
|
+
size_t ncopy = (std::min)(src.size(),src.size() + resize_input);
|
|
319
|
+
tmp.setZero(src.size() + resize_input);
|
|
320
|
+
if ( realfft && HasFlag(HalfSpectrum) ) {
|
|
321
|
+
// pad at the Nyquist bin
|
|
322
|
+
tmp.head(ncopy) = src.head(ncopy);
|
|
323
|
+
tmp(ncopy-1) = real(tmp(ncopy-1)); // enforce real-only Nyquist bin
|
|
324
|
+
}else{
|
|
325
|
+
size_t nhead,ntail;
|
|
326
|
+
nhead = 1+ncopy/2-1; // range [0:pi)
|
|
327
|
+
ntail = ncopy/2-1; // range (-pi:0)
|
|
328
|
+
tmp.head(nhead) = src.head(nhead);
|
|
329
|
+
tmp.tail(ntail) = src.tail(ntail);
|
|
330
|
+
if (resize_input<0) { //shrinking -- create the Nyquist bin as the average of the two bins that fold into it
|
|
331
|
+
tmp(nhead) = ( src(nfft/2) + src( src.size() - nfft/2 ) )*real_type(.5);
|
|
332
|
+
}else{ // expanding -- split the old Nyquist bin into two halves
|
|
333
|
+
tmp(nhead) = src(nhead) * real_type(.5);
|
|
334
|
+
tmp(tmp.size()-nhead) = tmp(nhead);
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}else{
|
|
338
|
+
tmp = src;
|
|
339
|
+
}
|
|
340
|
+
inv( &dst[0],&tmp[0], nfft);
|
|
341
|
+
}else{
|
|
342
|
+
inv( &dst[0],&src[0], nfft);
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
template <typename _Output>
|
|
347
|
+
inline
|
|
348
|
+
void inv( std::vector<_Output> & dst, const std::vector<Complex> & src,Index nfft=-1)
|
|
349
|
+
{
|
|
350
|
+
if (nfft<1)
|
|
351
|
+
nfft = ( NumTraits<_Output>::IsComplex == 0 && HasFlag(HalfSpectrum) ) ? 2*(src.size()-1) : src.size();
|
|
352
|
+
dst.resize( nfft );
|
|
353
|
+
inv( &dst[0],&src[0],nfft);
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
/*
|
|
358
|
+
// TODO: multi-dimensional FFTs
|
|
359
|
+
inline
|
|
360
|
+
void inv2(Complex * dst, const Complex * src, int n0,int n1)
|
|
361
|
+
{
|
|
362
|
+
m_impl.inv2(dst,src,n0,n1);
|
|
363
|
+
if ( HasFlag( Unscaled ) == false)
|
|
364
|
+
scale(dst,1./(n0*n1),n0*n1);
|
|
365
|
+
}
|
|
366
|
+
*/
|
|
367
|
+
|
|
368
|
+
inline
|
|
369
|
+
impl_type & impl() {return m_impl;}
|
|
370
|
+
private:
|
|
371
|
+
|
|
372
|
+
template <typename T_Data>
|
|
373
|
+
inline
|
|
374
|
+
void scale(T_Data * x,Scalar s,Index nx)
|
|
375
|
+
{
|
|
376
|
+
#if 1
|
|
377
|
+
for (int k=0;k<nx;++k)
|
|
378
|
+
*x++ *= s;
|
|
379
|
+
#else
|
|
380
|
+
if ( ((ptrdiff_t)x) & 15 )
|
|
381
|
+
Matrix<T_Data, Dynamic, 1>::Map(x,nx) *= s;
|
|
382
|
+
else
|
|
383
|
+
Matrix<T_Data, Dynamic, 1>::MapAligned(x,nx) *= s;
|
|
384
|
+
//Matrix<T_Data, Dynamic, Dynamic>::Map(x,nx) * s;
|
|
385
|
+
#endif
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
inline
|
|
389
|
+
void ReflectSpectrum(Complex * freq, Index nfft)
|
|
390
|
+
{
|
|
391
|
+
// create the implicit right-half spectrum (conjugate-mirror of the left-half)
|
|
392
|
+
Index nhbins=(nfft>>1)+1;
|
|
393
|
+
for (Index k=nhbins;k < nfft; ++k )
|
|
394
|
+
freq[k] = conj(freq[nfft-k]);
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
impl_type m_impl;
|
|
398
|
+
int m_flag;
|
|
399
|
+
};
|
|
400
|
+
|
|
401
|
+
template<typename T_SrcMat,typename T_FftIfc>
|
|
402
|
+
template<typename T_DestMat> inline
|
|
403
|
+
void fft_fwd_proxy<T_SrcMat,T_FftIfc>::evalTo(T_DestMat& dst) const
|
|
404
|
+
{
|
|
405
|
+
m_ifc.fwd( dst, m_src, m_nfft);
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
template<typename T_SrcMat,typename T_FftIfc>
|
|
409
|
+
template<typename T_DestMat> inline
|
|
410
|
+
void fft_inv_proxy<T_SrcMat,T_FftIfc>::evalTo(T_DestMat& dst) const
|
|
411
|
+
{
|
|
412
|
+
m_ifc.inv( dst, m_src, m_nfft);
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
|
|
418
|
+
|
|
419
|
+
#endif
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
// This file is part of Eigen, a lightweight C++ template library
|
|
2
|
+
// for linear algebra.
|
|
3
|
+
//
|
|
4
|
+
// Copyright (C) 2008-2009 Gael Guennebaud <g.gael@free.fr>
|
|
5
|
+
//
|
|
6
|
+
// This Source Code Form is subject to the terms of the Mozilla
|
|
7
|
+
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
8
|
+
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
9
|
+
|
|
10
|
+
#ifndef EIGEN_ITERATIVE_SOLVERS_MODULE_H
|
|
11
|
+
#define EIGEN_ITERATIVE_SOLVERS_MODULE_H
|
|
12
|
+
|
|
13
|
+
#include "../../Eigen/Sparse"
|
|
14
|
+
#include "../../Eigen/Jacobi"
|
|
15
|
+
#include "../../Eigen/Householder"
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* \defgroup IterativeLinearSolvers_Module Iterative solvers module
|
|
20
|
+
* This module aims to provide various iterative linear and non linear solver algorithms.
|
|
21
|
+
* It currently provides:
|
|
22
|
+
* - a constrained conjugate gradient
|
|
23
|
+
* - a Householder GMRES implementation
|
|
24
|
+
* - an IDR(s) implementation
|
|
25
|
+
* - a DGMRES implementation
|
|
26
|
+
* - a MINRES implementation
|
|
27
|
+
*
|
|
28
|
+
* \code
|
|
29
|
+
* #include <unsupported/Eigen/IterativeSolvers>
|
|
30
|
+
* \endcode
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
|
|
35
|
+
|
|
36
|
+
#ifndef EIGEN_MPL2_ONLY
|
|
37
|
+
#include "src/IterativeSolvers/IterationController.h"
|
|
38
|
+
#include "src/IterativeSolvers/ConstrainedConjGrad.h"
|
|
39
|
+
#endif
|
|
40
|
+
|
|
41
|
+
#include "src/IterativeSolvers/IncompleteLU.h"
|
|
42
|
+
#include "src/IterativeSolvers/GMRES.h"
|
|
43
|
+
#include "src/IterativeSolvers/DGMRES.h"
|
|
44
|
+
//#include "src/IterativeSolvers/SSORPreconditioner.h"
|
|
45
|
+
#include "src/IterativeSolvers/MINRES.h"
|
|
46
|
+
#include "src/IterativeSolvers/IDRS.h"
|
|
47
|
+
|
|
48
|
+
#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
#endif // EIGEN_ITERATIVE_SOLVERS_MODULE_H
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is part of Eigen, a lightweight C++ template library
|
|
2
|
+
// for linear algebra.
|
|
3
|
+
//
|
|
4
|
+
//
|
|
5
|
+
// This Source Code Form is subject to the terms of the Mozilla
|
|
6
|
+
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
7
|
+
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
8
|
+
|
|
9
|
+
#ifndef EIGEN_KRONECKER_PRODUCT_MODULE_H
|
|
10
|
+
#define EIGEN_KRONECKER_PRODUCT_MODULE_H
|
|
11
|
+
|
|
12
|
+
#include "../../Eigen/Core"
|
|
13
|
+
|
|
14
|
+
#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
|
|
15
|
+
|
|
16
|
+
#include "../../Eigen/src/SparseCore/SparseUtil.h"
|
|
17
|
+
|
|
18
|
+
namespace Eigen {
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* \defgroup KroneckerProduct_Module KroneckerProduct module
|
|
22
|
+
*
|
|
23
|
+
* This module contains an experimental Kronecker product implementation.
|
|
24
|
+
*
|
|
25
|
+
* \code
|
|
26
|
+
* #include <Eigen/KroneckerProduct>
|
|
27
|
+
* \endcode
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
} // namespace Eigen
|
|
31
|
+
|
|
32
|
+
#include "src/KroneckerProduct/KroneckerTensorProduct.h"
|
|
33
|
+
|
|
34
|
+
#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
|
|
35
|
+
|
|
36
|
+
#endif // EIGEN_KRONECKER_PRODUCT_MODULE_H
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
// This file is part of Eigen, a lightweight C++ template library
|
|
2
|
+
// for linear algebra.
|
|
3
|
+
//
|
|
4
|
+
// Copyright (C) 2009 Thomas Capricelli <orzel@freehackers.org>
|
|
5
|
+
//
|
|
6
|
+
// This Source Code Form is subject to the terms of the Mozilla
|
|
7
|
+
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
8
|
+
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
9
|
+
|
|
10
|
+
#ifndef EIGEN_LEVENBERGMARQUARDT_MODULE
|
|
11
|
+
#define EIGEN_LEVENBERGMARQUARDT_MODULE
|
|
12
|
+
|
|
13
|
+
// #include <vector>
|
|
14
|
+
|
|
15
|
+
#include "../../Eigen/Core"
|
|
16
|
+
#include "../../Eigen/Jacobi"
|
|
17
|
+
#include "../../Eigen/QR"
|
|
18
|
+
#include "NumericalDiff"
|
|
19
|
+
|
|
20
|
+
#include "../../Eigen/SparseQR"
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* \defgroup LevenbergMarquardt_Module Levenberg-Marquardt module
|
|
24
|
+
*
|
|
25
|
+
* \code
|
|
26
|
+
* #include </Eigen/LevenbergMarquardt>
|
|
27
|
+
* \endcode
|
|
28
|
+
*
|
|
29
|
+
*
|
|
30
|
+
*/
|
|
31
|
+
|
|
32
|
+
#include "../../Eigen/SparseCore"
|
|
33
|
+
|
|
34
|
+
#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
|
|
35
|
+
|
|
36
|
+
#ifndef EIGEN_PARSED_BY_DOXYGEN
|
|
37
|
+
|
|
38
|
+
#include "src/LevenbergMarquardt/LMqrsolv.h"
|
|
39
|
+
#include "src/LevenbergMarquardt/LMcovar.h"
|
|
40
|
+
#include "src/LevenbergMarquardt/LMpar.h"
|
|
41
|
+
|
|
42
|
+
#endif
|
|
43
|
+
|
|
44
|
+
#include "src/LevenbergMarquardt/LevenbergMarquardt.h"
|
|
45
|
+
#include "src/LevenbergMarquardt/LMonestep.h"
|
|
46
|
+
|
|
47
|
+
#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
|
|
48
|
+
|
|
49
|
+
#endif // EIGEN_LEVENBERGMARQUARDT_MODULE
|