├── .github └── workflows │ └── build_wheels.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CMakeLists.txt ├── README.md ├── native ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── ext │ ├── dset │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── dset.h │ ├── eigen │ │ ├── .gitignore │ │ ├── .hgeol │ │ ├── CMakeLists.txt │ │ ├── COPYING.BSD │ │ ├── COPYING.GPL │ │ ├── COPYING.LGPL │ │ ├── COPYING.MINPACK │ │ ├── COPYING.MPL2 │ │ ├── COPYING.README │ │ ├── CTestConfig.cmake │ │ ├── CTestCustom.cmake.in │ │ ├── Eigen │ │ │ ├── CMakeLists.txt │ │ │ ├── Cholesky │ │ │ ├── CholmodSupport │ │ │ ├── Core │ │ │ ├── Dense │ │ │ ├── Eigen │ │ │ ├── Eigenvalues │ │ │ ├── Geometry │ │ │ ├── Householder │ │ │ ├── IterativeLinearSolvers │ │ │ ├── Jacobi │ │ │ ├── LU │ │ │ ├── MetisSupport │ │ │ ├── OrderingMethods │ │ │ ├── PaStiXSupport │ │ │ ├── PardisoSupport │ │ │ ├── QR │ │ │ ├── QtAlignedMalloc │ │ │ ├── SPQRSupport │ │ │ ├── SVD │ │ │ ├── Sparse │ │ │ ├── SparseCholesky │ │ │ ├── SparseCore │ │ │ ├── SparseLU │ │ │ ├── SparseQR │ │ │ ├── StdDeque │ │ │ ├── StdList │ │ │ ├── StdVector │ │ │ ├── SuperLUSupport │ │ │ ├── UmfPackSupport │ │ │ └── src │ │ │ │ ├── Cholesky │ │ │ │ ├── LDLT.h │ │ │ │ ├── LLT.h │ │ │ │ └── LLT_LAPACKE.h │ │ │ │ ├── CholmodSupport │ │ │ │ └── CholmodSupport.h │ │ │ │ ├── Core │ │ │ │ ├── Array.h │ │ │ │ ├── ArrayBase.h │ │ │ │ ├── ArrayWrapper.h │ │ │ │ ├── Assign.h │ │ │ │ ├── AssignEvaluator.h │ │ │ │ ├── Assign_MKL.h │ │ │ │ ├── BandMatrix.h │ │ │ │ ├── Block.h │ │ │ │ ├── BooleanRedux.h │ │ │ │ ├── CommaInitializer.h │ │ │ │ ├── ConditionEstimator.h │ │ │ │ ├── CoreEvaluators.h │ │ │ │ ├── CoreIterators.h │ │ │ │ ├── CwiseBinaryOp.h │ │ │ │ ├── CwiseNullaryOp.h │ │ │ │ ├── CwiseTernaryOp.h │ │ │ │ ├── CwiseUnaryOp.h │ │ │ │ ├── CwiseUnaryView.h │ │ │ │ ├── DenseBase.h │ │ │ │ ├── DenseCoeffsBase.h │ │ │ │ ├── DenseStorage.h │ │ │ │ ├── Diagonal.h │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ ├── DiagonalProduct.h │ │ │ │ ├── Dot.h │ │ │ │ ├── EigenBase.h │ │ │ │ ├── ForceAlignedAccess.h │ │ │ │ ├── Fuzzy.h │ │ │ │ ├── GeneralProduct.h │ │ │ │ ├── GenericPacketMath.h │ │ │ │ ├── GlobalFunctions.h │ │ │ │ ├── IO.h │ │ │ │ ├── Inverse.h │ │ │ │ ├── Map.h │ │ │ │ ├── MapBase.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── MathFunctionsImpl.h │ │ │ │ ├── Matrix.h │ │ │ │ ├── MatrixBase.h │ │ │ │ ├── NestByValue.h │ │ │ │ ├── NoAlias.h │ │ │ │ ├── NumTraits.h │ │ │ │ ├── PermutationMatrix.h │ │ │ │ ├── PlainObjectBase.h │ │ │ │ ├── Product.h │ │ │ │ ├── ProductEvaluators.h │ │ │ │ ├── Random.h │ │ │ │ ├── Redux.h │ │ │ │ ├── Ref.h │ │ │ │ ├── Replicate.h │ │ │ │ ├── ReturnByValue.h │ │ │ │ ├── Reverse.h │ │ │ │ ├── Select.h │ │ │ │ ├── SelfAdjointView.h │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ ├── Solve.h │ │ │ │ ├── SolveTriangular.h │ │ │ │ ├── SolverBase.h │ │ │ │ ├── StableNorm.h │ │ │ │ ├── Stride.h │ │ │ │ ├── Swap.h │ │ │ │ ├── Transpose.h │ │ │ │ ├── Transpositions.h │ │ │ │ ├── TriangularMatrix.h │ │ │ │ ├── VectorBlock.h │ │ │ │ ├── VectorwiseOp.h │ │ │ │ ├── Visitor.h │ │ │ │ ├── arch │ │ │ │ │ ├── AVX │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── AVX512 │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── CUDA │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── Half.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── Default │ │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ │ └── Settings.h │ │ │ │ │ ├── NEON │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── SSE │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ └── ZVector │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── functors │ │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ │ ├── BinaryFunctors.h │ │ │ │ │ ├── NullaryFunctors.h │ │ │ │ │ ├── StlFunctors.h │ │ │ │ │ ├── TernaryFunctors.h │ │ │ │ │ └── UnaryFunctors.h │ │ │ │ ├── products │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ │ ├── Parallelizer.h │ │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ │ └── TriangularSolverVector.h │ │ │ │ └── util │ │ │ │ │ ├── BlasUtil.h │ │ │ │ │ ├── Constants.h │ │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ │ ├── MKL_support.h │ │ │ │ │ ├── Macros.h │ │ │ │ │ ├── Memory.h │ │ │ │ │ ├── Meta.h │ │ │ │ │ ├── NonMPL2.h │ │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ │ ├── StaticAssert.h │ │ │ │ │ └── XprHelper.h │ │ │ │ ├── Eigenvalues │ │ │ │ ├── ComplexEigenSolver.h │ │ │ │ ├── ComplexSchur.h │ │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ │ ├── EigenSolver.h │ │ │ │ ├── GeneralizedEigenSolver.h │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ │ ├── HessenbergDecomposition.h │ │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ │ ├── RealQZ.h │ │ │ │ ├── RealSchur.h │ │ │ │ ├── RealSchur_LAPACKE.h │ │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ │ └── Tridiagonalization.h │ │ │ │ ├── Geometry │ │ │ │ ├── AlignedBox.h │ │ │ │ ├── AngleAxis.h │ │ │ │ ├── EulerAngles.h │ │ │ │ ├── Homogeneous.h │ │ │ │ ├── Hyperplane.h │ │ │ │ ├── OrthoMethods.h │ │ │ │ ├── ParametrizedLine.h │ │ │ │ ├── Quaternion.h │ │ │ │ ├── Rotation2D.h │ │ │ │ ├── RotationBase.h │ │ │ │ ├── Scaling.h │ │ │ │ ├── Transform.h │ │ │ │ ├── Translation.h │ │ │ │ ├── Umeyama.h │ │ │ │ └── arch │ │ │ │ │ └── Geometry_SSE.h │ │ │ │ ├── Householder │ │ │ │ ├── BlockHouseholder.h │ │ │ │ ├── Householder.h │ │ │ │ └── HouseholderSequence.h │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ ├── BasicPreconditioners.h │ │ │ │ ├── BiCGSTAB.h │ │ │ │ ├── ConjugateGradient.h │ │ │ │ ├── IncompleteCholesky.h │ │ │ │ ├── IncompleteLUT.h │ │ │ │ ├── IterativeSolverBase.h │ │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ │ └── SolveWithGuess.h │ │ │ │ ├── Jacobi │ │ │ │ └── Jacobi.h │ │ │ │ ├── LU │ │ │ │ ├── Determinant.h │ │ │ │ ├── FullPivLU.h │ │ │ │ ├── InverseImpl.h │ │ │ │ ├── PartialPivLU.h │ │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ │ └── arch │ │ │ │ │ └── Inverse_SSE.h │ │ │ │ ├── MetisSupport │ │ │ │ └── MetisSupport.h │ │ │ │ ├── OrderingMethods │ │ │ │ ├── Amd.h │ │ │ │ ├── Eigen_Colamd.h │ │ │ │ └── Ordering.h │ │ │ │ ├── PaStiXSupport │ │ │ │ └── PaStiXSupport.h │ │ │ │ ├── PardisoSupport │ │ │ │ └── PardisoSupport.h │ │ │ │ ├── QR │ │ │ │ ├── ColPivHouseholderQR.h │ │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ │ ├── FullPivHouseholderQR.h │ │ │ │ ├── HouseholderQR.h │ │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ │ ├── SPQRSupport │ │ │ │ └── SuiteSparseQRSupport.h │ │ │ │ ├── SVD │ │ │ │ ├── BDCSVD.h │ │ │ │ ├── JacobiSVD.h │ │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ │ ├── SVDBase.h │ │ │ │ └── UpperBidiagonalization.h │ │ │ │ ├── SparseCholesky │ │ │ │ ├── SimplicialCholesky.h │ │ │ │ └── SimplicialCholesky_impl.h │ │ │ │ ├── SparseCore │ │ │ │ ├── AmbiVector.h │ │ │ │ ├── CompressedStorage.h │ │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ │ ├── MappedSparseMatrix.h │ │ │ │ ├── SparseAssign.h │ │ │ │ ├── SparseBlock.h │ │ │ │ ├── SparseColEtree.h │ │ │ │ ├── SparseCompressedBase.h │ │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ │ ├── SparseDenseProduct.h │ │ │ │ ├── SparseDiagonalProduct.h │ │ │ │ ├── SparseDot.h │ │ │ │ ├── SparseFuzzy.h │ │ │ │ ├── SparseMap.h │ │ │ │ ├── SparseMatrix.h │ │ │ │ ├── SparseMatrixBase.h │ │ │ │ ├── SparsePermutation.h │ │ │ │ ├── SparseProduct.h │ │ │ │ ├── SparseRedux.h │ │ │ │ ├── SparseRef.h │ │ │ │ ├── SparseSelfAdjointView.h │ │ │ │ ├── SparseSolverBase.h │ │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ │ ├── SparseTranspose.h │ │ │ │ ├── SparseTriangularView.h │ │ │ │ ├── SparseUtil.h │ │ │ │ ├── SparseVector.h │ │ │ │ ├── SparseView.h │ │ │ │ └── TriangularSolver.h │ │ │ │ ├── SparseLU │ │ │ │ ├── SparseLU.h │ │ │ │ ├── SparseLUImpl.h │ │ │ │ ├── SparseLU_Memory.h │ │ │ │ ├── SparseLU_Structs.h │ │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ │ ├── SparseLU_Utils.h │ │ │ │ ├── SparseLU_column_bmod.h │ │ │ │ ├── SparseLU_column_dfs.h │ │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ │ ├── SparseLU_panel_bmod.h │ │ │ │ ├── SparseLU_panel_dfs.h │ │ │ │ ├── SparseLU_pivotL.h │ │ │ │ ├── SparseLU_pruneL.h │ │ │ │ └── SparseLU_relax_snode.h │ │ │ │ ├── SparseQR │ │ │ │ └── SparseQR.h │ │ │ │ ├── StlSupport │ │ │ │ ├── StdDeque.h │ │ │ │ ├── StdList.h │ │ │ │ ├── StdVector.h │ │ │ │ └── details.h │ │ │ │ ├── SuperLUSupport │ │ │ │ └── SuperLUSupport.h │ │ │ │ ├── UmfPackSupport │ │ │ │ └── UmfPackSupport.h │ │ │ │ ├── misc │ │ │ │ ├── Image.h │ │ │ │ ├── Kernel.h │ │ │ │ ├── RealSvd2x2.h │ │ │ │ ├── blas.h │ │ │ │ ├── lapack.h │ │ │ │ ├── lapacke.h │ │ │ │ └── lapacke_mangling.h │ │ │ │ └── plugins │ │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ │ ├── BlockMethods.h │ │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ │ └── MatrixCwiseUnaryOps.h │ │ ├── INSTALL │ │ ├── README.md │ │ ├── bench │ │ │ ├── BenchSparseUtil.h │ │ │ ├── BenchTimer.h │ │ │ ├── BenchUtil.h │ │ │ ├── README.txt │ │ │ ├── analyze-blocking-sizes.cpp │ │ │ ├── basicbench.cxxlist │ │ │ ├── basicbenchmark.cpp │ │ │ ├── basicbenchmark.h │ │ │ ├── benchBlasGemm.cpp │ │ │ ├── benchCholesky.cpp │ │ │ ├── benchEigenSolver.cpp │ │ │ ├── benchFFT.cpp │ │ │ ├── benchGeometry.cpp │ │ │ ├── benchVecAdd.cpp │ │ │ ├── bench_gemm.cpp │ │ │ ├── bench_multi_compilers.sh │ │ │ ├── bench_norm.cpp │ │ │ ├── bench_reverse.cpp │ │ │ ├── bench_sum.cpp │ │ │ ├── bench_unrolling │ │ │ ├── benchmark-blocking-sizes.cpp │ │ │ ├── benchmark.cpp │ │ │ ├── benchmarkSlice.cpp │ │ │ ├── benchmarkX.cpp │ │ │ ├── benchmarkXcwise.cpp │ │ │ ├── benchmark_suite │ │ │ ├── btl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── COPYING │ │ │ │ ├── README │ │ │ │ ├── actions │ │ │ │ │ ├── action_aat_product.hh │ │ │ │ │ ├── action_ata_product.hh │ │ │ │ │ ├── action_atv_product.hh │ │ │ │ │ ├── action_axpby.hh │ │ │ │ │ ├── action_axpy.hh │ │ │ │ │ ├── action_cholesky.hh │ │ │ │ │ ├── action_ger.hh │ │ │ │ │ ├── action_hessenberg.hh │ │ │ │ │ ├── action_lu_decomp.hh │ │ │ │ │ ├── action_lu_solve.hh │ │ │ │ │ ├── action_matrix_matrix_product.hh │ │ │ │ │ ├── action_matrix_matrix_product_bis.hh │ │ │ │ │ ├── action_matrix_vector_product.hh │ │ │ │ │ ├── action_partial_lu.hh │ │ │ │ │ ├── action_rot.hh │ │ │ │ │ ├── action_symv.hh │ │ │ │ │ ├── action_syr2.hh │ │ │ │ │ ├── action_trisolve.hh │ │ │ │ │ ├── action_trisolve_matrix.hh │ │ │ │ │ ├── action_trmm.hh │ │ │ │ │ └── basic_actions.hh │ │ │ │ ├── cmake │ │ │ │ │ ├── FindACML.cmake │ │ │ │ │ ├── FindATLAS.cmake │ │ │ │ │ ├── FindBLAZE.cmake │ │ │ │ │ ├── FindBlitz.cmake │ │ │ │ │ ├── FindCBLAS.cmake │ │ │ │ │ ├── FindGMM.cmake │ │ │ │ │ ├── FindMKL.cmake │ │ │ │ │ ├── FindMTL4.cmake │ │ │ │ │ ├── FindOPENBLAS.cmake │ │ │ │ │ ├── FindPackageHandleStandardArgs.cmake │ │ │ │ │ ├── FindTvmet.cmake │ │ │ │ │ └── MacroOptionalAddSubdirectory.cmake │ │ │ │ ├── data │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── action_settings.txt │ │ │ │ │ ├── gnuplot_common_settings.hh │ │ │ │ │ ├── go_mean │ │ │ │ │ ├── mean.cxx │ │ │ │ │ ├── mk_gnuplot_script.sh │ │ │ │ │ ├── mk_mean_script.sh │ │ │ │ │ ├── mk_new_gnuplot.sh │ │ │ │ │ ├── perlib_plot_settings.txt │ │ │ │ │ ├── regularize.cxx │ │ │ │ │ ├── smooth.cxx │ │ │ │ │ └── smooth_all.sh │ │ │ │ ├── generic_bench │ │ │ │ │ ├── bench.hh │ │ │ │ │ ├── bench_parameter.hh │ │ │ │ │ ├── btl.hh │ │ │ │ │ ├── init │ │ │ │ │ │ ├── init_function.hh │ │ │ │ │ │ ├── init_matrix.hh │ │ │ │ │ │ └── init_vector.hh │ │ │ │ │ ├── static │ │ │ │ │ │ ├── bench_static.hh │ │ │ │ │ │ ├── intel_bench_fixed_size.hh │ │ │ │ │ │ └── static_size_generator.hh │ │ │ │ │ ├── timers │ │ │ │ │ │ ├── STL_perf_analyzer.hh │ │ │ │ │ │ ├── STL_timer.hh │ │ │ │ │ │ ├── mixed_perf_analyzer.hh │ │ │ │ │ │ ├── portable_perf_analyzer.hh │ │ │ │ │ │ ├── portable_perf_analyzer_old.hh │ │ │ │ │ │ ├── portable_timer.hh │ │ │ │ │ │ ├── x86_perf_analyzer.hh │ │ │ │ │ │ └── x86_timer.hh │ │ │ │ │ └── utils │ │ │ │ │ │ ├── size_lin_log.hh │ │ │ │ │ │ ├── size_log.hh │ │ │ │ │ │ ├── utilities.h │ │ │ │ │ │ └── xy_file.hh │ │ │ │ └── libs │ │ │ │ │ ├── BLAS │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── blas.h │ │ │ │ │ ├── blas_interface.hh │ │ │ │ │ ├── blas_interface_impl.hh │ │ │ │ │ ├── c_interface_base.h │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── STL │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── STL_interface.hh │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── blaze │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── blaze_interface.hh │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── blitz │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── blitz_LU_solve_interface.hh │ │ │ │ │ ├── blitz_interface.hh │ │ │ │ │ ├── btl_blitz.cpp │ │ │ │ │ ├── btl_tiny_blitz.cpp │ │ │ │ │ └── tiny_blitz_interface.hh │ │ │ │ │ ├── eigen2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── btl_tiny_eigen2.cpp │ │ │ │ │ ├── eigen2_interface.hh │ │ │ │ │ ├── main_adv.cpp │ │ │ │ │ ├── main_linear.cpp │ │ │ │ │ ├── main_matmat.cpp │ │ │ │ │ └── main_vecmat.cpp │ │ │ │ │ ├── eigen3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── btl_tiny_eigen3.cpp │ │ │ │ │ ├── eigen3_interface.hh │ │ │ │ │ ├── main_adv.cpp │ │ │ │ │ ├── main_linear.cpp │ │ │ │ │ ├── main_matmat.cpp │ │ │ │ │ └── main_vecmat.cpp │ │ │ │ │ ├── gmm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gmm_LU_solve_interface.hh │ │ │ │ │ ├── gmm_interface.hh │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── mtl4 │ │ │ │ │ ├── .kdbgrc.main │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── mtl4_LU_solve_interface.hh │ │ │ │ │ └── mtl4_interface.hh │ │ │ │ │ ├── tensors │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main_linear.cpp │ │ │ │ │ ├── main_matmat.cpp │ │ │ │ │ ├── main_vecmat.cpp │ │ │ │ │ └── tensor_interface.hh │ │ │ │ │ ├── tvmet │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── tvmet_interface.hh │ │ │ │ │ └── ublas │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── ublas_interface.hh │ │ │ ├── check_cache_queries.cpp │ │ │ ├── dense_solvers.cpp │ │ │ ├── eig33.cpp │ │ │ ├── geometry.cpp │ │ │ ├── perf_monitoring │ │ │ │ └── gemm │ │ │ │ │ ├── changesets.txt │ │ │ │ │ ├── gemm.cpp │ │ │ │ │ ├── gemm_settings.txt │ │ │ │ │ ├── lazy_gemm.cpp │ │ │ │ │ ├── lazy_gemm_settings.txt │ │ │ │ │ ├── make_plot.sh │ │ │ │ │ └── run.sh │ │ │ ├── product_threshold.cpp │ │ │ ├── quat_slerp.cpp │ │ │ ├── quatmul.cpp │ │ │ ├── sparse_cholesky.cpp │ │ │ ├── sparse_dense_product.cpp │ │ │ ├── sparse_lu.cpp │ │ │ ├── sparse_product.cpp │ │ │ ├── sparse_randomsetter.cpp │ │ │ ├── sparse_setter.cpp │ │ │ ├── sparse_transpose.cpp │ │ │ ├── sparse_trisolver.cpp │ │ │ ├── spbench │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── sp_solver.cpp │ │ │ │ ├── spbench.dtd │ │ │ │ ├── spbenchsolver.cpp │ │ │ │ ├── spbenchsolver.h │ │ │ │ ├── spbenchstyle.h │ │ │ │ └── test_sparseLU.cpp │ │ │ ├── spmv.cpp │ │ │ ├── tensors │ │ │ │ ├── README │ │ │ │ ├── benchmark.h │ │ │ │ ├── benchmark_main.cc │ │ │ │ ├── contraction_benchmarks_cpu.cc │ │ │ │ ├── tensor_benchmarks.h │ │ │ │ ├── tensor_benchmarks_cpu.cc │ │ │ │ ├── tensor_benchmarks_fp16_gpu.cu │ │ │ │ ├── tensor_benchmarks_gpu.cu │ │ │ │ └── tensor_benchmarks_sycl.cc │ │ │ └── vdw_new.cpp │ │ ├── blas │ │ │ ├── BandTriangularSolver.h │ │ │ ├── CMakeLists.txt │ │ │ ├── GeneralRank1Update.h │ │ │ ├── PackedSelfadjointProduct.h │ │ │ ├── PackedTriangularMatrixVector.h │ │ │ ├── PackedTriangularSolverVector.h │ │ │ ├── README.txt │ │ │ ├── Rank2Update.h │ │ │ ├── common.h │ │ │ ├── complex_double.cpp │ │ │ ├── complex_single.cpp │ │ │ ├── double.cpp │ │ │ ├── f2c │ │ │ │ ├── chbmv.c │ │ │ │ ├── chpmv.c │ │ │ │ ├── complexdots.c │ │ │ │ ├── ctbmv.c │ │ │ │ ├── d_cnjg.c │ │ │ │ ├── datatypes.h │ │ │ │ ├── drotm.c │ │ │ │ ├── drotmg.c │ │ │ │ ├── dsbmv.c │ │ │ │ ├── dspmv.c │ │ │ │ ├── dtbmv.c │ │ │ │ ├── lsame.c │ │ │ │ ├── r_cnjg.c │ │ │ │ ├── srotm.c │ │ │ │ ├── srotmg.c │ │ │ │ ├── ssbmv.c │ │ │ │ ├── sspmv.c │ │ │ │ ├── stbmv.c │ │ │ │ ├── zhbmv.c │ │ │ │ ├── zhpmv.c │ │ │ │ └── ztbmv.c │ │ │ ├── fortran │ │ │ │ └── complexdots.f │ │ │ ├── level1_cplx_impl.h │ │ │ ├── level1_impl.h │ │ │ ├── level1_real_impl.h │ │ │ ├── level2_cplx_impl.h │ │ │ ├── level2_impl.h │ │ │ ├── level2_real_impl.h │ │ │ ├── level3_impl.h │ │ │ ├── single.cpp │ │ │ ├── testing │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── cblat1.f │ │ │ │ ├── cblat2.dat │ │ │ │ ├── cblat2.f │ │ │ │ ├── cblat3.dat │ │ │ │ ├── cblat3.f │ │ │ │ ├── dblat1.f │ │ │ │ ├── dblat2.dat │ │ │ │ ├── dblat2.f │ │ │ │ ├── dblat3.dat │ │ │ │ ├── dblat3.f │ │ │ │ ├── runblastest.sh │ │ │ │ ├── sblat1.f │ │ │ │ ├── sblat2.dat │ │ │ │ ├── sblat2.f │ │ │ │ ├── sblat3.dat │ │ │ │ ├── sblat3.f │ │ │ │ ├── zblat1.f │ │ │ │ ├── zblat2.dat │ │ │ │ ├── zblat2.f │ │ │ │ ├── zblat3.dat │ │ │ │ └── zblat3.f │ │ │ └── xerbla.cpp │ │ ├── cmake │ │ │ ├── Eigen3Config.cmake.in │ │ │ ├── Eigen3ConfigLegacy.cmake.in │ │ │ ├── EigenConfigureTesting.cmake │ │ │ ├── EigenDetermineOSVersion.cmake │ │ │ ├── EigenDetermineVSServicePack.cmake │ │ │ ├── EigenTesting.cmake │ │ │ ├── EigenUninstall.cmake │ │ │ ├── FindAdolc.cmake │ │ │ ├── FindBLAS.cmake │ │ │ ├── FindBLASEXT.cmake │ │ │ ├── FindCholmod.cmake │ │ │ ├── FindComputeCpp.cmake │ │ │ ├── FindEigen2.cmake │ │ │ ├── FindEigen3.cmake │ │ │ ├── FindFFTW.cmake │ │ │ ├── FindGLEW.cmake │ │ │ ├── FindGMP.cmake │ │ │ ├── FindGSL.cmake │ │ │ ├── FindGoogleHash.cmake │ │ │ ├── FindHWLOC.cmake │ │ │ ├── FindLAPACK.cmake │ │ │ ├── FindMPFR.cmake │ │ │ ├── FindMetis.cmake │ │ │ ├── FindPTSCOTCH.cmake │ │ │ ├── FindPastix.cmake │ │ │ ├── FindSPQR.cmake │ │ │ ├── FindScotch.cmake │ │ │ ├── FindStandardMathLibrary.cmake │ │ │ ├── FindSuperLU.cmake │ │ │ ├── FindUmfpack.cmake │ │ │ ├── RegexUtils.cmake │ │ │ ├── UseEigen3.cmake │ │ │ └── language_support.cmake │ │ ├── debug │ │ │ ├── gdb │ │ │ │ ├── __init__.py │ │ │ │ └── printers.py │ │ │ └── msvc │ │ │ │ ├── eigen.natvis │ │ │ │ └── eigen_autoexp_part.dat │ │ ├── demos │ │ │ ├── CMakeLists.txt │ │ │ ├── mandelbrot │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README │ │ │ │ ├── mandelbrot.cpp │ │ │ │ └── mandelbrot.h │ │ │ ├── mix_eigen_and_c │ │ │ │ ├── README │ │ │ │ ├── binary_library.cpp │ │ │ │ ├── binary_library.h │ │ │ │ └── example.c │ │ │ └── opengl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README │ │ │ │ ├── camera.cpp │ │ │ │ ├── camera.h │ │ │ │ ├── gpuhelper.cpp │ │ │ │ ├── gpuhelper.h │ │ │ │ ├── icosphere.cpp │ │ │ │ ├── icosphere.h │ │ │ │ ├── quaternion_demo.cpp │ │ │ │ ├── quaternion_demo.h │ │ │ │ ├── trackball.cpp │ │ │ │ └── trackball.h │ │ ├── doc │ │ │ ├── A05_PortingFrom2To3.dox │ │ │ ├── AsciiQuickReference.txt │ │ │ ├── B01_Experimental.dox │ │ │ ├── CMakeLists.txt │ │ │ ├── ClassHierarchy.dox │ │ │ ├── CoeffwiseMathFunctionsTable.dox │ │ │ ├── CustomizingEigen_CustomScalar.dox │ │ │ ├── CustomizingEigen_InheritingMatrix.dox │ │ │ ├── CustomizingEigen_NullaryExpr.dox │ │ │ ├── CustomizingEigen_Plugins.dox │ │ │ ├── DenseDecompositionBenchmark.dox │ │ │ ├── Doxyfile.in │ │ │ ├── Eigen_Silly_Professor_64x64.png │ │ │ ├── FixedSizeVectorizable.dox │ │ │ ├── FunctionsTakingEigenTypes.dox │ │ │ ├── HiPerformance.dox │ │ │ ├── InplaceDecomposition.dox │ │ │ ├── InsideEigenExample.dox │ │ │ ├── LeastSquares.dox │ │ │ ├── Manual.dox │ │ │ ├── MatrixfreeSolverExample.dox │ │ │ ├── NewExpressionType.dox │ │ │ ├── Overview.dox │ │ │ ├── PassingByValue.dox │ │ │ ├── Pitfalls.dox │ │ │ ├── PreprocessorDirectives.dox │ │ │ ├── QuickReference.dox │ │ │ ├── QuickStartGuide.dox │ │ │ ├── SparseLinearSystems.dox │ │ │ ├── SparseQuickReference.dox │ │ │ ├── StlContainers.dox │ │ │ ├── StorageOrders.dox │ │ │ ├── StructHavingEigenMembers.dox │ │ │ ├── TemplateKeyword.dox │ │ │ ├── TopicAliasing.dox │ │ │ ├── TopicAssertions.dox │ │ │ ├── TopicCMakeGuide.dox │ │ │ ├── TopicEigenExpressionTemplates.dox │ │ │ ├── TopicLazyEvaluation.dox │ │ │ ├── TopicLinearAlgebraDecompositions.dox │ │ │ ├── TopicMultithreading.dox │ │ │ ├── TopicResizing.dox │ │ │ ├── TopicScalarTypes.dox │ │ │ ├── TopicVectorization.dox │ │ │ ├── TutorialAdvancedInitialization.dox │ │ │ ├── TutorialArrayClass.dox │ │ │ ├── TutorialBlockOperations.dox │ │ │ ├── TutorialGeometry.dox │ │ │ ├── TutorialLinearAlgebra.dox │ │ │ ├── TutorialMapClass.dox │ │ │ ├── TutorialMatrixArithmetic.dox │ │ │ ├── TutorialMatrixClass.dox │ │ │ ├── TutorialReductionsVisitorsBroadcasting.dox │ │ │ ├── TutorialReshapeSlicing.dox │ │ │ ├── TutorialSparse.dox │ │ │ ├── TutorialSparse_example_details.dox │ │ │ ├── UnalignedArrayAssert.dox │ │ │ ├── UsingBlasLapackBackends.dox │ │ │ ├── UsingIntelMKL.dox │ │ │ ├── UsingNVCC.dox │ │ │ ├── WrongStackAlignment.dox │ │ │ ├── eigen_navtree_hacks.js │ │ │ ├── eigendoxy.css │ │ │ ├── eigendoxy_footer.html.in │ │ │ ├── eigendoxy_header.html.in │ │ │ ├── eigendoxy_layout.xml.in │ │ │ ├── eigendoxy_tabs.css │ │ │ ├── examples │ │ │ │ ├── .krazy │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CustomizingEigen_Inheritance.cpp │ │ │ │ ├── Cwise_erf.cpp │ │ │ │ ├── Cwise_erfc.cpp │ │ │ │ ├── Cwise_lgamma.cpp │ │ │ │ ├── DenseBase_middleCols_int.cpp │ │ │ │ ├── DenseBase_middleRows_int.cpp │ │ │ │ ├── DenseBase_template_int_middleCols.cpp │ │ │ │ ├── DenseBase_template_int_middleRows.cpp │ │ │ │ ├── QuickStart_example.cpp │ │ │ │ ├── QuickStart_example2_dynamic.cpp │ │ │ │ ├── QuickStart_example2_fixed.cpp │ │ │ │ ├── TemplateKeyword_flexible.cpp │ │ │ │ ├── TemplateKeyword_simple.cpp │ │ │ │ ├── TutorialInplaceLU.cpp │ │ │ │ ├── TutorialLinAlgComputeTwice.cpp │ │ │ │ ├── TutorialLinAlgExComputeSolveError.cpp │ │ │ │ ├── TutorialLinAlgExSolveColPivHouseholderQR.cpp │ │ │ │ ├── TutorialLinAlgExSolveLDLT.cpp │ │ │ │ ├── TutorialLinAlgInverseDeterminant.cpp │ │ │ │ ├── TutorialLinAlgRankRevealing.cpp │ │ │ │ ├── TutorialLinAlgSVDSolve.cpp │ │ │ │ ├── TutorialLinAlgSelfAdjointEigenSolver.cpp │ │ │ │ ├── TutorialLinAlgSetThreshold.cpp │ │ │ │ ├── Tutorial_ArrayClass_accessors.cpp │ │ │ │ ├── Tutorial_ArrayClass_addition.cpp │ │ │ │ ├── Tutorial_ArrayClass_cwise_other.cpp │ │ │ │ ├── Tutorial_ArrayClass_interop.cpp │ │ │ │ ├── Tutorial_ArrayClass_interop_matrix.cpp │ │ │ │ ├── Tutorial_ArrayClass_mult.cpp │ │ │ │ ├── Tutorial_BlockOperations_block_assignment.cpp │ │ │ │ ├── Tutorial_BlockOperations_colrow.cpp │ │ │ │ ├── Tutorial_BlockOperations_corner.cpp │ │ │ │ ├── Tutorial_BlockOperations_print_block.cpp │ │ │ │ ├── Tutorial_BlockOperations_vector.cpp │ │ │ │ ├── Tutorial_PartialLU_solve.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp │ │ │ │ ├── Tutorial_simple_example_dynamic_size.cpp │ │ │ │ ├── Tutorial_simple_example_fixed_size.cpp │ │ │ │ ├── class_Block.cpp │ │ │ │ ├── class_CwiseBinaryOp.cpp │ │ │ │ ├── class_CwiseUnaryOp.cpp │ │ │ │ ├── class_CwiseUnaryOp_ptrfun.cpp │ │ │ │ ├── class_FixedBlock.cpp │ │ │ │ ├── class_FixedVectorBlock.cpp │ │ │ │ ├── class_VectorBlock.cpp │ │ │ │ ├── function_taking_eigenbase.cpp │ │ │ │ ├── function_taking_ref.cpp │ │ │ │ ├── make_circulant.cpp │ │ │ │ ├── make_circulant.cpp.entry │ │ │ │ ├── make_circulant.cpp.evaluator │ │ │ │ ├── make_circulant.cpp.expression │ │ │ │ ├── make_circulant.cpp.main │ │ │ │ ├── make_circulant.cpp.preamble │ │ │ │ ├── make_circulant.cpp.traits │ │ │ │ ├── make_circulant2.cpp │ │ │ │ ├── matrixfree_cg.cpp │ │ │ │ ├── nullary_indexing.cpp │ │ │ │ ├── tut_arithmetic_add_sub.cpp │ │ │ │ ├── tut_arithmetic_dot_cross.cpp │ │ │ │ ├── tut_arithmetic_matrix_mul.cpp │ │ │ │ ├── tut_arithmetic_redux_basic.cpp │ │ │ │ ├── tut_arithmetic_scalar_mul_div.cpp │ │ │ │ ├── tut_matrix_coefficient_accessors.cpp │ │ │ │ ├── tut_matrix_resize.cpp │ │ │ │ └── tut_matrix_resize_fixed_size.cpp │ │ │ ├── ftv2node.png │ │ │ ├── ftv2pnode.png │ │ │ ├── snippets │ │ │ │ ├── .krazy │ │ │ │ ├── AngleAxis_mimic_euler.cpp │ │ │ │ ├── BiCGSTAB_simple.cpp │ │ │ │ ├── BiCGSTAB_step_by_step.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ColPivHouseholderQR_solve.cpp │ │ │ │ ├── ComplexEigenSolver_compute.cpp │ │ │ │ ├── ComplexEigenSolver_eigenvalues.cpp │ │ │ │ ├── ComplexEigenSolver_eigenvectors.cpp │ │ │ │ ├── ComplexSchur_compute.cpp │ │ │ │ ├── ComplexSchur_matrixT.cpp │ │ │ │ ├── ComplexSchur_matrixU.cpp │ │ │ │ ├── Cwise_abs.cpp │ │ │ │ ├── Cwise_abs2.cpp │ │ │ │ ├── Cwise_acos.cpp │ │ │ │ ├── Cwise_arg.cpp │ │ │ │ ├── Cwise_array_power_array.cpp │ │ │ │ ├── Cwise_asin.cpp │ │ │ │ ├── Cwise_atan.cpp │ │ │ │ ├── Cwise_boolean_and.cpp │ │ │ │ ├── Cwise_boolean_not.cpp │ │ │ │ ├── Cwise_boolean_or.cpp │ │ │ │ ├── Cwise_boolean_xor.cpp │ │ │ │ ├── Cwise_ceil.cpp │ │ │ │ ├── Cwise_cos.cpp │ │ │ │ ├── Cwise_cosh.cpp │ │ │ │ ├── Cwise_cube.cpp │ │ │ │ ├── Cwise_equal_equal.cpp │ │ │ │ ├── Cwise_exp.cpp │ │ │ │ ├── Cwise_floor.cpp │ │ │ │ ├── Cwise_greater.cpp │ │ │ │ ├── Cwise_greater_equal.cpp │ │ │ │ ├── Cwise_inverse.cpp │ │ │ │ ├── Cwise_isFinite.cpp │ │ │ │ ├── Cwise_isInf.cpp │ │ │ │ ├── Cwise_isNaN.cpp │ │ │ │ ├── Cwise_less.cpp │ │ │ │ ├── Cwise_less_equal.cpp │ │ │ │ ├── Cwise_log.cpp │ │ │ │ ├── Cwise_log10.cpp │ │ │ │ ├── Cwise_max.cpp │ │ │ │ ├── Cwise_min.cpp │ │ │ │ ├── Cwise_minus.cpp │ │ │ │ ├── Cwise_minus_equal.cpp │ │ │ │ ├── Cwise_not_equal.cpp │ │ │ │ ├── Cwise_plus.cpp │ │ │ │ ├── Cwise_plus_equal.cpp │ │ │ │ ├── Cwise_pow.cpp │ │ │ │ ├── Cwise_product.cpp │ │ │ │ ├── Cwise_quotient.cpp │ │ │ │ ├── Cwise_round.cpp │ │ │ │ ├── Cwise_scalar_power_array.cpp │ │ │ │ ├── Cwise_sign.cpp │ │ │ │ ├── Cwise_sin.cpp │ │ │ │ ├── Cwise_sinh.cpp │ │ │ │ ├── Cwise_slash_equal.cpp │ │ │ │ ├── Cwise_sqrt.cpp │ │ │ │ ├── Cwise_square.cpp │ │ │ │ ├── Cwise_tan.cpp │ │ │ │ ├── Cwise_tanh.cpp │ │ │ │ ├── Cwise_times_equal.cpp │ │ │ │ ├── DenseBase_LinSpaced.cpp │ │ │ │ ├── DenseBase_LinSpacedInt.cpp │ │ │ │ ├── DenseBase_LinSpaced_seq.cpp │ │ │ │ ├── DenseBase_setLinSpaced.cpp │ │ │ │ ├── DirectionWise_hnormalized.cpp │ │ │ │ ├── DirectionWise_replicate.cpp │ │ │ │ ├── DirectionWise_replicate_int.cpp │ │ │ │ ├── EigenSolver_EigenSolver_MatrixType.cpp │ │ │ │ ├── EigenSolver_compute.cpp │ │ │ │ ├── EigenSolver_eigenvalues.cpp │ │ │ │ ├── EigenSolver_eigenvectors.cpp │ │ │ │ ├── EigenSolver_pseudoEigenvectors.cpp │ │ │ │ ├── FullPivHouseholderQR_solve.cpp │ │ │ │ ├── FullPivLU_image.cpp │ │ │ │ ├── FullPivLU_kernel.cpp │ │ │ │ ├── FullPivLU_solve.cpp │ │ │ │ ├── GeneralizedEigenSolver.cpp │ │ │ │ ├── HessenbergDecomposition_compute.cpp │ │ │ │ ├── HessenbergDecomposition_matrixH.cpp │ │ │ │ ├── HessenbergDecomposition_packedMatrix.cpp │ │ │ │ ├── HouseholderQR_householderQ.cpp │ │ │ │ ├── HouseholderQR_solve.cpp │ │ │ │ ├── HouseholderSequence_HouseholderSequence.cpp │ │ │ │ ├── IOFormat.cpp │ │ │ │ ├── JacobiSVD_basic.cpp │ │ │ │ ├── Jacobi_makeGivens.cpp │ │ │ │ ├── Jacobi_makeJacobi.cpp │ │ │ │ ├── LLT_example.cpp │ │ │ │ ├── LLT_solve.cpp │ │ │ │ ├── LeastSquaresNormalEquations.cpp │ │ │ │ ├── LeastSquaresQR.cpp │ │ │ │ ├── Map_general_stride.cpp │ │ │ │ ├── Map_inner_stride.cpp │ │ │ │ ├── Map_outer_stride.cpp │ │ │ │ ├── Map_placement_new.cpp │ │ │ │ ├── Map_simple.cpp │ │ │ │ ├── MatrixBase_adjoint.cpp │ │ │ │ ├── MatrixBase_all.cpp │ │ │ │ ├── MatrixBase_applyOnTheLeft.cpp │ │ │ │ ├── MatrixBase_applyOnTheRight.cpp │ │ │ │ ├── MatrixBase_array.cpp │ │ │ │ ├── MatrixBase_array_const.cpp │ │ │ │ ├── MatrixBase_asDiagonal.cpp │ │ │ │ ├── MatrixBase_block_int_int.cpp │ │ │ │ ├── MatrixBase_block_int_int_int_int.cpp │ │ │ │ ├── MatrixBase_bottomLeftCorner_int_int.cpp │ │ │ │ ├── MatrixBase_bottomRightCorner_int_int.cpp │ │ │ │ ├── MatrixBase_bottomRows_int.cpp │ │ │ │ ├── MatrixBase_cast.cpp │ │ │ │ ├── MatrixBase_col.cpp │ │ │ │ ├── MatrixBase_colwise.cpp │ │ │ │ ├── MatrixBase_computeInverseAndDetWithCheck.cpp │ │ │ │ ├── MatrixBase_computeInverseWithCheck.cpp │ │ │ │ ├── MatrixBase_cwiseAbs.cpp │ │ │ │ ├── MatrixBase_cwiseAbs2.cpp │ │ │ │ ├── MatrixBase_cwiseEqual.cpp │ │ │ │ ├── MatrixBase_cwiseInverse.cpp │ │ │ │ ├── MatrixBase_cwiseMax.cpp │ │ │ │ ├── MatrixBase_cwiseMin.cpp │ │ │ │ ├── MatrixBase_cwiseNotEqual.cpp │ │ │ │ ├── MatrixBase_cwiseProduct.cpp │ │ │ │ ├── MatrixBase_cwiseQuotient.cpp │ │ │ │ ├── MatrixBase_cwiseSign.cpp │ │ │ │ ├── MatrixBase_cwiseSqrt.cpp │ │ │ │ ├── MatrixBase_diagonal.cpp │ │ │ │ ├── MatrixBase_diagonal_int.cpp │ │ │ │ ├── MatrixBase_diagonal_template_int.cpp │ │ │ │ ├── MatrixBase_eigenvalues.cpp │ │ │ │ ├── MatrixBase_end_int.cpp │ │ │ │ ├── MatrixBase_eval.cpp │ │ │ │ ├── MatrixBase_fixedBlock_int_int.cpp │ │ │ │ ├── MatrixBase_hnormalized.cpp │ │ │ │ ├── MatrixBase_homogeneous.cpp │ │ │ │ ├── MatrixBase_identity.cpp │ │ │ │ ├── MatrixBase_identity_int_int.cpp │ │ │ │ ├── MatrixBase_inverse.cpp │ │ │ │ ├── MatrixBase_isDiagonal.cpp │ │ │ │ ├── MatrixBase_isIdentity.cpp │ │ │ │ ├── MatrixBase_isOnes.cpp │ │ │ │ ├── MatrixBase_isOrthogonal.cpp │ │ │ │ ├── MatrixBase_isUnitary.cpp │ │ │ │ ├── MatrixBase_isZero.cpp │ │ │ │ ├── MatrixBase_leftCols_int.cpp │ │ │ │ ├── MatrixBase_noalias.cpp │ │ │ │ ├── MatrixBase_ones.cpp │ │ │ │ ├── MatrixBase_ones_int.cpp │ │ │ │ ├── MatrixBase_ones_int_int.cpp │ │ │ │ ├── MatrixBase_operatorNorm.cpp │ │ │ │ ├── MatrixBase_prod.cpp │ │ │ │ ├── MatrixBase_random.cpp │ │ │ │ ├── MatrixBase_random_int.cpp │ │ │ │ ├── MatrixBase_random_int_int.cpp │ │ │ │ ├── MatrixBase_replicate.cpp │ │ │ │ ├── MatrixBase_replicate_int_int.cpp │ │ │ │ ├── MatrixBase_reverse.cpp │ │ │ │ ├── MatrixBase_rightCols_int.cpp │ │ │ │ ├── MatrixBase_row.cpp │ │ │ │ ├── MatrixBase_rowwise.cpp │ │ │ │ ├── MatrixBase_segment_int_int.cpp │ │ │ │ ├── MatrixBase_select.cpp │ │ │ │ ├── MatrixBase_selfadjointView.cpp │ │ │ │ ├── MatrixBase_set.cpp │ │ │ │ ├── MatrixBase_setIdentity.cpp │ │ │ │ ├── MatrixBase_setOnes.cpp │ │ │ │ ├── MatrixBase_setRandom.cpp │ │ │ │ ├── MatrixBase_setZero.cpp │ │ │ │ ├── MatrixBase_start_int.cpp │ │ │ │ ├── MatrixBase_template_int_bottomRows.cpp │ │ │ │ ├── MatrixBase_template_int_end.cpp │ │ │ │ ├── MatrixBase_template_int_int_block_int_int_int_int.cpp │ │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner.cpp │ │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp │ │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner.cpp │ │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner_int_int.cpp │ │ │ │ ├── MatrixBase_template_int_int_topLeftCorner.cpp │ │ │ │ ├── MatrixBase_template_int_int_topLeftCorner_int_int.cpp │ │ │ │ ├── MatrixBase_template_int_int_topRightCorner.cpp │ │ │ │ ├── MatrixBase_template_int_int_topRightCorner_int_int.cpp │ │ │ │ ├── MatrixBase_template_int_leftCols.cpp │ │ │ │ ├── MatrixBase_template_int_rightCols.cpp │ │ │ │ ├── MatrixBase_template_int_segment.cpp │ │ │ │ ├── MatrixBase_template_int_start.cpp │ │ │ │ ├── MatrixBase_template_int_topRows.cpp │ │ │ │ ├── MatrixBase_topLeftCorner_int_int.cpp │ │ │ │ ├── MatrixBase_topRightCorner_int_int.cpp │ │ │ │ ├── MatrixBase_topRows_int.cpp │ │ │ │ ├── MatrixBase_transpose.cpp │ │ │ │ ├── MatrixBase_triangularView.cpp │ │ │ │ ├── MatrixBase_zero.cpp │ │ │ │ ├── MatrixBase_zero_int.cpp │ │ │ │ ├── MatrixBase_zero_int_int.cpp │ │ │ │ ├── Matrix_Map_stride.cpp │ │ │ │ ├── Matrix_resize_NoChange_int.cpp │ │ │ │ ├── Matrix_resize_int.cpp │ │ │ │ ├── Matrix_resize_int_NoChange.cpp │ │ │ │ ├── Matrix_resize_int_int.cpp │ │ │ │ ├── Matrix_setConstant_int.cpp │ │ │ │ ├── Matrix_setConstant_int_int.cpp │ │ │ │ ├── Matrix_setIdentity_int_int.cpp │ │ │ │ ├── Matrix_setOnes_int.cpp │ │ │ │ ├── Matrix_setOnes_int_int.cpp │ │ │ │ ├── Matrix_setRandom_int.cpp │ │ │ │ ├── Matrix_setRandom_int_int.cpp │ │ │ │ ├── Matrix_setZero_int.cpp │ │ │ │ ├── Matrix_setZero_int_int.cpp │ │ │ │ ├── PartialPivLU_solve.cpp │ │ │ │ ├── PartialRedux_count.cpp │ │ │ │ ├── PartialRedux_maxCoeff.cpp │ │ │ │ ├── PartialRedux_minCoeff.cpp │ │ │ │ ├── PartialRedux_norm.cpp │ │ │ │ ├── PartialRedux_prod.cpp │ │ │ │ ├── PartialRedux_squaredNorm.cpp │ │ │ │ ├── PartialRedux_sum.cpp │ │ │ │ ├── RealQZ_compute.cpp │ │ │ │ ├── RealSchur_RealSchur_MatrixType.cpp │ │ │ │ ├── RealSchur_compute.cpp │ │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp │ │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp │ │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp │ │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType.cpp │ │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType2.cpp │ │ │ │ ├── SelfAdjointEigenSolver_eigenvalues.cpp │ │ │ │ ├── SelfAdjointEigenSolver_eigenvectors.cpp │ │ │ │ ├── SelfAdjointEigenSolver_operatorInverseSqrt.cpp │ │ │ │ ├── SelfAdjointEigenSolver_operatorSqrt.cpp │ │ │ │ ├── SelfAdjointView_eigenvalues.cpp │ │ │ │ ├── SelfAdjointView_operatorNorm.cpp │ │ │ │ ├── SparseMatrix_coeffs.cpp │ │ │ │ ├── TopicAliasing_block.cpp │ │ │ │ ├── TopicAliasing_block_correct.cpp │ │ │ │ ├── TopicAliasing_cwise.cpp │ │ │ │ ├── TopicAliasing_mult1.cpp │ │ │ │ ├── TopicAliasing_mult2.cpp │ │ │ │ ├── TopicAliasing_mult3.cpp │ │ │ │ ├── TopicAliasing_mult4.cpp │ │ │ │ ├── TopicAliasing_mult5.cpp │ │ │ │ ├── TopicStorageOrders_example.cpp │ │ │ │ ├── Triangular_solve.cpp │ │ │ │ ├── Tridiagonalization_Tridiagonalization_MatrixType.cpp │ │ │ │ ├── Tridiagonalization_compute.cpp │ │ │ │ ├── Tridiagonalization_decomposeInPlace.cpp │ │ │ │ ├── Tridiagonalization_diagonal.cpp │ │ │ │ ├── Tridiagonalization_householderCoefficients.cpp │ │ │ │ ├── Tridiagonalization_packedMatrix.cpp │ │ │ │ ├── Tutorial_AdvancedInitialization_Block.cpp │ │ │ │ ├── Tutorial_AdvancedInitialization_CommaTemporary.cpp │ │ │ │ ├── Tutorial_AdvancedInitialization_Join.cpp │ │ │ │ ├── Tutorial_AdvancedInitialization_LinSpaced.cpp │ │ │ │ ├── Tutorial_AdvancedInitialization_ThreeWays.cpp │ │ │ │ ├── Tutorial_AdvancedInitialization_Zero.cpp │ │ │ │ ├── Tutorial_Map_rowmajor.cpp │ │ │ │ ├── Tutorial_Map_using.cpp │ │ │ │ ├── Tutorial_ReshapeMat2Mat.cpp │ │ │ │ ├── Tutorial_ReshapeMat2Vec.cpp │ │ │ │ ├── Tutorial_SlicingCol.cpp │ │ │ │ ├── Tutorial_SlicingVec.cpp │ │ │ │ ├── Tutorial_commainit_01.cpp │ │ │ │ ├── Tutorial_commainit_01b.cpp │ │ │ │ ├── Tutorial_commainit_02.cpp │ │ │ │ ├── Tutorial_solve_matrix_inverse.cpp │ │ │ │ ├── Tutorial_solve_multiple_rhs.cpp │ │ │ │ ├── Tutorial_solve_reuse_decomposition.cpp │ │ │ │ ├── Tutorial_solve_singular.cpp │ │ │ │ ├── Tutorial_solve_triangular.cpp │ │ │ │ ├── Tutorial_solve_triangular_inplace.cpp │ │ │ │ ├── VectorwiseOp_homogeneous.cpp │ │ │ │ ├── Vectorwise_reverse.cpp │ │ │ │ ├── class_FullPivLU.cpp │ │ │ │ ├── compile_snippet.cpp.in │ │ │ │ ├── tut_arithmetic_redux_minmax.cpp │ │ │ │ ├── tut_arithmetic_transpose_aliasing.cpp │ │ │ │ ├── tut_arithmetic_transpose_conjugate.cpp │ │ │ │ ├── tut_arithmetic_transpose_inplace.cpp │ │ │ │ └── tut_matrix_assignment_resizing.cpp │ │ │ ├── special_examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Tutorial_sparse_example.cpp │ │ │ │ ├── Tutorial_sparse_example_details.cpp │ │ │ │ └── random_cpp11.cpp │ │ │ └── tutorial.cpp │ │ ├── eigen3.pc.in │ │ ├── failtest │ │ │ ├── CMakeLists.txt │ │ │ ├── bdcsvd_int.cpp │ │ │ ├── block_nonconst_ctor_on_const_xpr_0.cpp │ │ │ ├── block_nonconst_ctor_on_const_xpr_1.cpp │ │ │ ├── block_nonconst_ctor_on_const_xpr_2.cpp │ │ │ ├── block_on_const_type_actually_const_0.cpp │ │ │ ├── block_on_const_type_actually_const_1.cpp │ │ │ ├── colpivqr_int.cpp │ │ │ ├── const_qualified_block_method_retval_0.cpp │ │ │ ├── const_qualified_block_method_retval_1.cpp │ │ │ ├── const_qualified_diagonal_method_retval.cpp │ │ │ ├── const_qualified_transpose_method_retval.cpp │ │ │ ├── cwiseunaryview_nonconst_ctor_on_const_xpr.cpp │ │ │ ├── cwiseunaryview_on_const_type_actually_const.cpp │ │ │ ├── diagonal_nonconst_ctor_on_const_xpr.cpp │ │ │ ├── diagonal_on_const_type_actually_const.cpp │ │ │ ├── eigensolver_cplx.cpp │ │ │ ├── eigensolver_int.cpp │ │ │ ├── failtest_sanity_check.cpp │ │ │ ├── fullpivlu_int.cpp │ │ │ ├── fullpivqr_int.cpp │ │ │ ├── jacobisvd_int.cpp │ │ │ ├── ldlt_int.cpp │ │ │ ├── llt_int.cpp │ │ │ ├── map_nonconst_ctor_on_const_ptr_0.cpp │ │ │ ├── map_nonconst_ctor_on_const_ptr_1.cpp │ │ │ ├── map_nonconst_ctor_on_const_ptr_2.cpp │ │ │ ├── map_nonconst_ctor_on_const_ptr_3.cpp │ │ │ ├── map_nonconst_ctor_on_const_ptr_4.cpp │ │ │ ├── map_on_const_type_actually_const_0.cpp │ │ │ ├── map_on_const_type_actually_const_1.cpp │ │ │ ├── partialpivlu_int.cpp │ │ │ ├── qr_int.cpp │ │ │ ├── ref_1.cpp │ │ │ ├── ref_2.cpp │ │ │ ├── ref_3.cpp │ │ │ ├── ref_4.cpp │ │ │ ├── ref_5.cpp │ │ │ ├── selfadjointview_nonconst_ctor_on_const_xpr.cpp │ │ │ ├── selfadjointview_on_const_type_actually_const.cpp │ │ │ ├── sparse_ref_1.cpp │ │ │ ├── sparse_ref_2.cpp │ │ │ ├── sparse_ref_3.cpp │ │ │ ├── sparse_ref_4.cpp │ │ │ ├── sparse_ref_5.cpp │ │ │ ├── sparse_storage_mismatch.cpp │ │ │ ├── swap_1.cpp │ │ │ ├── swap_2.cpp │ │ │ ├── ternary_1.cpp │ │ │ ├── ternary_2.cpp │ │ │ ├── transpose_nonconst_ctor_on_const_xpr.cpp │ │ │ ├── transpose_on_const_type_actually_const.cpp │ │ │ ├── triangularview_nonconst_ctor_on_const_xpr.cpp │ │ │ └── triangularview_on_const_type_actually_const.cpp │ │ ├── lapack │ │ │ ├── CMakeLists.txt │ │ │ ├── cholesky.cpp │ │ │ ├── clacgv.f │ │ │ ├── cladiv.f │ │ │ ├── clarf.f │ │ │ ├── clarfb.f │ │ │ ├── clarfg.f │ │ │ ├── clarft.f │ │ │ ├── complex_double.cpp │ │ │ ├── complex_single.cpp │ │ │ ├── dladiv.f │ │ │ ├── dlamch.f │ │ │ ├── dlapy2.f │ │ │ ├── dlapy3.f │ │ │ ├── dlarf.f │ │ │ ├── dlarfb.f │ │ │ ├── dlarfg.f │ │ │ ├── dlarft.f │ │ │ ├── double.cpp │ │ │ ├── dsecnd_NONE.f │ │ │ ├── eigenvalues.cpp │ │ │ ├── ilaclc.f │ │ │ ├── ilaclr.f │ │ │ ├── iladlc.f │ │ │ ├── iladlr.f │ │ │ ├── ilaslc.f │ │ │ ├── ilaslr.f │ │ │ ├── ilazlc.f │ │ │ ├── ilazlr.f │ │ │ ├── lapack_common.h │ │ │ ├── lu.cpp │ │ │ ├── second_NONE.f │ │ │ ├── single.cpp │ │ │ ├── sladiv.f │ │ │ ├── slamch.f │ │ │ ├── slapy2.f │ │ │ ├── slapy3.f │ │ │ ├── slarf.f │ │ │ ├── slarfb.f │ │ │ ├── slarfg.f │ │ │ ├── slarft.f │ │ │ ├── svd.cpp │ │ │ ├── zlacgv.f │ │ │ ├── zladiv.f │ │ │ ├── zlarf.f │ │ │ ├── zlarfb.f │ │ │ ├── zlarfg.f │ │ │ └── zlarft.f │ │ ├── scripts │ │ │ ├── CMakeLists.txt │ │ │ ├── cdashtesting.cmake.in │ │ │ ├── check.in │ │ │ ├── debug.in │ │ │ ├── eigen_gen_credits.cpp │ │ │ ├── eigen_gen_docs │ │ │ ├── release.in │ │ │ └── relicense.py │ │ ├── signature_of_eigen3_matrix_library │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── adjoint.cpp │ │ │ ├── array_cwise.cpp │ │ │ ├── array_for_matrix.cpp │ │ │ ├── array_of_string.cpp │ │ │ ├── array_replicate.cpp │ │ │ ├── array_reverse.cpp │ │ │ ├── bandmatrix.cpp │ │ │ ├── basicstuff.cpp │ │ │ ├── bdcsvd.cpp │ │ │ ├── bicgstab.cpp │ │ │ ├── block.cpp │ │ │ ├── boostmultiprec.cpp │ │ │ ├── bug1213.cpp │ │ │ ├── bug1213.h │ │ │ ├── bug1213_main.cpp │ │ │ ├── cholesky.cpp │ │ │ ├── cholmod_support.cpp │ │ │ ├── commainitializer.cpp │ │ │ ├── conjugate_gradient.cpp │ │ │ ├── conservative_resize.cpp │ │ │ ├── constructor.cpp │ │ │ ├── corners.cpp │ │ │ ├── ctorleak.cpp │ │ │ ├── cuda_basic.cu │ │ │ ├── cuda_common.h │ │ │ ├── denseLM.cpp │ │ │ ├── dense_storage.cpp │ │ │ ├── determinant.cpp │ │ │ ├── diagonal.cpp │ │ │ ├── diagonalmatrices.cpp │ │ │ ├── dontalign.cpp │ │ │ ├── dynalloc.cpp │ │ │ ├── eigen2support.cpp │ │ │ ├── eigensolver_complex.cpp │ │ │ ├── eigensolver_generalized_real.cpp │ │ │ ├── eigensolver_generic.cpp │ │ │ ├── eigensolver_selfadjoint.cpp │ │ │ ├── evaluator_common.h │ │ │ ├── evaluators.cpp │ │ │ ├── exceptions.cpp │ │ │ ├── fastmath.cpp │ │ │ ├── first_aligned.cpp │ │ │ ├── geo_alignedbox.cpp │ │ │ ├── geo_eulerangles.cpp │ │ │ ├── geo_homogeneous.cpp │ │ │ ├── geo_hyperplane.cpp │ │ │ ├── geo_orthomethods.cpp │ │ │ ├── geo_parametrizedline.cpp │ │ │ ├── geo_quaternion.cpp │ │ │ ├── geo_transformations.cpp │ │ │ ├── half_float.cpp │ │ │ ├── hessenberg.cpp │ │ │ ├── householder.cpp │ │ │ ├── incomplete_cholesky.cpp │ │ │ ├── inplace_decomposition.cpp │ │ │ ├── integer_types.cpp │ │ │ ├── inverse.cpp │ │ │ ├── is_same_dense.cpp │ │ │ ├── jacobi.cpp │ │ │ ├── jacobisvd.cpp │ │ │ ├── linearstructure.cpp │ │ │ ├── lscg.cpp │ │ │ ├── lu.cpp │ │ │ ├── main.h │ │ │ ├── mapped_matrix.cpp │ │ │ ├── mapstaticmethods.cpp │ │ │ ├── mapstride.cpp │ │ │ ├── meta.cpp │ │ │ ├── metis_support.cpp │ │ │ ├── miscmatrices.cpp │ │ │ ├── mixingtypes.cpp │ │ │ ├── mpl2only.cpp │ │ │ ├── nesting_ops.cpp │ │ │ ├── nomalloc.cpp │ │ │ ├── nullary.cpp │ │ │ ├── numext.cpp │ │ │ ├── packetmath.cpp │ │ │ ├── pardiso_support.cpp │ │ │ ├── pastix_support.cpp │ │ │ ├── permutationmatrices.cpp │ │ │ ├── prec_inverse_4x4.cpp │ │ │ ├── product.h │ │ │ ├── product_extra.cpp │ │ │ ├── product_large.cpp │ │ │ ├── product_mmtr.cpp │ │ │ ├── product_notemporary.cpp │ │ │ ├── product_selfadjoint.cpp │ │ │ ├── product_small.cpp │ │ │ ├── product_symm.cpp │ │ │ ├── product_syrk.cpp │ │ │ ├── product_trmm.cpp │ │ │ ├── product_trmv.cpp │ │ │ ├── product_trsolve.cpp │ │ │ ├── qr.cpp │ │ │ ├── qr_colpivoting.cpp │ │ │ ├── qr_fullpivoting.cpp │ │ │ ├── qtvector.cpp │ │ │ ├── rand.cpp │ │ │ ├── real_qz.cpp │ │ │ ├── redux.cpp │ │ │ ├── ref.cpp │ │ │ ├── resize.cpp │ │ │ ├── rvalue_types.cpp │ │ │ ├── schur_complex.cpp │ │ │ ├── schur_real.cpp │ │ │ ├── selfadjoint.cpp │ │ │ ├── simplicial_cholesky.cpp │ │ │ ├── sizeof.cpp │ │ │ ├── sizeoverflow.cpp │ │ │ ├── smallvectors.cpp │ │ │ ├── sparse.h │ │ │ ├── sparseLM.cpp │ │ │ ├── sparse_basic.cpp │ │ │ ├── sparse_block.cpp │ │ │ ├── sparse_permutations.cpp │ │ │ ├── sparse_product.cpp │ │ │ ├── sparse_ref.cpp │ │ │ ├── sparse_solver.h │ │ │ ├── sparse_solvers.cpp │ │ │ ├── sparse_vector.cpp │ │ │ ├── sparselu.cpp │ │ │ ├── sparseqr.cpp │ │ │ ├── special_numbers.cpp │ │ │ ├── spqr_support.cpp │ │ │ ├── stable_norm.cpp │ │ │ ├── stddeque.cpp │ │ │ ├── stddeque_overload.cpp │ │ │ ├── stdlist.cpp │ │ │ ├── stdlist_overload.cpp │ │ │ ├── stdvector.cpp │ │ │ ├── stdvector_overload.cpp │ │ │ ├── superlu_support.cpp │ │ │ ├── svd_common.h │ │ │ ├── svd_fill.h │ │ │ ├── swap.cpp │ │ │ ├── triangular.cpp │ │ │ ├── umeyama.cpp │ │ │ ├── umfpack_support.cpp │ │ │ ├── unalignedassert.cpp │ │ │ ├── unalignedcount.cpp │ │ │ ├── upperbidiagonalization.cpp │ │ │ ├── vectorization_logic.cpp │ │ │ ├── vectorwiseop.cpp │ │ │ ├── visitor.cpp │ │ │ └── zerosized.cpp │ │ └── unsupported │ │ │ ├── CMakeLists.txt │ │ │ ├── Eigen │ │ │ ├── AdolcForward │ │ │ ├── AlignedVector3 │ │ │ ├── ArpackSupport │ │ │ ├── AutoDiff │ │ │ ├── BVH │ │ │ ├── CMakeLists.txt │ │ │ ├── CXX11 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Tensor │ │ │ │ ├── TensorSymmetry │ │ │ │ ├── ThreadPool │ │ │ │ └── src │ │ │ │ │ ├── Tensor │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Tensor.h │ │ │ │ │ ├── TensorArgMax.h │ │ │ │ │ ├── TensorAssign.h │ │ │ │ │ ├── TensorBase.h │ │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ │ ├── TensorChipping.h │ │ │ │ │ ├── TensorConcatenation.h │ │ │ │ │ ├── TensorContraction.h │ │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ │ ├── TensorConversion.h │ │ │ │ │ ├── TensorConvolution.h │ │ │ │ │ ├── TensorCostModel.h │ │ │ │ │ ├── TensorCustomOp.h │ │ │ │ │ ├── TensorDevice.h │ │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ │ ├── TensorDeviceDefault.h │ │ │ │ │ ├── TensorDeviceSycl.h │ │ │ │ │ ├── TensorDeviceThreadPool.h │ │ │ │ │ ├── TensorDimensionList.h │ │ │ │ │ ├── TensorDimensions.h │ │ │ │ │ ├── TensorEvalTo.h │ │ │ │ │ ├── TensorEvaluator.h │ │ │ │ │ ├── TensorExecutor.h │ │ │ │ │ ├── TensorExpr.h │ │ │ │ │ ├── TensorFFT.h │ │ │ │ │ ├── TensorFixedSize.h │ │ │ │ │ ├── TensorForcedEval.h │ │ │ │ │ ├── TensorForwardDeclarations.h │ │ │ │ │ ├── TensorFunctors.h │ │ │ │ │ ├── TensorGenerator.h │ │ │ │ │ ├── TensorGlobalFunctions.h │ │ │ │ │ ├── TensorIO.h │ │ │ │ │ ├── TensorImagePatch.h │ │ │ │ │ ├── TensorIndexList.h │ │ │ │ │ ├── TensorInflation.h │ │ │ │ │ ├── TensorInitializer.h │ │ │ │ │ ├── TensorIntDiv.h │ │ │ │ │ ├── TensorLayoutSwap.h │ │ │ │ │ ├── TensorMacros.h │ │ │ │ │ ├── TensorMap.h │ │ │ │ │ ├── TensorMeta.h │ │ │ │ │ ├── TensorMorphing.h │ │ │ │ │ ├── TensorPadding.h │ │ │ │ │ ├── TensorPatch.h │ │ │ │ │ ├── TensorRandom.h │ │ │ │ │ ├── TensorReduction.h │ │ │ │ │ ├── TensorReductionCuda.h │ │ │ │ │ ├── TensorReductionSycl.h │ │ │ │ │ ├── TensorRef.h │ │ │ │ │ ├── TensorReverse.h │ │ │ │ │ ├── TensorScan.h │ │ │ │ │ ├── TensorShuffling.h │ │ │ │ │ ├── TensorStorage.h │ │ │ │ │ ├── TensorStriding.h │ │ │ │ │ ├── TensorSycl.h │ │ │ │ │ ├── TensorSyclConvertToDeviceExpression.h │ │ │ │ │ ├── TensorSyclExprConstructor.h │ │ │ │ │ ├── TensorSyclExtractAccessor.h │ │ │ │ │ ├── TensorSyclExtractFunctors.h │ │ │ │ │ ├── TensorSyclLeafCount.h │ │ │ │ │ ├── TensorSyclPlaceHolderExpr.h │ │ │ │ │ ├── TensorSyclRun.h │ │ │ │ │ ├── TensorSyclTuple.h │ │ │ │ │ ├── TensorTraits.h │ │ │ │ │ ├── TensorUInt128.h │ │ │ │ │ └── TensorVolumePatch.h │ │ │ │ │ ├── TensorSymmetry │ │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ │ ├── StaticSymmetry.h │ │ │ │ │ ├── Symmetry.h │ │ │ │ │ └── util │ │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ │ ├── ThreadPool │ │ │ │ │ ├── EventCount.h │ │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ │ ├── RunQueue.h │ │ │ │ │ ├── SimpleThreadPool.h │ │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ │ ├── ThreadLocal.h │ │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ │ └── ThreadYield.h │ │ │ │ │ └── util │ │ │ │ │ ├── CXX11Meta.h │ │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ │ ├── EmulateArray.h │ │ │ │ │ ├── EmulateCXX11Meta.h │ │ │ │ │ └── MaxSizeVector.h │ │ │ ├── EulerAngles │ │ │ ├── FFT │ │ │ ├── IterativeSolvers │ │ │ ├── KroneckerProduct │ │ │ ├── LevenbergMarquardt │ │ │ ├── MPRealSupport │ │ │ ├── MatrixFunctions │ │ │ ├── MoreVectorization │ │ │ ├── NonLinearOptimization │ │ │ ├── NumericalDiff │ │ │ ├── OpenGLSupport │ │ │ ├── Polynomials │ │ │ ├── Skyline │ │ │ ├── SparseExtra │ │ │ ├── SpecialFunctions │ │ │ ├── Splines │ │ │ └── src │ │ │ │ ├── AutoDiff │ │ │ │ ├── AutoDiffJacobian.h │ │ │ │ ├── AutoDiffScalar.h │ │ │ │ └── AutoDiffVector.h │ │ │ │ ├── BVH │ │ │ │ ├── BVAlgorithms.h │ │ │ │ └── KdBVH.h │ │ │ │ ├── Eigenvalues │ │ │ │ └── ArpackSelfAdjointEigenSolver.h │ │ │ │ ├── EulerAngles │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── EulerAngles.h │ │ │ │ └── EulerSystem.h │ │ │ │ ├── FFT │ │ │ │ ├── ei_fftw_impl.h │ │ │ │ └── ei_kissfft_impl.h │ │ │ │ ├── IterativeSolvers │ │ │ │ ├── ConstrainedConjGrad.h │ │ │ │ ├── DGMRES.h │ │ │ │ ├── GMRES.h │ │ │ │ ├── IncompleteLU.h │ │ │ │ ├── IterationController.h │ │ │ │ ├── MINRES.h │ │ │ │ └── Scaling.h │ │ │ │ ├── KroneckerProduct │ │ │ │ └── KroneckerTensorProduct.h │ │ │ │ ├── LevenbergMarquardt │ │ │ │ ├── CopyrightMINPACK.txt │ │ │ │ ├── LMcovar.h │ │ │ │ ├── LMonestep.h │ │ │ │ ├── LMpar.h │ │ │ │ ├── LMqrsolv.h │ │ │ │ └── LevenbergMarquardt.h │ │ │ │ ├── MatrixFunctions │ │ │ │ ├── MatrixExponential.h │ │ │ │ ├── MatrixFunction.h │ │ │ │ ├── MatrixLogarithm.h │ │ │ │ ├── MatrixPower.h │ │ │ │ ├── MatrixSquareRoot.h │ │ │ │ └── StemFunction.h │ │ │ │ ├── MoreVectorization │ │ │ │ └── MathFunctions.h │ │ │ │ ├── NonLinearOptimization │ │ │ │ ├── HybridNonLinearSolver.h │ │ │ │ ├── LevenbergMarquardt.h │ │ │ │ ├── chkder.h │ │ │ │ ├── covar.h │ │ │ │ ├── dogleg.h │ │ │ │ ├── fdjac1.h │ │ │ │ ├── lmpar.h │ │ │ │ ├── qrsolv.h │ │ │ │ ├── r1mpyq.h │ │ │ │ ├── r1updt.h │ │ │ │ └── rwupdt.h │ │ │ │ ├── NumericalDiff │ │ │ │ └── NumericalDiff.h │ │ │ │ ├── Polynomials │ │ │ │ ├── Companion.h │ │ │ │ ├── PolynomialSolver.h │ │ │ │ └── PolynomialUtils.h │ │ │ │ ├── Skyline │ │ │ │ ├── SkylineInplaceLU.h │ │ │ │ ├── SkylineMatrix.h │ │ │ │ ├── SkylineMatrixBase.h │ │ │ │ ├── SkylineProduct.h │ │ │ │ ├── SkylineStorage.h │ │ │ │ └── SkylineUtil.h │ │ │ │ ├── SparseExtra │ │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ │ ├── BlockSparseMatrix.h │ │ │ │ ├── DynamicSparseMatrix.h │ │ │ │ ├── MarketIO.h │ │ │ │ ├── MatrixMarketIterator.h │ │ │ │ └── RandomSetter.h │ │ │ │ ├── SpecialFunctions │ │ │ │ ├── SpecialFunctionsArrayAPI.h │ │ │ │ ├── SpecialFunctionsFunctors.h │ │ │ │ ├── SpecialFunctionsHalf.h │ │ │ │ ├── SpecialFunctionsImpl.h │ │ │ │ ├── SpecialFunctionsPacketMath.h │ │ │ │ └── arch │ │ │ │ │ └── CUDA │ │ │ │ │ └── CudaSpecialFunctions.h │ │ │ │ └── Splines │ │ │ │ ├── Spline.h │ │ │ │ ├── SplineFitting.h │ │ │ │ └── SplineFwd.h │ │ │ ├── README.txt │ │ │ ├── bench │ │ │ └── bench_svd.cpp │ │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ ├── Overview.dox │ │ │ ├── eigendoxy_layout.xml.in │ │ │ ├── examples │ │ │ │ ├── BVH_Example.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── EulerAngles.cpp │ │ │ │ ├── FFT.cpp │ │ │ │ ├── MatrixExponential.cpp │ │ │ │ ├── MatrixFunction.cpp │ │ │ │ ├── MatrixLogarithm.cpp │ │ │ │ ├── MatrixPower.cpp │ │ │ │ ├── MatrixPower_optimal.cpp │ │ │ │ ├── MatrixSine.cpp │ │ │ │ ├── MatrixSinh.cpp │ │ │ │ ├── MatrixSquareRoot.cpp │ │ │ │ ├── PolynomialSolver1.cpp │ │ │ │ └── PolynomialUtils1.cpp │ │ │ └── snippets │ │ │ │ └── CMakeLists.txt │ │ │ └── test │ │ │ ├── BVH.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.cpp │ │ │ ├── FFT.cpp │ │ │ ├── FFTW.cpp │ │ │ ├── NonLinearOptimization.cpp │ │ │ ├── NumericalDiff.cpp │ │ │ ├── alignedvector3.cpp │ │ │ ├── autodiff.cpp │ │ │ ├── autodiff_scalar.cpp │ │ │ ├── cxx11_eventcount.cpp │ │ │ ├── cxx11_meta.cpp │ │ │ ├── cxx11_non_blocking_thread_pool.cpp │ │ │ ├── cxx11_runqueue.cpp │ │ │ ├── cxx11_tensor_argmax.cpp │ │ │ ├── cxx11_tensor_argmax_cuda.cu │ │ │ ├── cxx11_tensor_assign.cpp │ │ │ ├── cxx11_tensor_broadcast_sycl.cpp │ │ │ ├── cxx11_tensor_broadcasting.cpp │ │ │ ├── cxx11_tensor_cast_float16_cuda.cu │ │ │ ├── cxx11_tensor_casts.cpp │ │ │ ├── cxx11_tensor_chipping.cpp │ │ │ ├── cxx11_tensor_comparisons.cpp │ │ │ ├── cxx11_tensor_complex_cuda.cu │ │ │ ├── cxx11_tensor_complex_cwise_ops_cuda.cu │ │ │ ├── cxx11_tensor_concatenation.cpp │ │ │ ├── cxx11_tensor_const.cpp │ │ │ ├── cxx11_tensor_contract_cuda.cu │ │ │ ├── cxx11_tensor_contraction.cpp │ │ │ ├── cxx11_tensor_convolution.cpp │ │ │ ├── cxx11_tensor_cuda.cu │ │ │ ├── cxx11_tensor_custom_index.cpp │ │ │ ├── cxx11_tensor_custom_op.cpp │ │ │ ├── cxx11_tensor_device.cu │ │ │ ├── cxx11_tensor_device_sycl.cpp │ │ │ ├── cxx11_tensor_dimension.cpp │ │ │ ├── cxx11_tensor_empty.cpp │ │ │ ├── cxx11_tensor_expr.cpp │ │ │ ├── cxx11_tensor_fft.cpp │ │ │ ├── cxx11_tensor_fixed_size.cpp │ │ │ ├── cxx11_tensor_forced_eval.cpp │ │ │ ├── cxx11_tensor_forced_eval_sycl.cpp │ │ │ ├── cxx11_tensor_generator.cpp │ │ │ ├── cxx11_tensor_ifft.cpp │ │ │ ├── cxx11_tensor_image_patch.cpp │ │ │ ├── cxx11_tensor_index_list.cpp │ │ │ ├── cxx11_tensor_inflation.cpp │ │ │ ├── cxx11_tensor_intdiv.cpp │ │ │ ├── cxx11_tensor_io.cpp │ │ │ ├── cxx11_tensor_layout_swap.cpp │ │ │ ├── cxx11_tensor_lvalue.cpp │ │ │ ├── cxx11_tensor_map.cpp │ │ │ ├── cxx11_tensor_math.cpp │ │ │ ├── cxx11_tensor_mixed_indices.cpp │ │ │ ├── cxx11_tensor_morphing.cpp │ │ │ ├── cxx11_tensor_notification.cpp │ │ │ ├── cxx11_tensor_of_complex.cpp │ │ │ ├── cxx11_tensor_of_const_values.cpp │ │ │ ├── cxx11_tensor_of_float16_cuda.cu │ │ │ ├── cxx11_tensor_of_strings.cpp │ │ │ ├── cxx11_tensor_padding.cpp │ │ │ ├── cxx11_tensor_patch.cpp │ │ │ ├── cxx11_tensor_random.cpp │ │ │ ├── cxx11_tensor_random_cuda.cu │ │ │ ├── cxx11_tensor_reduction.cpp │ │ │ ├── cxx11_tensor_reduction_cuda.cu │ │ │ ├── cxx11_tensor_reduction_sycl.cpp │ │ │ ├── cxx11_tensor_ref.cpp │ │ │ ├── cxx11_tensor_reverse.cpp │ │ │ ├── cxx11_tensor_roundings.cpp │ │ │ ├── cxx11_tensor_scan.cpp │ │ │ ├── cxx11_tensor_scan_cuda.cu │ │ │ ├── cxx11_tensor_shuffling.cpp │ │ │ ├── cxx11_tensor_simple.cpp │ │ │ ├── cxx11_tensor_striding.cpp │ │ │ ├── cxx11_tensor_sugar.cpp │ │ │ ├── cxx11_tensor_sycl.cpp │ │ │ ├── cxx11_tensor_symmetry.cpp │ │ │ ├── cxx11_tensor_thread_pool.cpp │ │ │ ├── cxx11_tensor_uint128.cpp │ │ │ ├── cxx11_tensor_volume_patch.cpp │ │ │ ├── dgmres.cpp │ │ │ ├── forward_adolc.cpp │ │ │ ├── gmres.cpp │ │ │ ├── kronecker_product.cpp │ │ │ ├── levenberg_marquardt.cpp │ │ │ ├── matrix_exponential.cpp │ │ │ ├── matrix_function.cpp │ │ │ ├── matrix_functions.h │ │ │ ├── matrix_power.cpp │ │ │ ├── matrix_square_root.cpp │ │ │ ├── minres.cpp │ │ │ ├── mpreal │ │ │ └── mpreal.h │ │ │ ├── mpreal_support.cpp │ │ │ ├── openglsupport.cpp │ │ │ ├── polynomialsolver.cpp │ │ │ ├── polynomialutils.cpp │ │ │ ├── sparse_extra.cpp │ │ │ ├── special_functions.cpp │ │ │ └── splines.cpp │ ├── half │ │ └── half.hpp │ ├── pcg32 │ │ ├── Makefile │ │ ├── README.md │ │ ├── pcg32-demo.cpp │ │ ├── pcg32-demo.out │ │ └── pcg32.h │ ├── pss │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── parallel_stable_sort.h │ │ └── pss_common.h │ ├── rply │ │ ├── LICENSE │ │ ├── rply.c │ │ └── rply.h │ └── tbb │ │ ├── .appveyor.yml │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── Doxyfile │ │ ├── LICENSE │ │ ├── Makefile.old │ │ ├── README │ │ ├── README.md │ │ ├── build │ │ ├── AIX.gcc.inc │ │ ├── AIX.inc │ │ ├── BSD.clang.inc │ │ ├── BSD.inc │ │ ├── FreeBSD.clang.inc │ │ ├── FreeBSD.gcc.inc │ │ ├── FreeBSD.inc │ │ ├── Makefile.rml │ │ ├── Makefile.tbb │ │ ├── Makefile.tbbbind │ │ ├── Makefile.tbbmalloc │ │ ├── Makefile.tbbproxy │ │ ├── Makefile.test │ │ ├── OpenBSD.clang.inc │ │ ├── OpenBSD.inc │ │ ├── SunOS.gcc.inc │ │ ├── SunOS.inc │ │ ├── SunOS.suncc.inc │ │ ├── android.clang.inc │ │ ├── android.gcc.inc │ │ ├── android.icc.inc │ │ ├── android.inc │ │ ├── android.linux.inc │ │ ├── android.linux.launcher.sh │ │ ├── android.macos.inc │ │ ├── android.windows.inc │ │ ├── big_iron.inc │ │ ├── build.py │ │ ├── codecov.txt │ │ ├── common.inc │ │ ├── common_rules.inc │ │ ├── detect.js │ │ ├── generate_tbbvars.bat │ │ ├── generate_tbbvars.sh │ │ ├── index.html │ │ ├── ios.clang.inc │ │ ├── ios.macos.inc │ │ ├── linux.clang.inc │ │ ├── linux.gcc.inc │ │ ├── linux.icc.inc │ │ ├── linux.inc │ │ ├── linux.pathcc.inc │ │ ├── linux.xl.inc │ │ ├── macos.clang.inc │ │ ├── macos.gcc.inc │ │ ├── macos.icc.inc │ │ ├── macos.inc │ │ ├── mic.icc.inc │ │ ├── mic.linux.inc │ │ ├── mic.linux.launcher.sh │ │ ├── mic.offload.inc │ │ ├── mingw_cross_toolchain.cmake │ │ ├── suncc.map.pause │ │ ├── test_launcher.bat │ │ ├── test_launcher.sh │ │ ├── version_info_aix.sh │ │ ├── version_info_android.sh │ │ ├── version_info_linux.sh │ │ ├── version_info_macos.sh │ │ ├── version_info_sunos.sh │ │ ├── version_info_windows.js │ │ ├── version_string.ver.in │ │ ├── vs2013 │ │ │ ├── index.html │ │ │ ├── makefile.sln │ │ │ ├── tbb.vcxproj │ │ │ ├── tbbmalloc.vcxproj │ │ │ └── tbbmalloc_proxy.vcxproj │ │ ├── windows.cl.inc │ │ ├── windows.gcc.inc │ │ ├── windows.icl.inc │ │ └── windows.inc │ │ ├── cmake │ │ ├── README.rst │ │ └── templates │ │ │ ├── TBBConfig.cmake.in │ │ │ ├── TBBConfigInternal.cmake.in │ │ │ └── TBBConfigVersion.cmake.in │ │ ├── doc │ │ ├── Release_Notes.txt │ │ └── copyright_brand_disclaimer_doxygen.txt │ │ ├── examples │ │ ├── GettingStarted │ │ │ ├── index.html │ │ │ └── sub_string_finder │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── msvs │ │ │ │ ├── sub_string_finder.sln │ │ │ │ ├── sub_string_finder.vcxproj │ │ │ │ ├── sub_string_finder_extended.vcxproj │ │ │ │ └── sub_string_finder_pretty.vcxproj │ │ │ │ ├── readme.html │ │ │ │ ├── sub_string_finder.cpp │ │ │ │ ├── sub_string_finder_extended.cpp │ │ │ │ ├── sub_string_finder_pretty.cpp │ │ │ │ └── xcode │ │ │ │ └── sub_string_finder.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── Makefile │ │ ├── common │ │ │ ├── copy_libraries.bat │ │ │ ├── examples-common.inc │ │ │ ├── gui │ │ │ │ ├── Makefile.gmake │ │ │ │ ├── Makefile.win │ │ │ │ ├── convideo.cpp │ │ │ │ ├── d2dvideo.cpp │ │ │ │ ├── dxcheck.bat │ │ │ │ ├── gdivideo.cpp │ │ │ │ ├── macvideo.cpp │ │ │ │ ├── video.h │ │ │ │ ├── winvideo.h │ │ │ │ ├── xcode │ │ │ │ │ └── tbbExample │ │ │ │ │ │ ├── OpenGLView.h │ │ │ │ │ │ ├── OpenGLView.m │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ ├── MainMenu.nib │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ │ ├── iOS.storyboard │ │ │ │ │ │ ├── main.m │ │ │ │ │ │ ├── tbbAppDelegate.h │ │ │ │ │ │ ├── tbbAppDelegate.m │ │ │ │ │ │ ├── tbbExample-Info.ios.plist │ │ │ │ │ │ ├── tbbExample-Info.plist │ │ │ │ │ │ └── tbbExample-Prefix.pch │ │ │ │ └── xvideo.cpp │ │ │ ├── index.html │ │ │ ├── toolset.props │ │ │ └── utility │ │ │ │ ├── fast_random.h │ │ │ │ ├── get_default_num_threads.h │ │ │ │ └── utility.h │ │ ├── concurrent_hash_map │ │ │ ├── count_strings │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── count_strings.cpp │ │ │ │ ├── msvs │ │ │ │ │ ├── count_strings.sln │ │ │ │ │ └── count_strings.vcxproj │ │ │ │ ├── readme.html │ │ │ │ └── xcode │ │ │ │ │ └── count_strings.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ └── index.html │ │ ├── concurrent_priority_queue │ │ │ ├── index.html │ │ │ └── shortpath │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── msvs │ │ │ │ ├── shortpath.sln │ │ │ │ └── shortpath.vcxproj │ │ │ │ ├── readme.html │ │ │ │ ├── shortpath.cpp │ │ │ │ └── xcode │ │ │ │ └── shortpath.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── graph │ │ │ ├── binpack │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── binpack.cpp │ │ │ │ ├── msvs │ │ │ │ │ ├── binpack.sln │ │ │ │ │ └── binpack.vcxproj │ │ │ │ ├── readme.html │ │ │ │ └── xcode │ │ │ │ │ └── binpack.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── cholesky │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── cholesky.cpp │ │ │ │ ├── init.cpp │ │ │ │ ├── msvs │ │ │ │ │ ├── cholesky.sln │ │ │ │ │ └── cholesky.vcxproj │ │ │ │ ├── readme.html │ │ │ │ └── xcode │ │ │ │ │ └── cholesky.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Cholesky.xcscheme │ │ │ ├── dining_philosophers │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── dining_philosophers.cpp │ │ │ │ ├── msvs │ │ │ │ │ ├── dining_philosophers.sln │ │ │ │ │ └── dining_philosophers.vcxproj │ │ │ │ ├── readme.html │ │ │ │ └── xcode │ │ │ │ │ └── dining_philosophers.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── fgbzip2 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── blocksort.cpp │ │ │ │ ├── bzlib.cpp │ │ │ │ ├── bzlib.h │ │ │ │ ├── bzlib_private.h │ │ │ │ ├── compress.cpp │ │ │ │ ├── crctable.cpp │ │ │ │ ├── decompress.cpp │ │ │ │ ├── fgbzip2.cpp │ │ │ │ ├── huffman.cpp │ │ │ │ ├── msvs │ │ │ │ │ ├── fgbzip2.sln │ │ │ │ │ └── fgbzip2.vcxproj │ │ │ │ ├── randtable.cpp │ │ │ │ ├── readme.html │ │ │ │ └── xcode │ │ │ │ │ └── fgbzip2.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── index.html │ │ │ ├── logic_sim │ │ │ │ ├── D_latch.h │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── basics.h │ │ │ │ ├── four_bit_adder.h │ │ │ │ ├── msvs │ │ │ │ │ ├── logic_sim.sln │ │ │ │ │ └── logic_sim.vcxproj │ │ │ │ ├── one_bit_adder.h │ │ │ │ ├── readme.html │ │ │ │ ├── test_all.cpp │ │ │ │ └── two_bit_adder.h │ │ │ ├── som │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── msvs │ │ │ │ │ ├── som.sln │ │ │ │ │ └── som.vcxproj │ │ │ │ ├── readme.html │ │ │ │ ├── som.cpp │ │ │ │ ├── som.h │ │ │ │ ├── som_graph.cpp │ │ │ │ └── xcode │ │ │ │ │ └── som.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ └── stereo │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── imageEffects.cl │ │ │ │ ├── lodepng.cpp │ │ │ │ ├── lodepng.h │ │ │ │ ├── msvs │ │ │ │ ├── stereo.sln │ │ │ │ └── stereo.vcxproj │ │ │ │ ├── readme.html │ │ │ │ ├── stereo.cpp │ │ │ │ ├── utils.h │ │ │ │ └── xcode │ │ │ │ └── stereo.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── index.html │ │ ├── parallel_do │ │ │ ├── index.html │ │ │ └── parallel_preorder │ │ │ │ ├── Graph.cpp │ │ │ │ ├── Graph.h │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── Matrix.h │ │ │ │ ├── main.cpp │ │ │ │ ├── msvs │ │ │ │ ├── parallel_preorder.sln │ │ │ │ └── parallel_preorder.vcxproj │ │ │ │ ├── parallel_preorder.cpp │ │ │ │ ├── readme.html │ │ │ │ └── xcode │ │ │ │ └── parallel_preorder.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── parallel_for │ │ │ ├── game_of_life │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── msvs │ │ │ │ │ ├── Game_of_life.sln │ │ │ │ │ ├── Game_of_life.vcxproj │ │ │ │ │ ├── app.ico │ │ │ │ │ ├── app.rc │ │ │ │ │ └── resource.h │ │ │ │ ├── readme.html │ │ │ │ ├── src │ │ │ │ │ ├── AssemblyInfo.cpp │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Evolution.cpp │ │ │ │ │ ├── Evolution.h │ │ │ │ │ ├── Form1.h │ │ │ │ │ ├── Game_of_life.cpp │ │ │ │ │ └── Update_state.cpp │ │ │ │ └── xcode │ │ │ │ │ └── game_of_life.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── index.html │ │ │ ├── polygon_overlay │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── msvs │ │ │ │ │ ├── polygon_overlay.sln │ │ │ │ │ ├── pover.rc │ │ │ │ │ ├── pover.vcxproj │ │ │ │ │ └── resource.h │ │ │ │ ├── polymain.cpp │ │ │ │ ├── polymain.h │ │ │ │ ├── polyover.cpp │ │ │ │ ├── polyover.h │ │ │ │ ├── pover_global.h │ │ │ │ ├── pover_video.cpp │ │ │ │ ├── pover_video.h │ │ │ │ ├── readme.html │ │ │ │ ├── rpolygon.h │ │ │ │ ├── speedup.gif │ │ │ │ └── xcode │ │ │ │ │ └── polygon_overlay.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── tbbExample.ios.xcscheme │ │ │ │ │ └── tbbExample.xcscheme │ │ │ ├── seismic │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── main.cpp │ │ │ │ ├── msvs │ │ │ │ │ ├── SeismicSimulation.ico │ │ │ │ │ ├── SeismicSimulation.rc │ │ │ │ │ ├── SeismicSimulation.vcxproj │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── seismic.sln │ │ │ │ │ └── small.ico │ │ │ │ ├── readme.html │ │ │ │ ├── seismic_video.cpp │ │ │ │ ├── seismic_video.h │ │ │ │ ├── universe.cpp │ │ │ │ ├── universe.h │ │ │ │ └── xcode │ │ │ │ │ └── seismic.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── tbbExample.ios.xcscheme │ │ │ │ │ └── tbbExample.xcscheme │ │ │ └── tachyon │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── dat │ │ │ │ ├── 820spheres.dat │ │ │ │ ├── balls.dat │ │ │ │ ├── balls3.dat │ │ │ │ ├── lattice.dat │ │ │ │ ├── model2.dat │ │ │ │ ├── teapot.dat │ │ │ │ └── trypsin4pti.dat │ │ │ │ ├── msvs │ │ │ │ ├── gui.ico │ │ │ │ ├── gui.rc │ │ │ │ ├── resource.h │ │ │ │ ├── small.ico │ │ │ │ ├── tachyon.serial.vcxproj │ │ │ │ ├── tachyon.sln │ │ │ │ ├── tachyon.tbb.vcxproj │ │ │ │ ├── tachyon.tbb1d.vcxproj │ │ │ │ ├── tachyon.vcxproj │ │ │ │ └── uwp │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cpp │ │ │ │ │ ├── App.xaml.h │ │ │ │ │ ├── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ └── StoreLogo.png │ │ │ │ │ ├── Common │ │ │ │ │ └── StandardStyles.xaml │ │ │ │ │ ├── DirectXBase.cpp │ │ │ │ │ ├── DirectXBase.h │ │ │ │ │ ├── DirectXPage.xaml │ │ │ │ │ ├── DirectXPage.xaml.cpp │ │ │ │ │ ├── DirectXPage.xaml.h │ │ │ │ │ ├── Package.appxmanifest │ │ │ │ │ ├── copy_libraries_and_assets.bat │ │ │ │ │ ├── pch.h │ │ │ │ │ ├── tbbTachyon.sln │ │ │ │ │ ├── tbbTachyon.vcxproj │ │ │ │ │ ├── tbbTachyon.vcxproj.filters │ │ │ │ │ ├── tbbTachyonRenderer.cpp │ │ │ │ │ └── tbbTachyonRenderer.h │ │ │ │ ├── readme.html │ │ │ │ ├── src │ │ │ │ ├── api.cpp │ │ │ │ ├── api.h │ │ │ │ ├── apigeom.cpp │ │ │ │ ├── apitrigeom.cpp │ │ │ │ ├── apitrigeom.h │ │ │ │ ├── bndbox.cpp │ │ │ │ ├── bndbox.h │ │ │ │ ├── box.cpp │ │ │ │ ├── box.h │ │ │ │ ├── camera.cpp │ │ │ │ ├── camera.h │ │ │ │ ├── coordsys.cpp │ │ │ │ ├── coordsys.h │ │ │ │ ├── cylinder.cpp │ │ │ │ ├── cylinder.h │ │ │ │ ├── extvol.cpp │ │ │ │ ├── extvol.h │ │ │ │ ├── global.cpp │ │ │ │ ├── global.h │ │ │ │ ├── grid.cpp │ │ │ │ ├── grid.h │ │ │ │ ├── imageio.cpp │ │ │ │ ├── imageio.h │ │ │ │ ├── imap.cpp │ │ │ │ ├── imap.h │ │ │ │ ├── intersect.cpp │ │ │ │ ├── intersect.h │ │ │ │ ├── jpeg.cpp │ │ │ │ ├── jpeg.h │ │ │ │ ├── light.cpp │ │ │ │ ├── light.h │ │ │ │ ├── machine.h │ │ │ │ ├── macros.h │ │ │ │ ├── main.cpp │ │ │ │ ├── objbound.cpp │ │ │ │ ├── objbound.h │ │ │ │ ├── parse.cpp │ │ │ │ ├── parse.h │ │ │ │ ├── plane.cpp │ │ │ │ ├── plane.h │ │ │ │ ├── ppm.cpp │ │ │ │ ├── ppm.h │ │ │ │ ├── pthread.cpp │ │ │ │ ├── pthread_w.h │ │ │ │ ├── quadric.cpp │ │ │ │ ├── quadric.h │ │ │ │ ├── render.cpp │ │ │ │ ├── render.h │ │ │ │ ├── ring.cpp │ │ │ │ ├── ring.h │ │ │ │ ├── shade.cpp │ │ │ │ ├── shade.h │ │ │ │ ├── sphere.cpp │ │ │ │ ├── sphere.h │ │ │ │ ├── tachyon_video.cpp │ │ │ │ ├── tachyon_video.h │ │ │ │ ├── texture.cpp │ │ │ │ ├── texture.h │ │ │ │ ├── tgafile.cpp │ │ │ │ ├── tgafile.h │ │ │ │ ├── trace.h │ │ │ │ ├── trace.serial.cpp │ │ │ │ ├── trace.simple.cpp │ │ │ │ ├── trace.tbb.cpp │ │ │ │ ├── trace.tbb1d.cpp │ │ │ │ ├── trace_rest.cpp │ │ │ │ ├── triangle.cpp │ │ │ │ ├── triangle.h │ │ │ │ ├── types.h │ │ │ │ ├── ui.cpp │ │ │ │ ├── ui.h │ │ │ │ ├── util.cpp │ │ │ │ ├── util.h │ │ │ │ ├── vector.cpp │ │ │ │ ├── vector.h │ │ │ │ ├── vol.cpp │ │ │ │ └── vol.h │ │ │ │ └── xcode │ │ │ │ └── tachyon.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── tachyon.serial.xcscheme │ │ │ │ ├── tachyon.tbb.ios.xcscheme │ │ │ │ ├── tachyon.tbb.xcscheme │ │ │ │ └── tachyon.tbb1d.xcscheme │ │ ├── parallel_reduce │ │ │ ├── convex_hull │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── convex_hull.h │ │ │ │ ├── convex_hull_bench.cpp │ │ │ │ ├── convex_hull_sample.cpp │ │ │ │ ├── msvs │ │ │ │ │ ├── convex_hull.sln │ │ │ │ │ ├── convex_hull_benchmark.vcxproj │ │ │ │ │ └── convex_hull_sample.vcxproj │ │ │ │ ├── readme.html │ │ │ │ └── xcode │ │ │ │ │ └── convex_hull.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── index.html │ │ │ └── primes │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── main.cpp │ │ │ │ ├── msvs │ │ │ │ ├── primes.sln │ │ │ │ └── primes.vcxproj │ │ │ │ ├── primes.cpp │ │ │ │ ├── primes.h │ │ │ │ ├── readme.html │ │ │ │ └── xcode │ │ │ │ └── primes.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── pipeline │ │ │ ├── index.html │ │ │ └── square │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── gen_input.cpp │ │ │ │ ├── msvs │ │ │ │ ├── square.sln │ │ │ │ └── square.vcxproj │ │ │ │ ├── readme.html │ │ │ │ ├── square.cpp │ │ │ │ └── xcode │ │ │ │ └── square.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── task │ │ │ ├── index.html │ │ │ └── tree_sum │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── OptimizedParallelSumTree.cpp │ │ │ │ ├── SerialSumTree.cpp │ │ │ │ ├── SimpleParallelSumTree.cpp │ │ │ │ ├── TreeMaker.h │ │ │ │ ├── common.h │ │ │ │ ├── main.cpp │ │ │ │ ├── msvs │ │ │ │ ├── tree_sum.sln │ │ │ │ └── tree_sum.vcxproj │ │ │ │ ├── readme.html │ │ │ │ └── xcode │ │ │ │ └── tree_sum.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── task_arena │ │ │ ├── fractal │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── fractal.cpp │ │ │ │ ├── fractal.h │ │ │ │ ├── fractal_video.h │ │ │ │ ├── main.cpp │ │ │ │ ├── msvs │ │ │ │ │ ├── fractal.sln │ │ │ │ │ ├── fractal.vcxproj │ │ │ │ │ ├── gui.ico │ │ │ │ │ ├── gui.rc │ │ │ │ │ ├── resource.h │ │ │ │ │ └── small.ico │ │ │ │ ├── readme.html │ │ │ │ └── xcode │ │ │ │ │ └── fractal.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── tbbExample.ios.xcscheme │ │ │ │ │ └── tbbExample.xcscheme │ │ │ └── index.html │ │ ├── task_group │ │ │ ├── index.html │ │ │ └── sudoku │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.windows │ │ │ │ ├── input1 │ │ │ │ ├── input2 │ │ │ │ ├── input3 │ │ │ │ ├── input4 │ │ │ │ ├── msvs │ │ │ │ ├── sudoku.sln │ │ │ │ └── sudoku.vcxproj │ │ │ │ ├── readme.html │ │ │ │ ├── sudoku.cpp │ │ │ │ └── xcode │ │ │ │ └── sudoku.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── test_all │ │ │ ├── fibonacci │ │ │ ├── CMakeLists.txt │ │ │ ├── Fibonacci.cpp │ │ │ ├── Makefile │ │ │ ├── Makefile.windows │ │ │ ├── msvs │ │ │ │ ├── fibonacci.sln │ │ │ │ └── fibonacci.vcxproj │ │ │ ├── readme.html │ │ │ └── xcode │ │ │ │ └── fibonacci.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── index.html │ │ ├── include │ │ ├── index.html │ │ ├── serial │ │ │ └── tbb │ │ │ │ ├── parallel_for.h │ │ │ │ └── tbb_annotate.h │ │ └── tbb │ │ │ ├── aggregator.h │ │ │ ├── aligned_space.h │ │ │ ├── atomic.h │ │ │ ├── blocked_range.h │ │ │ ├── blocked_range2d.h │ │ │ ├── blocked_range3d.h │ │ │ ├── blocked_rangeNd.h │ │ │ ├── cache_aligned_allocator.h │ │ │ ├── combinable.h │ │ │ ├── compat │ │ │ ├── condition_variable │ │ │ ├── ppl.h │ │ │ ├── thread │ │ │ └── tuple │ │ │ ├── concurrent_hash_map.h │ │ │ ├── concurrent_lru_cache.h │ │ │ ├── concurrent_map.h │ │ │ ├── concurrent_priority_queue.h │ │ │ ├── concurrent_queue.h │ │ │ ├── concurrent_set.h │ │ │ ├── concurrent_unordered_map.h │ │ │ ├── concurrent_unordered_set.h │ │ │ ├── concurrent_vector.h │ │ │ ├── critical_section.h │ │ │ ├── enumerable_thread_specific.h │ │ │ ├── flow_graph.h │ │ │ ├── flow_graph_abstractions.h │ │ │ ├── flow_graph_opencl_node.h │ │ │ ├── global_control.h │ │ │ ├── index.html │ │ │ ├── info.h │ │ │ ├── internal │ │ │ ├── _aggregator_impl.h │ │ │ ├── _allocator_traits.h │ │ │ ├── _concurrent_queue_impl.h │ │ │ ├── _concurrent_skip_list_impl.h │ │ │ ├── _concurrent_unordered_impl.h │ │ │ ├── _deprecated_header_message_guard.h │ │ │ ├── _flow_graph_async_msg_impl.h │ │ │ ├── _flow_graph_body_impl.h │ │ │ ├── _flow_graph_cache_impl.h │ │ │ ├── _flow_graph_impl.h │ │ │ ├── _flow_graph_indexer_impl.h │ │ │ ├── _flow_graph_item_buffer_impl.h │ │ │ ├── _flow_graph_join_impl.h │ │ │ ├── _flow_graph_node_impl.h │ │ │ ├── _flow_graph_node_set_impl.h │ │ │ ├── _flow_graph_nodes_deduction.h │ │ │ ├── _flow_graph_streaming_node.h │ │ │ ├── _flow_graph_tagged_buffer_impl.h │ │ │ ├── _flow_graph_trace_impl.h │ │ │ ├── _flow_graph_types_impl.h │ │ │ ├── _mutex_padding.h │ │ │ ├── _node_handle_impl.h │ │ │ ├── _range_iterator.h │ │ │ ├── _tbb_hash_compare_impl.h │ │ │ ├── _tbb_strings.h │ │ │ ├── _tbb_trace_impl.h │ │ │ ├── _tbb_windef.h │ │ │ ├── _template_helpers.h │ │ │ ├── _warning_suppress_disable_notice.h │ │ │ ├── _warning_suppress_enable_notice.h │ │ │ ├── _x86_eliding_mutex_impl.h │ │ │ └── _x86_rtm_rw_mutex_impl.h │ │ │ ├── iterators.h │ │ │ ├── machine │ │ │ ├── gcc_arm.h │ │ │ ├── gcc_generic.h │ │ │ ├── gcc_ia32_common.h │ │ │ ├── gcc_itsx.h │ │ │ ├── ibm_aix51.h │ │ │ ├── icc_generic.h │ │ │ ├── linux_common.h │ │ │ ├── linux_ia32.h │ │ │ ├── linux_ia64.h │ │ │ ├── linux_intel64.h │ │ │ ├── mac_ppc.h │ │ │ ├── macos_common.h │ │ │ ├── mic_common.h │ │ │ ├── msvc_armv7.h │ │ │ ├── msvc_ia32_common.h │ │ │ ├── sunos_sparc.h │ │ │ ├── windows_api.h │ │ │ ├── windows_ia32.h │ │ │ └── windows_intel64.h │ │ │ ├── memory_pool.h │ │ │ ├── mutex.h │ │ │ ├── null_mutex.h │ │ │ ├── null_rw_mutex.h │ │ │ ├── parallel_do.h │ │ │ ├── parallel_for.h │ │ │ ├── parallel_for_each.h │ │ │ ├── parallel_invoke.h │ │ │ ├── parallel_reduce.h │ │ │ ├── parallel_scan.h │ │ │ ├── parallel_sort.h │ │ │ ├── parallel_while.h │ │ │ ├── partitioner.h │ │ │ ├── pipeline.h │ │ │ ├── queuing_mutex.h │ │ │ ├── queuing_rw_mutex.h │ │ │ ├── reader_writer_lock.h │ │ │ ├── recursive_mutex.h │ │ │ ├── runtime_loader.h │ │ │ ├── scalable_allocator.h │ │ │ ├── spin_mutex.h │ │ │ ├── spin_rw_mutex.h │ │ │ ├── task.h │ │ │ ├── task_arena.h │ │ │ ├── task_group.h │ │ │ ├── task_scheduler_init.h │ │ │ ├── task_scheduler_observer.h │ │ │ ├── tbb.h │ │ │ ├── tbb_allocator.h │ │ │ ├── tbb_config.h │ │ │ ├── tbb_disable_exceptions.h │ │ │ ├── tbb_exception.h │ │ │ ├── tbb_machine.h │ │ │ ├── tbb_profiling.h │ │ │ ├── tbb_stddef.h │ │ │ ├── tbb_thread.h │ │ │ ├── tbbmalloc_proxy.h │ │ │ └── tick_count.h │ │ ├── index.html │ │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ │ ├── python │ │ ├── Makefile │ │ ├── TBB.py │ │ ├── index.html │ │ ├── rml │ │ │ ├── Makefile │ │ │ ├── ipc_server.cpp │ │ │ ├── ipc_utils.cpp │ │ │ └── ipc_utils.h │ │ ├── setup.py │ │ └── tbb │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── api.i │ │ │ ├── pool.py │ │ │ └── test.py │ │ ├── src │ │ ├── Makefile │ │ ├── index.html │ │ ├── old │ │ │ ├── concurrent_queue_v2.cpp │ │ │ ├── concurrent_queue_v2.h │ │ │ ├── concurrent_vector_v2.cpp │ │ │ ├── concurrent_vector_v2.h │ │ │ ├── spin_rw_mutex_v2.cpp │ │ │ ├── spin_rw_mutex_v2.h │ │ │ ├── task_v2.cpp │ │ │ ├── test_concurrent_queue_v2.cpp │ │ │ ├── test_concurrent_vector_v2.cpp │ │ │ ├── test_mutex_v2.cpp │ │ │ └── test_task_scheduler_observer_v3.cpp │ │ ├── perf │ │ │ ├── coarse_grained_raii_lru_cache.h │ │ │ ├── cpq_pdes.cpp │ │ │ ├── fibonacci_impl_tbb.cpp │ │ │ ├── harness_perf.h │ │ │ ├── perf.cpp │ │ │ ├── perf.h │ │ │ ├── perf_sched.cpp │ │ │ ├── run_statistics.sh │ │ │ ├── statistics.cpp │ │ │ ├── statistics.h │ │ │ ├── statistics_xml.h │ │ │ ├── time_async_return.cpp │ │ │ ├── time_cpq_throughput_test.cpp │ │ │ ├── time_fibonacci_cutoff.cpp │ │ │ ├── time_framework.h │ │ │ ├── time_hash_map.cpp │ │ │ ├── time_hash_map_fill.cpp │ │ │ ├── time_hash_map_fill.html │ │ │ ├── time_locked_work.cpp │ │ │ ├── time_lru_cache_throughput.cpp │ │ │ ├── time_parallel_for_each.cpp │ │ │ ├── time_resumable_tasks.cpp │ │ │ ├── time_sandbox.h │ │ │ ├── time_split_node.cpp │ │ │ └── time_vector.cpp │ │ ├── rml │ │ │ ├── client │ │ │ │ ├── index.html │ │ │ │ ├── library_assert.h │ │ │ │ ├── omp_dynamic_link.cpp │ │ │ │ ├── omp_dynamic_link.h │ │ │ │ ├── rml_factory.h │ │ │ │ ├── rml_omp.cpp │ │ │ │ └── rml_tbb.cpp │ │ │ ├── include │ │ │ │ ├── index.html │ │ │ │ ├── rml_base.h │ │ │ │ ├── rml_omp.h │ │ │ │ └── rml_tbb.h │ │ │ ├── index.html │ │ │ ├── perfor │ │ │ │ ├── omp_nested.cpp │ │ │ │ ├── omp_simple.cpp │ │ │ │ ├── tbb_multi_omp.cpp │ │ │ │ ├── tbb_simple.cpp │ │ │ │ └── thread_level.h │ │ │ ├── server │ │ │ │ ├── index.html │ │ │ │ ├── irml.rc │ │ │ │ ├── job_automaton.h │ │ │ │ ├── lin-rml-export.def │ │ │ │ ├── rml_server.cpp │ │ │ │ ├── thread_monitor.h │ │ │ │ ├── wait_counter.h │ │ │ │ ├── win32-rml-export.def │ │ │ │ └── win64-rml-export.def │ │ │ └── test │ │ │ │ ├── rml_omp_stub.cpp │ │ │ │ ├── test_job_automaton.cpp │ │ │ │ ├── test_rml_mixed.cpp │ │ │ │ ├── test_rml_omp.cpp │ │ │ │ ├── test_rml_omp_c_linkage.c │ │ │ │ ├── test_rml_tbb.cpp │ │ │ │ ├── test_server.h │ │ │ │ └── test_thread_monitor.cpp │ │ ├── tbb │ │ │ ├── arena.cpp │ │ │ ├── arena.h │ │ │ ├── cache_aligned_allocator.cpp │ │ │ ├── cilk-tbb-interop.h │ │ │ ├── co_context.h │ │ │ ├── concurrent_hash_map.cpp │ │ │ ├── concurrent_monitor.cpp │ │ │ ├── concurrent_monitor.h │ │ │ ├── concurrent_queue.cpp │ │ │ ├── concurrent_vector.cpp │ │ │ ├── condition_variable.cpp │ │ │ ├── critical_section.cpp │ │ │ ├── custom_scheduler.h │ │ │ ├── dynamic_link.cpp │ │ │ ├── dynamic_link.h │ │ │ ├── governor.cpp │ │ │ ├── governor.h │ │ │ ├── ia32-masm │ │ │ │ ├── atomic_support.asm │ │ │ │ ├── itsx.asm │ │ │ │ └── lock_byte.asm │ │ │ ├── ia64-gas │ │ │ │ ├── atomic_support.s │ │ │ │ ├── ia64_misc.s │ │ │ │ ├── lock_byte.s │ │ │ │ ├── log2.s │ │ │ │ └── pause.s │ │ │ ├── ibm_aix51 │ │ │ │ └── atomic_support.c │ │ │ ├── index.html │ │ │ ├── intel64-masm │ │ │ │ ├── atomic_support.asm │ │ │ │ ├── intel64_misc.asm │ │ │ │ └── itsx.asm │ │ │ ├── intrusive_list.h │ │ │ ├── itt_notify.cpp │ │ │ ├── itt_notify.h │ │ │ ├── lin32-tbb-export.def │ │ │ ├── lin32-tbb-export.lst │ │ │ ├── lin32-tbbbind-export.def │ │ │ ├── lin64-tbb-export.def │ │ │ ├── lin64-tbb-export.lst │ │ │ ├── lin64-tbbbind-export.def │ │ │ ├── lin64ipf-tbb-export.def │ │ │ ├── lin64ipf-tbb-export.lst │ │ │ ├── mac32-tbb-export.def │ │ │ ├── mac32-tbb-export.lst │ │ │ ├── mac64-tbb-export.def │ │ │ ├── mac64-tbb-export.lst │ │ │ ├── mailbox.h │ │ │ ├── market.cpp │ │ │ ├── market.h │ │ │ ├── mutex.cpp │ │ │ ├── observer_proxy.cpp │ │ │ ├── observer_proxy.h │ │ │ ├── pipeline.cpp │ │ │ ├── private_server.cpp │ │ │ ├── queuing_mutex.cpp │ │ │ ├── queuing_rw_mutex.cpp │ │ │ ├── reader_writer_lock.cpp │ │ │ ├── recursive_mutex.cpp │ │ │ ├── scheduler.cpp │ │ │ ├── scheduler.h │ │ │ ├── scheduler_common.h │ │ │ ├── scheduler_utility.h │ │ │ ├── semaphore.cpp │ │ │ ├── semaphore.h │ │ │ ├── spin_mutex.cpp │ │ │ ├── spin_rw_mutex.cpp │ │ │ ├── task.cpp │ │ │ ├── task_group_context.cpp │ │ │ ├── task_stream.h │ │ │ ├── task_stream_extended.h │ │ │ ├── tbb_assert_impl.h │ │ │ ├── tbb_bind.cpp │ │ │ ├── tbb_environment.h │ │ │ ├── tbb_main.cpp │ │ │ ├── tbb_main.h │ │ │ ├── tbb_misc.cpp │ │ │ ├── tbb_misc.h │ │ │ ├── tbb_misc_ex.cpp │ │ │ ├── tbb_resource.rc │ │ │ ├── tbb_statistics.cpp │ │ │ ├── tbb_statistics.h │ │ │ ├── tbb_thread.cpp │ │ │ ├── tbb_version.h │ │ │ ├── tls.h │ │ │ ├── tools_api │ │ │ │ ├── disable_warnings.h │ │ │ │ ├── ittnotify.h │ │ │ │ ├── ittnotify_config.h │ │ │ │ ├── ittnotify_static.c │ │ │ │ ├── ittnotify_static.h │ │ │ │ ├── ittnotify_types.h │ │ │ │ └── legacy │ │ │ │ │ └── ittnotify.h │ │ │ ├── win32-tbb-export.def │ │ │ ├── win32-tbb-export.lst │ │ │ ├── win32-tbbbind-export.def │ │ │ ├── win64-gcc-tbb-export.def │ │ │ ├── win64-gcc-tbb-export.lst │ │ │ ├── win64-tbb-export.def │ │ │ ├── win64-tbb-export.lst │ │ │ ├── win64-tbbbind-export.def │ │ │ ├── winrt-tbb-export.lst │ │ │ └── x86_rtm_rw_mutex.cpp │ │ ├── tbbmalloc │ │ │ ├── Customize.h │ │ │ ├── MapMemory.h │ │ │ ├── Statistics.h │ │ │ ├── Synchronize.h │ │ │ ├── TypeDefinitions.h │ │ │ ├── backend.cpp │ │ │ ├── backend.h │ │ │ ├── backref.cpp │ │ │ ├── frontend.cpp │ │ │ ├── index.html │ │ │ ├── large_objects.cpp │ │ │ ├── large_objects.h │ │ │ ├── lin32-proxy-export.def │ │ │ ├── lin32-tbbmalloc-export.def │ │ │ ├── lin64-proxy-export.def │ │ │ ├── lin64-tbbmalloc-export.def │ │ │ ├── lin64ipf-proxy-export.def │ │ │ ├── lin64ipf-tbbmalloc-export.def │ │ │ ├── mac32-tbbmalloc-export.def │ │ │ ├── mac64-tbbmalloc-export.def │ │ │ ├── proxy.cpp │ │ │ ├── proxy.h │ │ │ ├── proxy_overload_osx.h │ │ │ ├── shared_utils.h │ │ │ ├── tbb_function_replacement.cpp │ │ │ ├── tbb_function_replacement.h │ │ │ ├── tbbmalloc.cpp │ │ │ ├── tbbmalloc.rc │ │ │ ├── tbbmalloc_internal.h │ │ │ ├── tbbmalloc_internal_api.h │ │ │ ├── win32-gcc-tbbmalloc-export.def │ │ │ ├── win32-tbbmalloc-export.def │ │ │ ├── win64-gcc-tbbmalloc-export.def │ │ │ └── win64-tbbmalloc-export.def │ │ ├── tbbproxy │ │ │ ├── tbbproxy-windows.asm │ │ │ └── tbbproxy.cpp │ │ └── test │ │ │ ├── harness.h │ │ │ ├── harness_allocator.h │ │ │ ├── harness_allocator_overload.h │ │ │ ├── harness_assert.h │ │ │ ├── harness_bad_expr.h │ │ │ ├── harness_barrier.h │ │ │ ├── harness_checktype.h │ │ │ ├── harness_concurrency.h │ │ │ ├── harness_concurrency_tracker.h │ │ │ ├── harness_cpu.h │ │ │ ├── harness_defs.h │ │ │ ├── harness_dynamic_libs.h │ │ │ ├── harness_eh.h │ │ │ ├── harness_fp.h │ │ │ ├── harness_graph.h │ │ │ ├── harness_inject_scheduler.h │ │ │ ├── harness_iterator.h │ │ │ ├── harness_m128.h │ │ │ ├── harness_memory.h │ │ │ ├── harness_mic.h │ │ │ ├── harness_preload.h │ │ │ ├── harness_report.h │ │ │ ├── harness_runtime_loader.h │ │ │ ├── harness_state_trackable.h │ │ │ ├── harness_task.h │ │ │ ├── harness_tbb_independence.h │ │ │ ├── harness_test_cases_framework.h │ │ │ ├── harness_tls.h │ │ │ ├── harness_tsx.h │ │ │ ├── test_ScalableAllocator.cpp │ │ │ ├── test_ScalableAllocator_STL.cpp │ │ │ ├── test_aggregator.cpp │ │ │ ├── test_aligned_space.cpp │ │ │ ├── test_allocator.h │ │ │ ├── test_allocator_STL.h │ │ │ ├── test_arena_constraints_hwloc.cpp │ │ │ ├── test_arena_constraints_stubs.cpp │ │ │ ├── test_assembly.cpp │ │ │ ├── test_async_msg.cpp │ │ │ ├── test_async_node.cpp │ │ │ ├── test_atomic.cpp │ │ │ ├── test_blocked_range.cpp │ │ │ ├── test_blocked_range2d.cpp │ │ │ ├── test_blocked_range3d.cpp │ │ │ ├── test_blocked_rangeNd.cpp │ │ │ ├── test_broadcast_node.cpp │ │ │ ├── test_buffer_node.cpp │ │ │ ├── test_cache_aligned_allocator.cpp │ │ │ ├── test_cache_aligned_allocator_STL.cpp │ │ │ ├── test_cilk_common.h │ │ │ ├── test_cilk_dynamic_load.cpp │ │ │ ├── test_cilk_interop.cpp │ │ │ ├── test_combinable.cpp │ │ │ ├── test_composite_node.cpp │ │ │ ├── test_concurrent_associative_common.h │ │ │ ├── test_concurrent_hash_map.cpp │ │ │ ├── test_concurrent_lru_cache.cpp │ │ │ ├── test_concurrent_map.cpp │ │ │ ├── test_concurrent_monitor.cpp │ │ │ ├── test_concurrent_ordered_common.h │ │ │ ├── test_concurrent_priority_queue.cpp │ │ │ ├── test_concurrent_queue.cpp │ │ │ ├── test_concurrent_queue_whitebox.cpp │ │ │ ├── test_concurrent_set.cpp │ │ │ ├── test_concurrent_unordered_common.h │ │ │ ├── test_concurrent_unordered_map.cpp │ │ │ ├── test_concurrent_unordered_set.cpp │ │ │ ├── test_concurrent_vector.cpp │ │ │ ├── test_condition_variable.h │ │ │ ├── test_container_move_support.h │ │ │ ├── test_continue_node.cpp │ │ │ ├── test_critical_section.cpp │ │ │ ├── test_dynamic_link.cpp │ │ │ ├── test_eh_algorithms.cpp │ │ │ ├── test_eh_flow_graph.cpp │ │ │ ├── test_eh_tasks.cpp │ │ │ ├── test_enumerable_thread_specific.cpp │ │ │ ├── test_environment_whitebox.cpp │ │ │ ├── test_examples_common_utility.cpp │ │ │ ├── test_fast_random.cpp │ │ │ ├── test_flow_graph.cpp │ │ │ ├── test_flow_graph_priorities.cpp │ │ │ ├── test_flow_graph_whitebox.cpp │ │ │ ├── test_follows_and_precedes_api.h │ │ │ ├── test_fp.cpp │ │ │ ├── test_function_node.cpp │ │ │ ├── test_global_control.cpp │ │ │ ├── test_global_control_whitebox.cpp │ │ │ ├── test_halt.cpp │ │ │ ├── test_handle_perror.cpp │ │ │ ├── test_hw_concurrency.cpp │ │ │ ├── test_indexer_node.cpp │ │ │ ├── test_initializer_list.h │ │ │ ├── test_inits_loop.cpp │ │ │ ├── test_input_node.cpp │ │ │ ├── test_intrusive_list.cpp │ │ │ ├── test_iterators.cpp │ │ │ ├── test_ittnotify.cpp │ │ │ ├── test_join_node.cpp │ │ │ ├── test_join_node.h │ │ │ ├── test_join_node_key_matching.cpp │ │ │ ├── test_join_node_msg_key_matching.cpp │ │ │ ├── test_lambda.cpp │ │ │ ├── test_limiter_node.cpp │ │ │ ├── test_malloc_atexit.cpp │ │ │ ├── test_malloc_compliance.cpp │ │ │ ├── test_malloc_init_shutdown.cpp │ │ │ ├── test_malloc_lib_unload.cpp │ │ │ ├── test_malloc_new_handler.cpp │ │ │ ├── test_malloc_overload.cpp │ │ │ ├── test_malloc_overload_disable.cpp │ │ │ ├── test_malloc_pools.cpp │ │ │ ├── test_malloc_pure_c.c │ │ │ ├── test_malloc_regression.cpp │ │ │ ├── test_malloc_shutdown_hang.cpp │ │ │ ├── test_malloc_used_by_lib.cpp │ │ │ ├── test_malloc_whitebox.cpp │ │ │ ├── test_model_plugin.cpp │ │ │ ├── test_multifunction_node.cpp │ │ │ ├── test_mutex.cpp │ │ │ ├── test_mutex_native_threads.cpp │ │ │ ├── test_opencl_kernel_32.spir │ │ │ ├── test_opencl_kernel_64.spir │ │ │ ├── test_opencl_node.cl │ │ │ ├── test_opencl_node.cpp │ │ │ ├── test_opencl_precompiled_kernel_gpu_32.ir │ │ │ ├── test_opencl_precompiled_kernel_gpu_64.ir │ │ │ ├── test_openmp.cpp │ │ │ ├── test_overwrite_node.cpp │ │ │ ├── test_parallel_do.cpp │ │ │ ├── test_parallel_for.cpp │ │ │ ├── test_parallel_for_each.cpp │ │ │ ├── test_parallel_for_vectorization.cpp │ │ │ ├── test_parallel_invoke.cpp │ │ │ ├── test_parallel_pipeline.cpp │ │ │ ├── test_parallel_reduce.cpp │ │ │ ├── test_parallel_scan.cpp │ │ │ ├── test_parallel_sort.cpp │ │ │ ├── test_parallel_while.cpp │ │ │ ├── test_partitioner.h │ │ │ ├── test_partitioner_whitebox.cpp │ │ │ ├── test_partitioner_whitebox.h │ │ │ ├── test_pipeline.cpp │ │ │ ├── test_pipeline_with_tbf.cpp │ │ │ ├── test_priority_queue_node.cpp │ │ │ ├── test_queue_node.cpp │ │ │ ├── test_range_based_for.h │ │ │ ├── test_reader_writer_lock.cpp │ │ │ ├── test_resumable_tasks.cpp │ │ │ ├── test_runtime_loader.cpp │ │ │ ├── test_rwm_upgrade_downgrade.cpp │ │ │ ├── test_semaphore.cpp │ │ │ ├── test_sequencer_node.cpp │ │ │ ├── test_source_node.cpp │ │ │ ├── test_split_node.cpp │ │ │ ├── test_static_assert.cpp │ │ │ ├── test_std_thread.cpp │ │ │ ├── test_streaming_node.cpp │ │ │ ├── test_tagged_msg.cpp │ │ │ ├── test_task.cpp │ │ │ ├── test_task_arena.cpp │ │ │ ├── test_task_assertions.cpp │ │ │ ├── test_task_auto_init.cpp │ │ │ ├── test_task_enqueue.cpp │ │ │ ├── test_task_group.cpp │ │ │ ├── test_task_leaks.cpp │ │ │ ├── test_task_priority.cpp │ │ │ ├── test_task_scheduler_init.cpp │ │ │ ├── test_task_scheduler_observer.cpp │ │ │ ├── test_task_steal_limit.cpp │ │ │ ├── test_tbb_condition_variable.cpp │ │ │ ├── test_tbb_fork.cpp │ │ │ ├── test_tbb_header.cpp │ │ │ ├── test_tbb_thread.cpp │ │ │ ├── test_tbb_version.cpp │ │ │ ├── test_thread.h │ │ │ ├── test_tick_count.cpp │ │ │ ├── test_tuple.cpp │ │ │ ├── test_write_once_node.cpp │ │ │ └── test_yield.cpp │ │ └── third-party-programs.txt └── im │ ├── include │ ├── aabb.h │ ├── adjacency.h │ ├── batch.h │ ├── bvh.h │ ├── cleanup.h │ ├── common.h │ ├── dedge.h │ ├── extract.h │ ├── field.h │ ├── hierarchy.h │ ├── meshio.h │ ├── meshstats.h │ ├── normal.h │ ├── reorder.h │ ├── serializer.h │ ├── smoothing.h │ └── subdivide.h │ └── src │ ├── adjacency.cpp │ ├── batch.cpp │ ├── bvh.cpp │ ├── cleanup.cpp │ ├── dedge.cpp │ ├── extract.cpp │ ├── field.cpp │ ├── hierarchy.cpp │ ├── meshio.cpp │ ├── meshstats.cpp │ ├── normal.cpp │ ├── reorder.cpp │ ├── serializer.cpp │ ├── smoothing.cpp │ └── subdivide.cpp ├── pyproject.toml ├── requirements-dev.txt ├── requirements-test.txt ├── requirements.txt ├── src ├── process_numpy.cpp └── pynanoinstantmeshes │ └── __init__.py └── tests └── test_remeshing.py /.github/workflows/build_wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/.github/workflows/build_wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/README.md -------------------------------------------------------------------------------- /native/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/CMakeLists.txt -------------------------------------------------------------------------------- /native/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/LICENSE.txt -------------------------------------------------------------------------------- /native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/README.md -------------------------------------------------------------------------------- /native/ext/dset/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/dset/LICENSE.txt -------------------------------------------------------------------------------- /native/ext/dset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/dset/README.md -------------------------------------------------------------------------------- /native/ext/dset/dset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/dset/dset.h -------------------------------------------------------------------------------- /native/ext/eigen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/.gitignore -------------------------------------------------------------------------------- /native/ext/eigen/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/.hgeol -------------------------------------------------------------------------------- /native/ext/eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/eigen/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/COPYING.BSD -------------------------------------------------------------------------------- /native/ext/eigen/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/COPYING.GPL -------------------------------------------------------------------------------- /native/ext/eigen/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/COPYING.LGPL -------------------------------------------------------------------------------- /native/ext/eigen/COPYING.MINPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/COPYING.MINPACK -------------------------------------------------------------------------------- /native/ext/eigen/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/COPYING.MPL2 -------------------------------------------------------------------------------- /native/ext/eigen/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/COPYING.README -------------------------------------------------------------------------------- /native/ext/eigen/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/CTestConfig.cmake -------------------------------------------------------------------------------- /native/ext/eigen/CTestCustom.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/CTestCustom.cmake.in -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/Cholesky -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/CholmodSupport -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/Core -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/Dense -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/Eigen -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/Eigenvalues -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/Geometry -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/Householder -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/Jacobi -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/LU -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/MetisSupport -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/OrderingMethods -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/PardisoSupport -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/QR -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/SPQRSupport -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/SVD -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/Sparse -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/SparseCholesky -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/SparseCore -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/SparseLU -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/SparseQR -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/StdDeque -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/StdList -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/StdVector -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /native/ext/eigen/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /native/ext/eigen/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/INSTALL -------------------------------------------------------------------------------- /native/ext/eigen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/README.md -------------------------------------------------------------------------------- /native/ext/eigen/bench/BenchSparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/BenchSparseUtil.h -------------------------------------------------------------------------------- /native/ext/eigen/bench/BenchTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/BenchTimer.h -------------------------------------------------------------------------------- /native/ext/eigen/bench/BenchUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/BenchUtil.h -------------------------------------------------------------------------------- /native/ext/eigen/bench/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/README.txt -------------------------------------------------------------------------------- /native/ext/eigen/bench/basicbench.cxxlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/basicbench.cxxlist -------------------------------------------------------------------------------- /native/ext/eigen/bench/basicbenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/basicbenchmark.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/basicbenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/basicbenchmark.h -------------------------------------------------------------------------------- /native/ext/eigen/bench/benchBlasGemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/benchBlasGemm.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/benchCholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/benchCholesky.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/benchEigenSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/benchEigenSolver.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/benchFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/benchFFT.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/benchGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/benchGeometry.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/benchVecAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/benchVecAdd.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/bench_gemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/bench_gemm.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/bench_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/bench_norm.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/bench_reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/bench_reverse.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/bench_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/bench_sum.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/bench_unrolling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/bench_unrolling -------------------------------------------------------------------------------- /native/ext/eigen/bench/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/benchmark.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/benchmarkSlice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/benchmarkSlice.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/benchmarkX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/benchmarkX.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/benchmarkXcwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/benchmarkXcwise.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/benchmark_suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/benchmark_suite -------------------------------------------------------------------------------- /native/ext/eigen/bench/btl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/btl/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/eigen/bench/btl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/btl/COPYING -------------------------------------------------------------------------------- /native/ext/eigen/bench/btl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/btl/README -------------------------------------------------------------------------------- /native/ext/eigen/bench/btl/data/go_mean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/btl/data/go_mean -------------------------------------------------------------------------------- /native/ext/eigen/bench/btl/data/mean.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/btl/data/mean.cxx -------------------------------------------------------------------------------- /native/ext/eigen/bench/btl/data/smooth.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/btl/data/smooth.cxx -------------------------------------------------------------------------------- /native/ext/eigen/bench/btl/libs/BLAS/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/btl/libs/BLAS/blas.h -------------------------------------------------------------------------------- /native/ext/eigen/bench/btl/libs/STL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/btl/libs/STL/main.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/btl/libs/gmm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/btl/libs/gmm/main.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/dense_solvers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/dense_solvers.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/eig33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/eig33.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/geometry.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/product_threshold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/product_threshold.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/quat_slerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/quat_slerp.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/quatmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/quatmul.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/sparse_cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/sparse_cholesky.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/sparse_lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/sparse_lu.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/sparse_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/sparse_product.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/sparse_setter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/sparse_setter.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/sparse_transpose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/sparse_transpose.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/sparse_trisolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/sparse_trisolver.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/spbench/sp_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/spbench/sp_solver.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/spbench/spbench.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/spbench/spbench.dtd -------------------------------------------------------------------------------- /native/ext/eigen/bench/spmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/spmv.cpp -------------------------------------------------------------------------------- /native/ext/eigen/bench/tensors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/tensors/README -------------------------------------------------------------------------------- /native/ext/eigen/bench/tensors/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/tensors/benchmark.h -------------------------------------------------------------------------------- /native/ext/eigen/bench/vdw_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/bench/vdw_new.cpp -------------------------------------------------------------------------------- /native/ext/eigen/blas/BandTriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/BandTriangularSolver.h -------------------------------------------------------------------------------- /native/ext/eigen/blas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/eigen/blas/GeneralRank1Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/GeneralRank1Update.h -------------------------------------------------------------------------------- /native/ext/eigen/blas/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/README.txt -------------------------------------------------------------------------------- /native/ext/eigen/blas/Rank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/Rank2Update.h -------------------------------------------------------------------------------- /native/ext/eigen/blas/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/common.h -------------------------------------------------------------------------------- /native/ext/eigen/blas/complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/complex_double.cpp -------------------------------------------------------------------------------- /native/ext/eigen/blas/complex_single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/complex_single.cpp -------------------------------------------------------------------------------- /native/ext/eigen/blas/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/double.cpp -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/chbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/chbmv.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/chpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/chpmv.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/complexdots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/complexdots.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/ctbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/ctbmv.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/d_cnjg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/d_cnjg.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/datatypes.h -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/drotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/drotm.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/drotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/drotmg.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/dsbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/dsbmv.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/dspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/dspmv.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/dtbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/dtbmv.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/lsame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/lsame.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/r_cnjg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/r_cnjg.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/srotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/srotm.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/srotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/srotmg.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/ssbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/ssbmv.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/sspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/sspmv.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/stbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/stbmv.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/zhbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/zhbmv.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/zhpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/zhpmv.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/f2c/ztbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/f2c/ztbmv.c -------------------------------------------------------------------------------- /native/ext/eigen/blas/fortran/complexdots.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/fortran/complexdots.f -------------------------------------------------------------------------------- /native/ext/eigen/blas/level1_cplx_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/level1_cplx_impl.h -------------------------------------------------------------------------------- /native/ext/eigen/blas/level1_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/level1_impl.h -------------------------------------------------------------------------------- /native/ext/eigen/blas/level1_real_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/level1_real_impl.h -------------------------------------------------------------------------------- /native/ext/eigen/blas/level2_cplx_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/level2_cplx_impl.h -------------------------------------------------------------------------------- /native/ext/eigen/blas/level2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/level2_impl.h -------------------------------------------------------------------------------- /native/ext/eigen/blas/level2_real_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/level2_real_impl.h -------------------------------------------------------------------------------- /native/ext/eigen/blas/level3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/level3_impl.h -------------------------------------------------------------------------------- /native/ext/eigen/blas/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/single.cpp -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/cblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/cblat1.f -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/cblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/cblat2.dat -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/cblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/cblat2.f -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/cblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/cblat3.dat -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/cblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/cblat3.f -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/dblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/dblat1.f -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/dblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/dblat2.dat -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/dblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/dblat2.f -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/dblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/dblat3.dat -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/dblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/dblat3.f -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/runblastest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/runblastest.sh -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/sblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/sblat1.f -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/sblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/sblat2.dat -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/sblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/sblat2.f -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/sblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/sblat3.dat -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/sblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/sblat3.f -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/zblat1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/zblat1.f -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/zblat2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/zblat2.dat -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/zblat2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/zblat2.f -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/zblat3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/zblat3.dat -------------------------------------------------------------------------------- /native/ext/eigen/blas/testing/zblat3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/testing/zblat3.f -------------------------------------------------------------------------------- /native/ext/eigen/blas/xerbla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/blas/xerbla.cpp -------------------------------------------------------------------------------- /native/ext/eigen/cmake/Eigen3Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/Eigen3Config.cmake.in -------------------------------------------------------------------------------- /native/ext/eigen/cmake/EigenTesting.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/EigenTesting.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/EigenUninstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/EigenUninstall.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindAdolc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindAdolc.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindBLAS.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindBLASEXT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindBLASEXT.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindCholmod.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindCholmod.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindComputeCpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindComputeCpp.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindEigen2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindEigen2.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindEigen3.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindFFTW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindFFTW.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindGMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindGMP.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindGSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindGSL.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindGoogleHash.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindGoogleHash.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindHWLOC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindHWLOC.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindLAPACK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindLAPACK.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindMPFR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindMPFR.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindMetis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindMetis.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindPTSCOTCH.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindPTSCOTCH.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindPastix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindPastix.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindSPQR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindSPQR.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindScotch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindScotch.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindSuperLU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindSuperLU.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/FindUmfpack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/FindUmfpack.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/RegexUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/RegexUtils.cmake -------------------------------------------------------------------------------- /native/ext/eigen/cmake/UseEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/cmake/UseEigen3.cmake -------------------------------------------------------------------------------- /native/ext/eigen/debug/gdb/__init__.py: -------------------------------------------------------------------------------- 1 | # Intentionally empty 2 | -------------------------------------------------------------------------------- /native/ext/eigen/debug/gdb/printers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/debug/gdb/printers.py -------------------------------------------------------------------------------- /native/ext/eigen/debug/msvc/eigen.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/debug/msvc/eigen.natvis -------------------------------------------------------------------------------- /native/ext/eigen/demos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/demos/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/eigen/demos/mandelbrot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/demos/mandelbrot/README -------------------------------------------------------------------------------- /native/ext/eigen/demos/opengl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/demos/opengl/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/eigen/demos/opengl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/demos/opengl/README -------------------------------------------------------------------------------- /native/ext/eigen/demos/opengl/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/demos/opengl/camera.cpp -------------------------------------------------------------------------------- /native/ext/eigen/demos/opengl/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/demos/opengl/camera.h -------------------------------------------------------------------------------- /native/ext/eigen/demos/opengl/gpuhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/demos/opengl/gpuhelper.cpp -------------------------------------------------------------------------------- /native/ext/eigen/demos/opengl/gpuhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/demos/opengl/gpuhelper.h -------------------------------------------------------------------------------- /native/ext/eigen/demos/opengl/icosphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/demos/opengl/icosphere.cpp -------------------------------------------------------------------------------- /native/ext/eigen/demos/opengl/icosphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/demos/opengl/icosphere.h -------------------------------------------------------------------------------- /native/ext/eigen/demos/opengl/trackball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/demos/opengl/trackball.cpp -------------------------------------------------------------------------------- /native/ext/eigen/demos/opengl/trackball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/demos/opengl/trackball.h -------------------------------------------------------------------------------- /native/ext/eigen/doc/A05_PortingFrom2To3.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/A05_PortingFrom2To3.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/AsciiQuickReference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/AsciiQuickReference.txt -------------------------------------------------------------------------------- /native/ext/eigen/doc/B01_Experimental.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/B01_Experimental.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/eigen/doc/ClassHierarchy.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/ClassHierarchy.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/Doxyfile.in -------------------------------------------------------------------------------- /native/ext/eigen/doc/HiPerformance.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/HiPerformance.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/InsideEigenExample.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/InsideEigenExample.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/LeastSquares.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/LeastSquares.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/Manual.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/Manual.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/NewExpressionType.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/NewExpressionType.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/Overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/Overview.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/PassingByValue.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/PassingByValue.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/Pitfalls.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/Pitfalls.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/QuickReference.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/QuickReference.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/QuickStartGuide.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/QuickStartGuide.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/SparseLinearSystems.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/SparseLinearSystems.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/StlContainers.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/StlContainers.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/StorageOrders.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/StorageOrders.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/TemplateKeyword.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/TemplateKeyword.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/TopicAliasing.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/TopicAliasing.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/TopicAssertions.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/TopicAssertions.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/TopicCMakeGuide.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/TopicCMakeGuide.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/TopicLazyEvaluation.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/TopicLazyEvaluation.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/TopicMultithreading.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/TopicMultithreading.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/TopicResizing.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/TopicResizing.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/TopicScalarTypes.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/TopicScalarTypes.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/TopicVectorization.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/TopicVectorization.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/TutorialArrayClass.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/TutorialArrayClass.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/TutorialGeometry.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/TutorialGeometry.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/TutorialMapClass.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/TutorialMapClass.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/TutorialMatrixClass.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/TutorialMatrixClass.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/TutorialSparse.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/TutorialSparse.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/UsingIntelMKL.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/UsingIntelMKL.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/UsingNVCC.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/UsingNVCC.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/WrongStackAlignment.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/WrongStackAlignment.dox -------------------------------------------------------------------------------- /native/ext/eigen/doc/eigen_navtree_hacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/eigen_navtree_hacks.js -------------------------------------------------------------------------------- /native/ext/eigen/doc/eigendoxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/eigendoxy.css -------------------------------------------------------------------------------- /native/ext/eigen/doc/eigendoxy_layout.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/eigendoxy_layout.xml.in -------------------------------------------------------------------------------- /native/ext/eigen/doc/eigendoxy_tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/eigendoxy_tabs.css -------------------------------------------------------------------------------- /native/ext/eigen/doc/examples/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/examples/.krazy -------------------------------------------------------------------------------- /native/ext/eigen/doc/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/examples/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/eigen/doc/examples/Cwise_erf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/examples/Cwise_erf.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/examples/Cwise_erfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/examples/Cwise_erfc.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/ftv2node.png -------------------------------------------------------------------------------- /native/ext/eigen/doc/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/ftv2pnode.png -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/.krazy -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/Cwise_abs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/Cwise_abs.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/Cwise_abs2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/Cwise_abs2.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/Cwise_acos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/Cwise_acos.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/Cwise_arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/Cwise_arg.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/Cwise_asin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/Cwise_asin.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/Cwise_atan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/Cwise_atan.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/Cwise_ceil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/Cwise_ceil.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/Cwise_cos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/Cwise_cos.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/Cwise_cosh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/Cwise_cosh.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/Cwise_cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/Cwise_cube.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/Cwise_exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/Cwise_exp.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/Cwise_less.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/Cwise_less.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/Cwise_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/Cwise_log.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/Cwise_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/snippets/Cwise_max.cpp -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/MatrixBase_cwiseSqrt.cpp: -------------------------------------------------------------------------------- 1 | Vector3d v(1,2,4); 2 | cout << v.cwiseSqrt() << endl; 3 | -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/MatrixBase_identity.cpp: -------------------------------------------------------------------------------- 1 | cout << Matrix::Identity() << endl; 2 | -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/MatrixBase_identity_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXd::Identity(4, 3) << endl; 2 | -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/MatrixBase_ones_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Ones(2,3) << endl; 2 | -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/MatrixBase_random.cpp: -------------------------------------------------------------------------------- 1 | cout << 100 * Matrix2i::Random() << endl; 2 | -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/MatrixBase_random_int.cpp: -------------------------------------------------------------------------------- 1 | cout << VectorXi::Random(2) << endl; 2 | -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/MatrixBase_random_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Random(2,3) << endl; 2 | -------------------------------------------------------------------------------- /native/ext/eigen/doc/snippets/MatrixBase_zero_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Zero(2,3) << endl; 2 | -------------------------------------------------------------------------------- /native/ext/eigen/doc/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/doc/tutorial.cpp -------------------------------------------------------------------------------- /native/ext/eigen/eigen3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/eigen3.pc.in -------------------------------------------------------------------------------- /native/ext/eigen/failtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/failtest/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/eigen/failtest/bdcsvd_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/failtest/bdcsvd_int.cpp -------------------------------------------------------------------------------- /native/ext/eigen/failtest/ldlt_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/failtest/ldlt_int.cpp -------------------------------------------------------------------------------- /native/ext/eigen/failtest/llt_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/failtest/llt_int.cpp -------------------------------------------------------------------------------- /native/ext/eigen/failtest/qr_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/failtest/qr_int.cpp -------------------------------------------------------------------------------- /native/ext/eigen/failtest/ref_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/failtest/ref_1.cpp -------------------------------------------------------------------------------- /native/ext/eigen/failtest/ref_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/failtest/ref_2.cpp -------------------------------------------------------------------------------- /native/ext/eigen/failtest/ref_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/failtest/ref_3.cpp -------------------------------------------------------------------------------- /native/ext/eigen/failtest/ref_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/failtest/ref_4.cpp -------------------------------------------------------------------------------- /native/ext/eigen/failtest/ref_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/failtest/ref_5.cpp -------------------------------------------------------------------------------- /native/ext/eigen/failtest/swap_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/failtest/swap_1.cpp -------------------------------------------------------------------------------- /native/ext/eigen/failtest/swap_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/failtest/swap_2.cpp -------------------------------------------------------------------------------- /native/ext/eigen/failtest/ternary_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/failtest/ternary_1.cpp -------------------------------------------------------------------------------- /native/ext/eigen/failtest/ternary_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/failtest/ternary_2.cpp -------------------------------------------------------------------------------- /native/ext/eigen/lapack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/eigen/lapack/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/cholesky.cpp -------------------------------------------------------------------------------- /native/ext/eigen/lapack/clacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/clacgv.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/cladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/cladiv.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/clarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/clarf.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/clarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/clarfb.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/clarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/clarfg.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/clarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/clarft.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/dladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/dladiv.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/dlamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/dlamch.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/dlapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/dlapy2.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/dlapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/dlapy3.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/dlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/dlarf.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/dlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/dlarfb.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/dlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/dlarfg.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/dlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/dlarft.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/double.cpp -------------------------------------------------------------------------------- /native/ext/eigen/lapack/dsecnd_NONE.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/dsecnd_NONE.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/eigenvalues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/eigenvalues.cpp -------------------------------------------------------------------------------- /native/ext/eigen/lapack/ilaclc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/ilaclc.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/ilaclr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/ilaclr.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/iladlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/iladlc.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/iladlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/iladlr.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/ilaslc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/ilaslc.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/ilaslr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/ilaslr.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/ilazlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/ilazlc.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/ilazlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/ilazlr.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/lapack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/lapack_common.h -------------------------------------------------------------------------------- /native/ext/eigen/lapack/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/lu.cpp -------------------------------------------------------------------------------- /native/ext/eigen/lapack/second_NONE.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/second_NONE.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/single.cpp -------------------------------------------------------------------------------- /native/ext/eigen/lapack/sladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/sladiv.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/slamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/slamch.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/slapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/slapy2.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/slapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/slapy3.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/slarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/slarf.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/slarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/slarfb.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/slarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/slarfg.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/slarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/slarft.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/svd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/svd.cpp -------------------------------------------------------------------------------- /native/ext/eigen/lapack/zlacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/zlacgv.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/zladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/zladiv.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/zlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/zlarf.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/zlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/zlarfb.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/zlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/zlarfg.f -------------------------------------------------------------------------------- /native/ext/eigen/lapack/zlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/lapack/zlarft.f -------------------------------------------------------------------------------- /native/ext/eigen/scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/eigen/scripts/check.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/scripts/check.in -------------------------------------------------------------------------------- /native/ext/eigen/scripts/debug.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Debug . 4 | -------------------------------------------------------------------------------- /native/ext/eigen/scripts/eigen_gen_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/scripts/eigen_gen_docs -------------------------------------------------------------------------------- /native/ext/eigen/scripts/release.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Release . 4 | -------------------------------------------------------------------------------- /native/ext/eigen/scripts/relicense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/scripts/relicense.py -------------------------------------------------------------------------------- /native/ext/eigen/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/eigen/test/adjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/adjoint.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/array_cwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/array_cwise.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/array_of_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/array_of_string.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/array_replicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/array_replicate.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/array_reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/array_reverse.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/bandmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/bandmatrix.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/basicstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/basicstuff.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/bdcsvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/bdcsvd.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/bicgstab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/bicgstab.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/block.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/boostmultiprec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/boostmultiprec.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/bug1213.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/bug1213.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/bug1213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/bug1213.h -------------------------------------------------------------------------------- /native/ext/eigen/test/bug1213_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/bug1213_main.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/cholesky.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/cholmod_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/cholmod_support.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/constructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/constructor.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/corners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/corners.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/ctorleak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/ctorleak.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/cuda_basic.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/cuda_basic.cu -------------------------------------------------------------------------------- /native/ext/eigen/test/cuda_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/cuda_common.h -------------------------------------------------------------------------------- /native/ext/eigen/test/denseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/denseLM.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/dense_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/dense_storage.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/determinant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/determinant.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/diagonal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/diagonal.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/dontalign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/dontalign.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/dynalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/dynalloc.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/eigen2support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/eigen2support.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/evaluator_common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /native/ext/eigen/test/evaluators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/evaluators.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/exceptions.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/fastmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/fastmath.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/first_aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/first_aligned.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/geo_alignedbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/geo_alignedbox.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/geo_eulerangles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/geo_eulerangles.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/geo_homogeneous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/geo_homogeneous.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/geo_hyperplane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/geo_hyperplane.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/geo_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/geo_quaternion.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/half_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/half_float.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/hessenberg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/hessenberg.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/householder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/householder.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/integer_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/integer_types.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/inverse.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/is_same_dense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/is_same_dense.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/jacobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/jacobi.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/jacobisvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/jacobisvd.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/linearstructure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/linearstructure.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/lscg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/lscg.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/lu.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/main.h -------------------------------------------------------------------------------- /native/ext/eigen/test/mapped_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/mapped_matrix.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/mapstride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/mapstride.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/meta.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/metis_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/metis_support.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/miscmatrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/miscmatrices.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/mixingtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/mixingtypes.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/mpl2only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/mpl2only.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/nesting_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/nesting_ops.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/nomalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/nomalloc.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/nullary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/nullary.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/numext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/numext.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/packetmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/packetmath.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/pardiso_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/pardiso_support.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/pastix_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/pastix_support.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/product.h -------------------------------------------------------------------------------- /native/ext/eigen/test/product_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/product_extra.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/product_large.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/product_large.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/product_mmtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/product_mmtr.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/product_small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/product_small.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/product_symm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/product_symm.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/product_syrk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/product_syrk.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/product_trmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/product_trmm.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/product_trmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/product_trmv.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/product_trsolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/product_trsolve.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/qr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/qr.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/qr_colpivoting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/qr_colpivoting.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/qr_fullpivoting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/qr_fullpivoting.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/qtvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/qtvector.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/rand.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/real_qz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/real_qz.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/redux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/redux.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/ref.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/resize.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/rvalue_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/rvalue_types.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/schur_complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/schur_complex.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/schur_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/schur_real.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/selfadjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/selfadjoint.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/sizeof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/sizeof.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/sizeoverflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/sizeoverflow.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/smallvectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/smallvectors.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/sparse.h -------------------------------------------------------------------------------- /native/ext/eigen/test/sparseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/sparseLM.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/sparse_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/sparse_basic.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/sparse_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/sparse_block.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/sparse_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/sparse_product.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/sparse_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/sparse_ref.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/sparse_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/sparse_solver.h -------------------------------------------------------------------------------- /native/ext/eigen/test/sparse_solvers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/sparse_solvers.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/sparse_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/sparse_vector.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/sparselu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/sparselu.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/sparseqr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/sparseqr.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/special_numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/special_numbers.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/spqr_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/spqr_support.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/stable_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/stable_norm.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/stddeque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/stddeque.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/stdlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/stdlist.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/stdvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/stdvector.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/superlu_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/superlu_support.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/svd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/svd_common.h -------------------------------------------------------------------------------- /native/ext/eigen/test/svd_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/svd_fill.h -------------------------------------------------------------------------------- /native/ext/eigen/test/swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/swap.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/triangular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/triangular.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/umeyama.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/umeyama.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/umfpack_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/umfpack_support.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/unalignedassert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/unalignedassert.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/unalignedcount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/unalignedcount.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/vectorwiseop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/vectorwiseop.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/visitor.cpp -------------------------------------------------------------------------------- /native/ext/eigen/test/zerosized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/test/zerosized.cpp -------------------------------------------------------------------------------- /native/ext/eigen/unsupported/Eigen/BVH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/unsupported/Eigen/BVH -------------------------------------------------------------------------------- /native/ext/eigen/unsupported/Eigen/FFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/unsupported/Eigen/FFT -------------------------------------------------------------------------------- /native/ext/eigen/unsupported/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/unsupported/README.txt -------------------------------------------------------------------------------- /native/ext/eigen/unsupported/test/BVH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/unsupported/test/BVH.cpp -------------------------------------------------------------------------------- /native/ext/eigen/unsupported/test/FFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/eigen/unsupported/test/FFT.cpp -------------------------------------------------------------------------------- /native/ext/half/half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/half/half.hpp -------------------------------------------------------------------------------- /native/ext/pcg32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/pcg32/Makefile -------------------------------------------------------------------------------- /native/ext/pcg32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/pcg32/README.md -------------------------------------------------------------------------------- /native/ext/pcg32/pcg32-demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/pcg32/pcg32-demo.cpp -------------------------------------------------------------------------------- /native/ext/pcg32/pcg32-demo.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/pcg32/pcg32-demo.out -------------------------------------------------------------------------------- /native/ext/pcg32/pcg32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/pcg32/pcg32.h -------------------------------------------------------------------------------- /native/ext/pss/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/pss/LICENSE.txt -------------------------------------------------------------------------------- /native/ext/pss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/pss/README.md -------------------------------------------------------------------------------- /native/ext/pss/parallel_stable_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/pss/parallel_stable_sort.h -------------------------------------------------------------------------------- /native/ext/pss/pss_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/pss/pss_common.h -------------------------------------------------------------------------------- /native/ext/rply/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/rply/LICENSE -------------------------------------------------------------------------------- /native/ext/rply/rply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/rply/rply.c -------------------------------------------------------------------------------- /native/ext/rply/rply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/rply/rply.h -------------------------------------------------------------------------------- /native/ext/tbb/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/.appveyor.yml -------------------------------------------------------------------------------- /native/ext/tbb/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/.gitattributes -------------------------------------------------------------------------------- /native/ext/tbb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/.gitignore -------------------------------------------------------------------------------- /native/ext/tbb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/.travis.yml -------------------------------------------------------------------------------- /native/ext/tbb/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/CHANGES -------------------------------------------------------------------------------- /native/ext/tbb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/CMakeLists.txt -------------------------------------------------------------------------------- /native/ext/tbb/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/Doxyfile -------------------------------------------------------------------------------- /native/ext/tbb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/LICENSE -------------------------------------------------------------------------------- /native/ext/tbb/Makefile.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/Makefile.old -------------------------------------------------------------------------------- /native/ext/tbb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/README -------------------------------------------------------------------------------- /native/ext/tbb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/README.md -------------------------------------------------------------------------------- /native/ext/tbb/build/AIX.gcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/AIX.gcc.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/AIX.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/AIX.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/BSD.clang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/BSD.clang.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/BSD.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/BSD.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/FreeBSD.clang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/FreeBSD.clang.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/FreeBSD.gcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/FreeBSD.gcc.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/FreeBSD.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/FreeBSD.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/Makefile.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/Makefile.rml -------------------------------------------------------------------------------- /native/ext/tbb/build/Makefile.tbb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/Makefile.tbb -------------------------------------------------------------------------------- /native/ext/tbb/build/Makefile.tbbbind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/Makefile.tbbbind -------------------------------------------------------------------------------- /native/ext/tbb/build/Makefile.tbbmalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/Makefile.tbbmalloc -------------------------------------------------------------------------------- /native/ext/tbb/build/Makefile.tbbproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/Makefile.tbbproxy -------------------------------------------------------------------------------- /native/ext/tbb/build/Makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/Makefile.test -------------------------------------------------------------------------------- /native/ext/tbb/build/OpenBSD.clang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/OpenBSD.clang.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/OpenBSD.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/OpenBSD.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/SunOS.gcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/SunOS.gcc.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/SunOS.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/SunOS.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/SunOS.suncc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/SunOS.suncc.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/android.clang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/android.clang.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/android.gcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/android.gcc.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/android.icc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/android.icc.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/android.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/android.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/android.linux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/android.linux.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/android.macos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/android.macos.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/android.windows.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/android.windows.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/big_iron.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/big_iron.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/build.py -------------------------------------------------------------------------------- /native/ext/tbb/build/codecov.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/codecov.txt -------------------------------------------------------------------------------- /native/ext/tbb/build/common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/common.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/common_rules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/common_rules.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/detect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/detect.js -------------------------------------------------------------------------------- /native/ext/tbb/build/generate_tbbvars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/generate_tbbvars.bat -------------------------------------------------------------------------------- /native/ext/tbb/build/generate_tbbvars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/generate_tbbvars.sh -------------------------------------------------------------------------------- /native/ext/tbb/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/index.html -------------------------------------------------------------------------------- /native/ext/tbb/build/ios.clang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/ios.clang.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/ios.macos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/ios.macos.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/linux.clang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/linux.clang.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/linux.gcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/linux.gcc.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/linux.icc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/linux.icc.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/linux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/linux.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/linux.pathcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/linux.pathcc.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/linux.xl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/linux.xl.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/macos.clang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/macos.clang.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/macos.gcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/macos.gcc.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/macos.icc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/macos.icc.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/macos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/macos.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/mic.icc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/mic.icc.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/mic.linux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/mic.linux.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/mic.offload.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/mic.offload.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/suncc.map.pause: -------------------------------------------------------------------------------- 1 | hwcap_1 = OVERRIDE; 2 | -------------------------------------------------------------------------------- /native/ext/tbb/build/test_launcher.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/test_launcher.bat -------------------------------------------------------------------------------- /native/ext/tbb/build/test_launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/test_launcher.sh -------------------------------------------------------------------------------- /native/ext/tbb/build/version_info_aix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/version_info_aix.sh -------------------------------------------------------------------------------- /native/ext/tbb/build/vs2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/vs2013/index.html -------------------------------------------------------------------------------- /native/ext/tbb/build/vs2013/makefile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/vs2013/makefile.sln -------------------------------------------------------------------------------- /native/ext/tbb/build/vs2013/tbb.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/vs2013/tbb.vcxproj -------------------------------------------------------------------------------- /native/ext/tbb/build/windows.cl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/windows.cl.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/windows.gcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/windows.gcc.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/windows.icl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/windows.icl.inc -------------------------------------------------------------------------------- /native/ext/tbb/build/windows.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/build/windows.inc -------------------------------------------------------------------------------- /native/ext/tbb/cmake/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/cmake/README.rst -------------------------------------------------------------------------------- /native/ext/tbb/doc/Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/doc/Release_Notes.txt -------------------------------------------------------------------------------- /native/ext/tbb/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/examples/Makefile -------------------------------------------------------------------------------- /native/ext/tbb/examples/common/gui/xcode/tbbExample/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? 2 | -------------------------------------------------------------------------------- /native/ext/tbb/examples/common/gui/xcode/tbbExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | -------------------------------------------------------------------------------- /native/ext/tbb/examples/common/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/examples/common/index.html -------------------------------------------------------------------------------- /native/ext/tbb/examples/graph/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/examples/graph/index.html -------------------------------------------------------------------------------- /native/ext/tbb/examples/graph/som/som.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/examples/graph/som/som.cpp -------------------------------------------------------------------------------- /native/ext/tbb/examples/graph/som/som.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/examples/graph/som/som.h -------------------------------------------------------------------------------- /native/ext/tbb/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/examples/index.html -------------------------------------------------------------------------------- /native/ext/tbb/examples/task/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/examples/task/index.html -------------------------------------------------------------------------------- /native/ext/tbb/include/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/index.html -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/aggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/aggregator.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/atomic.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/combinable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/combinable.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/compat/ppl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/compat/ppl.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/compat/thread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/compat/thread -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/compat/tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/compat/tuple -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/flow_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/flow_graph.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/index.html -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/info.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/iterators.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/memory_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/memory_pool.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/mutex.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/null_mutex.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/parallel_do.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/parallel_do.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/parallel_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/parallel_for.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/partitioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/partitioner.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/pipeline.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/spin_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/spin_mutex.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/task.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/task_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/task_arena.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/task_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/task_group.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/tbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/tbb.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/tbb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/tbb_config.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/tbb_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/tbb_machine.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/tbb_stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/tbb_stddef.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/tbb_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/tbb_thread.h -------------------------------------------------------------------------------- /native/ext/tbb/include/tbb/tick_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/include/tbb/tick_count.h -------------------------------------------------------------------------------- /native/ext/tbb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/index.html -------------------------------------------------------------------------------- /native/ext/tbb/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/jni/Android.mk -------------------------------------------------------------------------------- /native/ext/tbb/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/jni/Application.mk -------------------------------------------------------------------------------- /native/ext/tbb/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/python/Makefile -------------------------------------------------------------------------------- /native/ext/tbb/python/TBB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/python/TBB.py -------------------------------------------------------------------------------- /native/ext/tbb/python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/python/index.html -------------------------------------------------------------------------------- /native/ext/tbb/python/rml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/python/rml/Makefile -------------------------------------------------------------------------------- /native/ext/tbb/python/rml/ipc_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/python/rml/ipc_server.cpp -------------------------------------------------------------------------------- /native/ext/tbb/python/rml/ipc_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/python/rml/ipc_utils.cpp -------------------------------------------------------------------------------- /native/ext/tbb/python/rml/ipc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/python/rml/ipc_utils.h -------------------------------------------------------------------------------- /native/ext/tbb/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/python/setup.py -------------------------------------------------------------------------------- /native/ext/tbb/python/tbb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/python/tbb/__init__.py -------------------------------------------------------------------------------- /native/ext/tbb/python/tbb/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/python/tbb/__main__.py -------------------------------------------------------------------------------- /native/ext/tbb/python/tbb/api.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/python/tbb/api.i -------------------------------------------------------------------------------- /native/ext/tbb/python/tbb/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/python/tbb/pool.py -------------------------------------------------------------------------------- /native/ext/tbb/python/tbb/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/python/tbb/test.py -------------------------------------------------------------------------------- /native/ext/tbb/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/Makefile -------------------------------------------------------------------------------- /native/ext/tbb/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/index.html -------------------------------------------------------------------------------- /native/ext/tbb/src/old/spin_rw_mutex_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/old/spin_rw_mutex_v2.h -------------------------------------------------------------------------------- /native/ext/tbb/src/old/task_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/old/task_v2.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/old/test_mutex_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/old/test_mutex_v2.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/perf/cpq_pdes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/perf/cpq_pdes.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/perf/harness_perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/perf/harness_perf.h -------------------------------------------------------------------------------- /native/ext/tbb/src/perf/perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/perf/perf.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/perf/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/perf/perf.h -------------------------------------------------------------------------------- /native/ext/tbb/src/perf/perf_sched.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/perf/perf_sched.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/perf/run_statistics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/perf/run_statistics.sh -------------------------------------------------------------------------------- /native/ext/tbb/src/perf/statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/perf/statistics.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/perf/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/perf/statistics.h -------------------------------------------------------------------------------- /native/ext/tbb/src/perf/statistics_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/perf/statistics_xml.h -------------------------------------------------------------------------------- /native/ext/tbb/src/perf/time_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/perf/time_framework.h -------------------------------------------------------------------------------- /native/ext/tbb/src/perf/time_hash_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/perf/time_hash_map.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/perf/time_sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/perf/time_sandbox.h -------------------------------------------------------------------------------- /native/ext/tbb/src/perf/time_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/perf/time_vector.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/rml/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/rml/client/index.html -------------------------------------------------------------------------------- /native/ext/tbb/src/rml/client/rml_omp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/rml/client/rml_omp.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/rml/client/rml_tbb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/rml/client/rml_tbb.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/rml/include/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/rml/include/index.html -------------------------------------------------------------------------------- /native/ext/tbb/src/rml/include/rml_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/rml/include/rml_base.h -------------------------------------------------------------------------------- /native/ext/tbb/src/rml/include/rml_omp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/rml/include/rml_omp.h -------------------------------------------------------------------------------- /native/ext/tbb/src/rml/include/rml_tbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/rml/include/rml_tbb.h -------------------------------------------------------------------------------- /native/ext/tbb/src/rml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/rml/index.html -------------------------------------------------------------------------------- /native/ext/tbb/src/rml/server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/rml/server/index.html -------------------------------------------------------------------------------- /native/ext/tbb/src/rml/server/irml.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/rml/server/irml.rc -------------------------------------------------------------------------------- /native/ext/tbb/src/rml/test/test_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/rml/test/test_server.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/arena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/arena.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/arena.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/cilk-tbb-interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/cilk-tbb-interop.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/co_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/co_context.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/custom_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/custom_scheduler.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/dynamic_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/dynamic_link.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/dynamic_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/dynamic_link.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/governor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/governor.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/governor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/governor.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/ia32-masm/itsx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/ia32-masm/itsx.asm -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/ia64-gas/log2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/ia64-gas/log2.s -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/ia64-gas/pause.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/ia64-gas/pause.s -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/index.html -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/intrusive_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/intrusive_list.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/itt_notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/itt_notify.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/itt_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/itt_notify.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/mailbox.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/market.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/market.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/market.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/market.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/mutex.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/observer_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/observer_proxy.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/observer_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/observer_proxy.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/pipeline.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/private_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/private_server.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/queuing_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/queuing_mutex.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/scheduler.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/scheduler.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/scheduler_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/scheduler_common.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/semaphore.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/semaphore.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/spin_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/spin_mutex.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/spin_rw_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/spin_rw_mutex.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/task.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/task_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/task_stream.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/tbb_assert_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/tbb_assert_impl.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/tbb_bind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/tbb_bind.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/tbb_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/tbb_environment.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/tbb_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/tbb_main.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/tbb_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/tbb_main.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/tbb_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/tbb_misc.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/tbb_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/tbb_misc.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/tbb_misc_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/tbb_misc_ex.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/tbb_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/tbb_resource.rc -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/tbb_statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/tbb_statistics.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/tbb_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/tbb_statistics.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/tbb_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/tbb_thread.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/tbb_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/tbb_version.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbb/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbb/tls.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbbmalloc/Customize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbbmalloc/Customize.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbbmalloc/MapMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbbmalloc/MapMemory.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbbmalloc/Statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbbmalloc/Statistics.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbbmalloc/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbbmalloc/backend.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbbmalloc/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbbmalloc/backend.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbbmalloc/backref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbbmalloc/backref.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbbmalloc/frontend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbbmalloc/frontend.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbbmalloc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbbmalloc/index.html -------------------------------------------------------------------------------- /native/ext/tbb/src/tbbmalloc/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbbmalloc/proxy.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/tbbmalloc/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbbmalloc/proxy.h -------------------------------------------------------------------------------- /native/ext/tbb/src/tbbmalloc/tbbmalloc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbbmalloc/tbbmalloc.rc -------------------------------------------------------------------------------- /native/ext/tbb/src/tbbproxy/tbbproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/tbbproxy/tbbproxy.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_assert.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_barrier.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_cpu.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_defs.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_eh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_eh.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_fp.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_graph.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_m128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_m128.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_memory.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_mic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_mic.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_preload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_preload.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_report.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_task.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_tls.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/harness_tsx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/harness_tsx.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_allocator.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_assembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_assembly.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_atomic.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_eh_tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_eh_tasks.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_fp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_fp.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_halt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_halt.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_join_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_join_node.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_lambda.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_mutex.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_openmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_openmp.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_pipeline.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_task.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_tbb_fork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_tbb_fork.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_thread.h -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_tuple.cpp -------------------------------------------------------------------------------- /native/ext/tbb/src/test/test_yield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/src/test/test_yield.cpp -------------------------------------------------------------------------------- /native/ext/tbb/third-party-programs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/ext/tbb/third-party-programs.txt -------------------------------------------------------------------------------- /native/im/include/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/aabb.h -------------------------------------------------------------------------------- /native/im/include/adjacency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/adjacency.h -------------------------------------------------------------------------------- /native/im/include/batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/batch.h -------------------------------------------------------------------------------- /native/im/include/bvh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/bvh.h -------------------------------------------------------------------------------- /native/im/include/cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/cleanup.h -------------------------------------------------------------------------------- /native/im/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/common.h -------------------------------------------------------------------------------- /native/im/include/dedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/dedge.h -------------------------------------------------------------------------------- /native/im/include/extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/extract.h -------------------------------------------------------------------------------- /native/im/include/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/field.h -------------------------------------------------------------------------------- /native/im/include/hierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/hierarchy.h -------------------------------------------------------------------------------- /native/im/include/meshio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/meshio.h -------------------------------------------------------------------------------- /native/im/include/meshstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/meshstats.h -------------------------------------------------------------------------------- /native/im/include/normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/normal.h -------------------------------------------------------------------------------- /native/im/include/reorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/reorder.h -------------------------------------------------------------------------------- /native/im/include/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/serializer.h -------------------------------------------------------------------------------- /native/im/include/smoothing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/smoothing.h -------------------------------------------------------------------------------- /native/im/include/subdivide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/include/subdivide.h -------------------------------------------------------------------------------- /native/im/src/adjacency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/adjacency.cpp -------------------------------------------------------------------------------- /native/im/src/batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/batch.cpp -------------------------------------------------------------------------------- /native/im/src/bvh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/bvh.cpp -------------------------------------------------------------------------------- /native/im/src/cleanup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/cleanup.cpp -------------------------------------------------------------------------------- /native/im/src/dedge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/dedge.cpp -------------------------------------------------------------------------------- /native/im/src/extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/extract.cpp -------------------------------------------------------------------------------- /native/im/src/field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/field.cpp -------------------------------------------------------------------------------- /native/im/src/hierarchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/hierarchy.cpp -------------------------------------------------------------------------------- /native/im/src/meshio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/meshio.cpp -------------------------------------------------------------------------------- /native/im/src/meshstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/meshstats.cpp -------------------------------------------------------------------------------- /native/im/src/normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/normal.cpp -------------------------------------------------------------------------------- /native/im/src/reorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/reorder.cpp -------------------------------------------------------------------------------- /native/im/src/serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/serializer.cpp -------------------------------------------------------------------------------- /native/im/src/smoothing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/smoothing.cpp -------------------------------------------------------------------------------- /native/im/src/subdivide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/native/im/src/subdivide.cpp -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | ruff 2 | pre-commit 3 | cpplint 4 | -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | trimesh 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | nanobind 2 | numpy>=1.20.0<2.0.0 3 | -------------------------------------------------------------------------------- /src/process_numpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/src/process_numpy.cpp -------------------------------------------------------------------------------- /src/pynanoinstantmeshes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/src/pynanoinstantmeshes/__init__.py -------------------------------------------------------------------------------- /tests/test_remeshing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vork/PyNanoInstantMeshes/HEAD/tests/test_remeshing.py --------------------------------------------------------------------------------