├── .clang-format ├── .clang-tidy ├── .github └── workflows │ ├── auto-format.yml │ ├── bench.yml │ ├── coverage.yml │ ├── docs.yml │ ├── examples.yml │ ├── radsan.yml │ └── tests.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── RTNeural ├── CMakeLists.txt ├── Layer.h ├── Model.h ├── ModelT.h ├── RTNeural.cpp ├── RTNeural.h ├── activation │ ├── activation.h │ ├── activation_eigen.h │ └── activation_xsimd.h ├── batchnorm │ ├── batchnorm.h │ ├── batchnorm.tpp │ ├── batchnorm2d.h │ ├── batchnorm2d.tpp │ ├── batchnorm2d_eigen.h │ ├── batchnorm2d_eigen.tpp │ ├── batchnorm2d_xsimd.h │ ├── batchnorm2d_xsimd.tpp │ ├── batchnorm_eigen.h │ ├── batchnorm_eigen.tpp │ ├── batchnorm_xsimd.h │ └── batchnorm_xsimd.tpp ├── common.h ├── config.h ├── conv1d │ ├── conv1d.h │ ├── conv1d.tpp │ ├── conv1d_eigen.h │ ├── conv1d_eigen.tpp │ ├── conv1d_xsimd.h │ ├── conv1d_xsimd.tpp │ └── strided_conv1d.h ├── conv1d_stateless │ ├── conv1d_stateless.h │ ├── conv1d_stateless.tpp │ ├── conv1d_stateless_eigen.h │ ├── conv1d_stateless_eigen.tpp │ ├── conv1d_stateless_xsimd.h │ └── conv1d_stateless_xsimd.tpp ├── conv2d │ ├── conv2d.h │ ├── conv2d.tpp │ ├── conv2d_eigen.h │ ├── conv2d_eigen.tpp │ ├── conv2d_xsimd.h │ └── conv2d_xsimd.tpp ├── dense │ ├── dense.h │ ├── dense_eigen.h │ └── dense_xsimd.h ├── gru │ ├── gru.h │ ├── gru.tpp │ ├── gru_eigen.h │ ├── gru_eigen.tpp │ ├── gru_xsimd.h │ └── gru_xsimd.tpp ├── lstm │ ├── lstm.h │ ├── lstm.tpp │ ├── lstm_eigen.h │ ├── lstm_eigen.tpp │ ├── lstm_xsimd.h │ └── lstm_xsimd.tpp ├── maths │ ├── maths_eigen.h │ ├── maths_stl.h │ └── maths_xsimd.h ├── model_loader.h ├── torch_helpers.h └── xsimd-legacy │ ├── README.md │ └── algorithms │ └── algorithms.hpp ├── bench ├── CMakeLists.txt ├── bench_utils.hpp ├── layer_bench.cpp ├── layer_creator.hpp ├── model_bench.cpp └── templated_bench.hpp ├── cmake ├── CPM.cmake ├── CXXStandard.cmake ├── ChooseBackend.cmake ├── EnableCoverageFlags.cmake ├── SIMDExtensions.cmake ├── Sanitizers.cmake └── Testing.cmake ├── doxygen ├── Doxyfile ├── Makefile ├── header.html └── logo.png ├── examples ├── CMakeLists.txt ├── README.md ├── conv1d_stateless_example │ ├── CMakeLists.txt │ └── conv1d_stateless_example.cpp ├── custom_layer_model │ ├── CMakeLists.txt │ ├── GatedActivation_Eigen.h │ ├── GatedActivation_STL.h │ ├── GatedActivation_xsimd.h │ ├── custom_layer_model.cpp │ └── test_net.json ├── hello_rtneural │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile │ ├── hello_rtneural.cpp │ └── test_net.json ├── rtneural_dynamic_model │ ├── CMakeLists.txt │ └── rtneural_dynamic_model.cpp ├── rtneural_static_model │ ├── CMakeLists.txt │ ├── rtneural_static_model.cpp │ └── test_net.json └── torch │ ├── torch_conv1d │ ├── CMakeLists.txt │ └── torch_conv1d.cpp │ └── torch_gru │ ├── CMakeLists.txt │ └── torch_gru.cpp ├── models ├── bad_lstm.json ├── conv.json ├── conv1d_torch.json ├── conv1d_torch_group_6_3_3_1_3.json ├── conv1d_torch_group_6_3_4_10_3.json ├── conv1d_torch_group_6_6_1_1_6.json ├── conv1d_torch_stride_3.json ├── conv2d.json ├── conv_stateless.json ├── convtranspose1d_torch.json ├── dense.json ├── full_model.json ├── gru.json ├── gru_1d.json ├── gru_torch.json ├── lstm.json ├── lstm_1d.json ├── lstm_torch.json └── microtcn │ ├── bn.json │ ├── conv1.json │ ├── relu.json │ └── res.json ├── modules ├── Eigen │ ├── CMakeLists.txt │ └── Eigen │ │ ├── AccelerateSupport │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── KLUSupport │ │ ├── LU │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── ThreadPool │ │ ├── UmfPackSupport │ │ └── src │ │ ├── AccelerateSupport │ │ ├── AccelerateSupport.h │ │ └── InternalHeaderCheck.h │ │ ├── Cholesky │ │ ├── InternalHeaderCheck.h │ │ ├── LDLT.h │ │ ├── LLT.h │ │ └── LLT_LAPACKE.h │ │ ├── CholmodSupport │ │ ├── CholmodSupport.h │ │ └── InternalHeaderCheck.h │ │ ├── Core │ │ ├── ArithmeticSequence.h │ │ ├── Array.h │ │ ├── ArrayBase.h │ │ ├── ArrayWrapper.h │ │ ├── Assign.h │ │ ├── AssignEvaluator.h │ │ ├── Assign_MKL.h │ │ ├── BandMatrix.h │ │ ├── Block.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 │ │ ├── IndexedView.h │ │ ├── InternalHeaderCheck.h │ │ ├── Inverse.h │ │ ├── Map.h │ │ ├── MapBase.h │ │ ├── MathFunctions.h │ │ ├── MathFunctionsImpl.h │ │ ├── Matrix.h │ │ ├── MatrixBase.h │ │ ├── NestByValue.h │ │ ├── NoAlias.h │ │ ├── NumTraits.h │ │ ├── PartialReduxEvaluator.h │ │ ├── PermutationMatrix.h │ │ ├── PlainObjectBase.h │ │ ├── Product.h │ │ ├── ProductEvaluators.h │ │ ├── Random.h │ │ ├── Redux.h │ │ ├── Ref.h │ │ ├── Replicate.h │ │ ├── Reshaped.h │ │ ├── ReturnByValue.h │ │ ├── Reverse.h │ │ ├── Select.h │ │ ├── SelfAdjointView.h │ │ ├── SelfCwiseBinaryOp.h │ │ ├── SkewSymmetricMatrix3.h │ │ ├── Solve.h │ │ ├── SolveTriangular.h │ │ ├── SolverBase.h │ │ ├── StableNorm.h │ │ ├── StlIterators.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 │ │ │ │ ├── Complex.h │ │ │ │ ├── GemmKernel.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ ├── PacketMathFP16.h │ │ │ │ ├── TrsmKernel.h │ │ │ │ ├── TrsmUnrolls.inc │ │ │ │ └── TypeCasting.h │ │ │ ├── AltiVec │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── MatrixProduct.h │ │ │ │ ├── MatrixProductCommon.h │ │ │ │ ├── MatrixProductMMA.h │ │ │ │ ├── MatrixProductMMAbfloat16.h │ │ │ │ ├── MatrixVectorProduct.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── Default │ │ │ │ ├── BFloat16.h │ │ │ │ ├── ConjHelper.h │ │ │ │ ├── GenericPacketMathFunctions.h │ │ │ │ ├── GenericPacketMathFunctionsFwd.h │ │ │ │ ├── Half.h │ │ │ │ └── Settings.h │ │ │ ├── GPU │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ ├── Tuple.h │ │ │ │ └── TypeCasting.h │ │ │ ├── HIP │ │ │ │ └── hcc │ │ │ │ │ └── math_constants.h │ │ │ ├── MSA │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ │ ├── NEON │ │ │ │ ├── Complex.h │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ ├── TypeCasting.h │ │ │ │ └── UnaryFunctors.h │ │ │ ├── SSE │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── SVE │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── SYCL │ │ │ │ ├── InteropHeaders.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 │ │ │ ├── Assert.h │ │ │ ├── BlasUtil.h │ │ │ ├── ConfigureVectorization.h │ │ │ ├── Constants.h │ │ │ ├── DisableStupidWarnings.h │ │ │ ├── EmulateArray.h │ │ │ ├── ForwardDeclarations.h │ │ │ ├── IndexedViewHelper.h │ │ │ ├── IntegralConstant.h │ │ │ ├── MKL_support.h │ │ │ ├── Macros.h │ │ │ ├── MaxSizeVector.h │ │ │ ├── Memory.h │ │ │ ├── Meta.h │ │ │ ├── MoreMeta.h │ │ │ ├── ReenableStupidWarnings.h │ │ │ ├── ReshapedHelper.h │ │ │ ├── Serializer.h │ │ │ ├── StaticAssert.h │ │ │ ├── SymbolicIndex.h │ │ │ └── XprHelper.h │ │ ├── Eigenvalues │ │ ├── ComplexEigenSolver.h │ │ ├── ComplexSchur.h │ │ ├── ComplexSchur_LAPACKE.h │ │ ├── EigenSolver.h │ │ ├── GeneralizedEigenSolver.h │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ ├── HessenbergDecomposition.h │ │ ├── InternalHeaderCheck.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 │ │ ├── InternalHeaderCheck.h │ │ ├── OrthoMethods.h │ │ ├── ParametrizedLine.h │ │ ├── Quaternion.h │ │ ├── Rotation2D.h │ │ ├── RotationBase.h │ │ ├── Scaling.h │ │ ├── Transform.h │ │ ├── Translation.h │ │ ├── Umeyama.h │ │ └── arch │ │ │ └── Geometry_SIMD.h │ │ ├── Householder │ │ ├── BlockHouseholder.h │ │ ├── Householder.h │ │ ├── HouseholderSequence.h │ │ └── InternalHeaderCheck.h │ │ ├── IterativeLinearSolvers │ │ ├── BasicPreconditioners.h │ │ ├── BiCGSTAB.h │ │ ├── ConjugateGradient.h │ │ ├── IncompleteCholesky.h │ │ ├── IncompleteLUT.h │ │ ├── InternalHeaderCheck.h │ │ ├── IterativeSolverBase.h │ │ ├── LeastSquareConjugateGradient.h │ │ └── SolveWithGuess.h │ │ ├── Jacobi │ │ ├── InternalHeaderCheck.h │ │ └── Jacobi.h │ │ ├── KLUSupport │ │ ├── InternalHeaderCheck.h │ │ └── KLUSupport.h │ │ ├── LU │ │ ├── Determinant.h │ │ ├── FullPivLU.h │ │ ├── InternalHeaderCheck.h │ │ ├── InverseImpl.h │ │ ├── PartialPivLU.h │ │ ├── PartialPivLU_LAPACKE.h │ │ └── arch │ │ │ └── InverseSize4.h │ │ ├── MetisSupport │ │ ├── InternalHeaderCheck.h │ │ └── MetisSupport.h │ │ ├── OrderingMethods │ │ ├── Amd.h │ │ ├── Eigen_Colamd.h │ │ ├── InternalHeaderCheck.h │ │ └── Ordering.h │ │ ├── PaStiXSupport │ │ ├── InternalHeaderCheck.h │ │ └── PaStiXSupport.h │ │ ├── PardisoSupport │ │ ├── InternalHeaderCheck.h │ │ └── PardisoSupport.h │ │ ├── QR │ │ ├── ColPivHouseholderQR.h │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ ├── CompleteOrthogonalDecomposition.h │ │ ├── FullPivHouseholderQR.h │ │ ├── HouseholderQR.h │ │ ├── HouseholderQR_LAPACKE.h │ │ └── InternalHeaderCheck.h │ │ ├── SPQRSupport │ │ ├── InternalHeaderCheck.h │ │ └── SuiteSparseQRSupport.h │ │ ├── SVD │ │ ├── BDCSVD.h │ │ ├── BDCSVD_LAPACKE.h │ │ ├── InternalHeaderCheck.h │ │ ├── JacobiSVD.h │ │ ├── JacobiSVD_LAPACKE.h │ │ ├── SVDBase.h │ │ └── UpperBidiagonalization.h │ │ ├── SparseCholesky │ │ ├── InternalHeaderCheck.h │ │ ├── SimplicialCholesky.h │ │ └── SimplicialCholesky_impl.h │ │ ├── SparseCore │ │ ├── AmbiVector.h │ │ ├── CompressedStorage.h │ │ ├── ConservativeSparseSparseProduct.h │ │ ├── InternalHeaderCheck.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 │ │ ├── InternalHeaderCheck.h │ │ ├── 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_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 │ │ ├── InternalHeaderCheck.h │ │ └── SparseQR.h │ │ ├── StlSupport │ │ ├── StdDeque.h │ │ ├── StdList.h │ │ ├── StdVector.h │ │ └── details.h │ │ ├── SuperLUSupport │ │ ├── InternalHeaderCheck.h │ │ └── SuperLUSupport.h │ │ ├── ThreadPool │ │ ├── Barrier.h │ │ ├── EventCount.h │ │ ├── InternalHeaderCheck.h │ │ ├── NonBlockingThreadPool.h │ │ ├── RunQueue.h │ │ ├── ThreadCancel.h │ │ ├── ThreadEnvironment.h │ │ ├── ThreadLocal.h │ │ ├── ThreadPoolInterface.h │ │ └── ThreadYield.h │ │ ├── UmfPackSupport │ │ ├── InternalHeaderCheck.h │ │ └── UmfPackSupport.h │ │ ├── misc │ │ ├── Image.h │ │ ├── InternalHeaderCheck.h │ │ ├── Kernel.h │ │ ├── RealSvd2x2.h │ │ ├── blas.h │ │ ├── lapacke.h │ │ ├── lapacke_helpers.h │ │ └── lapacke_mangling.h │ │ └── plugins │ │ ├── ArrayCwiseBinaryOps.h │ │ ├── ArrayCwiseUnaryOps.h │ │ ├── BlockMethods.h │ │ ├── CommonCwiseBinaryOps.h │ │ ├── CommonCwiseUnaryOps.h │ │ ├── IndexedViewMethods.h │ │ ├── InternalHeaderCheck.h │ │ ├── MatrixCwiseBinaryOps.h │ │ ├── MatrixCwiseUnaryOps.h │ │ └── ReshapedMethods.h └── json │ └── json.hpp ├── python ├── conv.png ├── conv.py ├── conv1d_torch.py ├── conv1d_torch_group.py ├── conv1d_torch_stride.py ├── conv2d.py ├── conv_stateless.py ├── convtranspose1d_torch.py ├── convtranspose1d_torch_cc.py ├── dense.png ├── dense.py ├── gru.png ├── gru.py ├── gru_1d.png ├── gru_1d.py ├── gru_torch.py ├── lstm.png ├── lstm.py ├── lstm_1d.png ├── lstm_1d.py ├── lstm_torch.py ├── microtcn.py └── model_utils.py ├── test_data ├── conv1d_torch_group_x_python.csv ├── conv1d_torch_group_y_python_6_3_3_1_3.csv ├── conv1d_torch_group_y_python_6_3_4_10_3.csv ├── conv1d_torch_group_y_python_6_6_1_1_6.csv ├── conv1d_torch_x_python.csv ├── conv1d_torch_x_python_stride_3.csv ├── conv1d_torch_y_python.csv ├── conv1d_torch_y_python_stride_3.csv ├── conv2d_x_python.csv ├── conv2d_y_python.csv ├── conv_stateless_x_python.csv ├── conv_stateless_y_python.csv ├── conv_x_python.csv ├── conv_y_python.csv ├── convtranspose1d_torch_x_python.csv ├── convtranspose1d_torch_x_python_cc.csv ├── convtranspose1d_torch_y_python.csv ├── convtranspose1d_torch_y_python_cc.csv ├── dense_x_python.csv ├── dense_y_python.csv ├── gru_1d_x_python.csv ├── gru_1d_y_python.csv ├── gru_torch_x_python.csv ├── gru_torch_y_python.csv ├── gru_x_python.csv ├── gru_y_python.csv ├── lstm_1d_x_python.csv ├── lstm_1d_y_python.csv ├── lstm_torch_x_python.csv ├── lstm_torch_y_python.csv ├── lstm_x_python.csv ├── lstm_y_python.csv ├── microtcn_x.csv └── microtcn_y.csv └── tests ├── CMakeLists.txt ├── README.md ├── functional ├── CMakeLists.txt ├── bad_model_test.cpp ├── conv2d_model_test.cpp ├── load_csv.hpp ├── model_test.cpp ├── sample_rate_rnn_test.cpp ├── templated_tests.cpp ├── test_configs.hpp ├── test_maths_provider.hpp ├── torch_conv1d_groups_test.cpp ├── torch_conv1d_stride_test.cpp ├── torch_conv1d_test.cpp ├── torch_convtranspose1d_test.cpp ├── torch_gru_test.cpp ├── torch_lstm_test.cpp └── torch_microtcn_test.cpp ├── torch_conv1d_group_test.hpp ├── torch_microtcn_test.hpp └── unit ├── CMakeLists.txt └── activation_test.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/auto-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/.github/workflows/auto-format.yml -------------------------------------------------------------------------------- /.github/workflows/bench.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/.github/workflows/bench.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/.github/workflows/examples.yml -------------------------------------------------------------------------------- /.github/workflows/radsan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/.github/workflows/radsan.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/README.md -------------------------------------------------------------------------------- /RTNeural/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/CMakeLists.txt -------------------------------------------------------------------------------- /RTNeural/Layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/Layer.h -------------------------------------------------------------------------------- /RTNeural/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/Model.h -------------------------------------------------------------------------------- /RTNeural/ModelT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/ModelT.h -------------------------------------------------------------------------------- /RTNeural/RTNeural.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/RTNeural.cpp -------------------------------------------------------------------------------- /RTNeural/RTNeural.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/RTNeural.h -------------------------------------------------------------------------------- /RTNeural/activation/activation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/activation/activation.h -------------------------------------------------------------------------------- /RTNeural/activation/activation_eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/activation/activation_eigen.h -------------------------------------------------------------------------------- /RTNeural/activation/activation_xsimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/activation/activation_xsimd.h -------------------------------------------------------------------------------- /RTNeural/batchnorm/batchnorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/batchnorm/batchnorm.h -------------------------------------------------------------------------------- /RTNeural/batchnorm/batchnorm.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/batchnorm/batchnorm.tpp -------------------------------------------------------------------------------- /RTNeural/batchnorm/batchnorm2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/batchnorm/batchnorm2d.h -------------------------------------------------------------------------------- /RTNeural/batchnorm/batchnorm2d.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/batchnorm/batchnorm2d.tpp -------------------------------------------------------------------------------- /RTNeural/batchnorm/batchnorm2d_eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/batchnorm/batchnorm2d_eigen.h -------------------------------------------------------------------------------- /RTNeural/batchnorm/batchnorm2d_eigen.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/batchnorm/batchnorm2d_eigen.tpp -------------------------------------------------------------------------------- /RTNeural/batchnorm/batchnorm2d_xsimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/batchnorm/batchnorm2d_xsimd.h -------------------------------------------------------------------------------- /RTNeural/batchnorm/batchnorm2d_xsimd.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/batchnorm/batchnorm2d_xsimd.tpp -------------------------------------------------------------------------------- /RTNeural/batchnorm/batchnorm_eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/batchnorm/batchnorm_eigen.h -------------------------------------------------------------------------------- /RTNeural/batchnorm/batchnorm_eigen.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/batchnorm/batchnorm_eigen.tpp -------------------------------------------------------------------------------- /RTNeural/batchnorm/batchnorm_xsimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/batchnorm/batchnorm_xsimd.h -------------------------------------------------------------------------------- /RTNeural/batchnorm/batchnorm_xsimd.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/batchnorm/batchnorm_xsimd.tpp -------------------------------------------------------------------------------- /RTNeural/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/common.h -------------------------------------------------------------------------------- /RTNeural/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/config.h -------------------------------------------------------------------------------- /RTNeural/conv1d/conv1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv1d/conv1d.h -------------------------------------------------------------------------------- /RTNeural/conv1d/conv1d.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv1d/conv1d.tpp -------------------------------------------------------------------------------- /RTNeural/conv1d/conv1d_eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv1d/conv1d_eigen.h -------------------------------------------------------------------------------- /RTNeural/conv1d/conv1d_eigen.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv1d/conv1d_eigen.tpp -------------------------------------------------------------------------------- /RTNeural/conv1d/conv1d_xsimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv1d/conv1d_xsimd.h -------------------------------------------------------------------------------- /RTNeural/conv1d/conv1d_xsimd.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv1d/conv1d_xsimd.tpp -------------------------------------------------------------------------------- /RTNeural/conv1d/strided_conv1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv1d/strided_conv1d.h -------------------------------------------------------------------------------- /RTNeural/conv1d_stateless/conv1d_stateless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv1d_stateless/conv1d_stateless.h -------------------------------------------------------------------------------- /RTNeural/conv1d_stateless/conv1d_stateless.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv1d_stateless/conv1d_stateless.tpp -------------------------------------------------------------------------------- /RTNeural/conv1d_stateless/conv1d_stateless_eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv1d_stateless/conv1d_stateless_eigen.h -------------------------------------------------------------------------------- /RTNeural/conv1d_stateless/conv1d_stateless_eigen.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv1d_stateless/conv1d_stateless_eigen.tpp -------------------------------------------------------------------------------- /RTNeural/conv1d_stateless/conv1d_stateless_xsimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv1d_stateless/conv1d_stateless_xsimd.h -------------------------------------------------------------------------------- /RTNeural/conv1d_stateless/conv1d_stateless_xsimd.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv1d_stateless/conv1d_stateless_xsimd.tpp -------------------------------------------------------------------------------- /RTNeural/conv2d/conv2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv2d/conv2d.h -------------------------------------------------------------------------------- /RTNeural/conv2d/conv2d.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv2d/conv2d.tpp -------------------------------------------------------------------------------- /RTNeural/conv2d/conv2d_eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv2d/conv2d_eigen.h -------------------------------------------------------------------------------- /RTNeural/conv2d/conv2d_eigen.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv2d/conv2d_eigen.tpp -------------------------------------------------------------------------------- /RTNeural/conv2d/conv2d_xsimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv2d/conv2d_xsimd.h -------------------------------------------------------------------------------- /RTNeural/conv2d/conv2d_xsimd.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/conv2d/conv2d_xsimd.tpp -------------------------------------------------------------------------------- /RTNeural/dense/dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/dense/dense.h -------------------------------------------------------------------------------- /RTNeural/dense/dense_eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/dense/dense_eigen.h -------------------------------------------------------------------------------- /RTNeural/dense/dense_xsimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/dense/dense_xsimd.h -------------------------------------------------------------------------------- /RTNeural/gru/gru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/gru/gru.h -------------------------------------------------------------------------------- /RTNeural/gru/gru.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/gru/gru.tpp -------------------------------------------------------------------------------- /RTNeural/gru/gru_eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/gru/gru_eigen.h -------------------------------------------------------------------------------- /RTNeural/gru/gru_eigen.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/gru/gru_eigen.tpp -------------------------------------------------------------------------------- /RTNeural/gru/gru_xsimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/gru/gru_xsimd.h -------------------------------------------------------------------------------- /RTNeural/gru/gru_xsimd.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/gru/gru_xsimd.tpp -------------------------------------------------------------------------------- /RTNeural/lstm/lstm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/lstm/lstm.h -------------------------------------------------------------------------------- /RTNeural/lstm/lstm.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/lstm/lstm.tpp -------------------------------------------------------------------------------- /RTNeural/lstm/lstm_eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/lstm/lstm_eigen.h -------------------------------------------------------------------------------- /RTNeural/lstm/lstm_eigen.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/lstm/lstm_eigen.tpp -------------------------------------------------------------------------------- /RTNeural/lstm/lstm_xsimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/lstm/lstm_xsimd.h -------------------------------------------------------------------------------- /RTNeural/lstm/lstm_xsimd.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/lstm/lstm_xsimd.tpp -------------------------------------------------------------------------------- /RTNeural/maths/maths_eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/maths/maths_eigen.h -------------------------------------------------------------------------------- /RTNeural/maths/maths_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/maths/maths_stl.h -------------------------------------------------------------------------------- /RTNeural/maths/maths_xsimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/maths/maths_xsimd.h -------------------------------------------------------------------------------- /RTNeural/model_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/model_loader.h -------------------------------------------------------------------------------- /RTNeural/torch_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/torch_helpers.h -------------------------------------------------------------------------------- /RTNeural/xsimd-legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/xsimd-legacy/README.md -------------------------------------------------------------------------------- /RTNeural/xsimd-legacy/algorithms/algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/RTNeural/xsimd-legacy/algorithms/algorithms.hpp -------------------------------------------------------------------------------- /bench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/bench/CMakeLists.txt -------------------------------------------------------------------------------- /bench/bench_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/bench/bench_utils.hpp -------------------------------------------------------------------------------- /bench/layer_bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/bench/layer_bench.cpp -------------------------------------------------------------------------------- /bench/layer_creator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/bench/layer_creator.hpp -------------------------------------------------------------------------------- /bench/model_bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/bench/model_bench.cpp -------------------------------------------------------------------------------- /bench/templated_bench.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/bench/templated_bench.hpp -------------------------------------------------------------------------------- /cmake/CPM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/cmake/CPM.cmake -------------------------------------------------------------------------------- /cmake/CXXStandard.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/cmake/CXXStandard.cmake -------------------------------------------------------------------------------- /cmake/ChooseBackend.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/cmake/ChooseBackend.cmake -------------------------------------------------------------------------------- /cmake/EnableCoverageFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/cmake/EnableCoverageFlags.cmake -------------------------------------------------------------------------------- /cmake/SIMDExtensions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/cmake/SIMDExtensions.cmake -------------------------------------------------------------------------------- /cmake/Sanitizers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/cmake/Sanitizers.cmake -------------------------------------------------------------------------------- /cmake/Testing.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/cmake/Testing.cmake -------------------------------------------------------------------------------- /doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/doxygen/Doxyfile -------------------------------------------------------------------------------- /doxygen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/doxygen/Makefile -------------------------------------------------------------------------------- /doxygen/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/doxygen/header.html -------------------------------------------------------------------------------- /doxygen/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/doxygen/logo.png -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/conv1d_stateless_example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/conv1d_stateless_example/CMakeLists.txt -------------------------------------------------------------------------------- /examples/conv1d_stateless_example/conv1d_stateless_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/conv1d_stateless_example/conv1d_stateless_example.cpp -------------------------------------------------------------------------------- /examples/custom_layer_model/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | create_example(custom_layer_model) 2 | -------------------------------------------------------------------------------- /examples/custom_layer_model/GatedActivation_Eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/custom_layer_model/GatedActivation_Eigen.h -------------------------------------------------------------------------------- /examples/custom_layer_model/GatedActivation_STL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/custom_layer_model/GatedActivation_STL.h -------------------------------------------------------------------------------- /examples/custom_layer_model/GatedActivation_xsimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/custom_layer_model/GatedActivation_xsimd.h -------------------------------------------------------------------------------- /examples/custom_layer_model/custom_layer_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/custom_layer_model/custom_layer_model.cpp -------------------------------------------------------------------------------- /examples/custom_layer_model/test_net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/custom_layer_model/test_net.json -------------------------------------------------------------------------------- /examples/hello_rtneural/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.exe 3 | -------------------------------------------------------------------------------- /examples/hello_rtneural/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | create_example(hello_rtneural) 2 | -------------------------------------------------------------------------------- /examples/hello_rtneural/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/hello_rtneural/Makefile -------------------------------------------------------------------------------- /examples/hello_rtneural/hello_rtneural.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/hello_rtneural/hello_rtneural.cpp -------------------------------------------------------------------------------- /examples/hello_rtneural/test_net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/hello_rtneural/test_net.json -------------------------------------------------------------------------------- /examples/rtneural_dynamic_model/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | create_example(rtneural_dynamic_model) 2 | -------------------------------------------------------------------------------- /examples/rtneural_dynamic_model/rtneural_dynamic_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/rtneural_dynamic_model/rtneural_dynamic_model.cpp -------------------------------------------------------------------------------- /examples/rtneural_static_model/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | create_example(rtneural_static_model) 2 | -------------------------------------------------------------------------------- /examples/rtneural_static_model/rtneural_static_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/rtneural_static_model/rtneural_static_model.cpp -------------------------------------------------------------------------------- /examples/rtneural_static_model/test_net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/rtneural_static_model/test_net.json -------------------------------------------------------------------------------- /examples/torch/torch_conv1d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/torch/torch_conv1d/CMakeLists.txt -------------------------------------------------------------------------------- /examples/torch/torch_conv1d/torch_conv1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/torch/torch_conv1d/torch_conv1d.cpp -------------------------------------------------------------------------------- /examples/torch/torch_gru/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | create_example(torch_gru) 2 | -------------------------------------------------------------------------------- /examples/torch/torch_gru/torch_gru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/examples/torch/torch_gru/torch_gru.cpp -------------------------------------------------------------------------------- /models/bad_lstm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/bad_lstm.json -------------------------------------------------------------------------------- /models/conv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/conv.json -------------------------------------------------------------------------------- /models/conv1d_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/conv1d_torch.json -------------------------------------------------------------------------------- /models/conv1d_torch_group_6_3_3_1_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/conv1d_torch_group_6_3_3_1_3.json -------------------------------------------------------------------------------- /models/conv1d_torch_group_6_3_4_10_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/conv1d_torch_group_6_3_4_10_3.json -------------------------------------------------------------------------------- /models/conv1d_torch_group_6_6_1_1_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/conv1d_torch_group_6_6_1_1_6.json -------------------------------------------------------------------------------- /models/conv1d_torch_stride_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/conv1d_torch_stride_3.json -------------------------------------------------------------------------------- /models/conv2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/conv2d.json -------------------------------------------------------------------------------- /models/conv_stateless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/conv_stateless.json -------------------------------------------------------------------------------- /models/convtranspose1d_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/convtranspose1d_torch.json -------------------------------------------------------------------------------- /models/dense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/dense.json -------------------------------------------------------------------------------- /models/full_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/full_model.json -------------------------------------------------------------------------------- /models/gru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/gru.json -------------------------------------------------------------------------------- /models/gru_1d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/gru_1d.json -------------------------------------------------------------------------------- /models/gru_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/gru_torch.json -------------------------------------------------------------------------------- /models/lstm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/lstm.json -------------------------------------------------------------------------------- /models/lstm_1d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/lstm_1d.json -------------------------------------------------------------------------------- /models/lstm_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/lstm_torch.json -------------------------------------------------------------------------------- /models/microtcn/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/microtcn/bn.json -------------------------------------------------------------------------------- /models/microtcn/conv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/microtcn/conv1.json -------------------------------------------------------------------------------- /models/microtcn/relu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/microtcn/relu.json -------------------------------------------------------------------------------- /models/microtcn/res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/models/microtcn/res.json -------------------------------------------------------------------------------- /modules/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /modules/Eigen/Eigen/AccelerateSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/AccelerateSupport -------------------------------------------------------------------------------- /modules/Eigen/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/Cholesky -------------------------------------------------------------------------------- /modules/Eigen/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/CholmodSupport -------------------------------------------------------------------------------- /modules/Eigen/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/Core -------------------------------------------------------------------------------- /modules/Eigen/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/Dense -------------------------------------------------------------------------------- /modules/Eigen/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/Eigen -------------------------------------------------------------------------------- /modules/Eigen/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/Eigenvalues -------------------------------------------------------------------------------- /modules/Eigen/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/Geometry -------------------------------------------------------------------------------- /modules/Eigen/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/Householder -------------------------------------------------------------------------------- /modules/Eigen/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /modules/Eigen/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/Jacobi -------------------------------------------------------------------------------- /modules/Eigen/Eigen/KLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/KLUSupport -------------------------------------------------------------------------------- /modules/Eigen/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/LU -------------------------------------------------------------------------------- /modules/Eigen/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/MetisSupport -------------------------------------------------------------------------------- /modules/Eigen/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/OrderingMethods -------------------------------------------------------------------------------- /modules/Eigen/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /modules/Eigen/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/PardisoSupport -------------------------------------------------------------------------------- /modules/Eigen/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/QR -------------------------------------------------------------------------------- /modules/Eigen/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /modules/Eigen/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/SPQRSupport -------------------------------------------------------------------------------- /modules/Eigen/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/SVD -------------------------------------------------------------------------------- /modules/Eigen/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/Sparse -------------------------------------------------------------------------------- /modules/Eigen/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/SparseCholesky -------------------------------------------------------------------------------- /modules/Eigen/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/SparseCore -------------------------------------------------------------------------------- /modules/Eigen/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/SparseLU -------------------------------------------------------------------------------- /modules/Eigen/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/SparseQR -------------------------------------------------------------------------------- /modules/Eigen/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/StdDeque -------------------------------------------------------------------------------- /modules/Eigen/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/StdList -------------------------------------------------------------------------------- /modules/Eigen/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/StdVector -------------------------------------------------------------------------------- /modules/Eigen/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /modules/Eigen/Eigen/ThreadPool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/ThreadPool -------------------------------------------------------------------------------- /modules/Eigen/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/AccelerateSupport/AccelerateSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/AccelerateSupport/AccelerateSupport.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/AccelerateSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/AccelerateSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Cholesky/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Cholesky/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/CholmodSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/CholmodSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/ArithmeticSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/ArithmeticSequence.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/IndexedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/IndexedView.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/PartialReduxEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/PartialReduxEvaluator.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Reshaped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Reshaped.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/SkewSymmetricMatrix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/SkewSymmetricMatrix3.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/StlIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/StlIterators.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AVX512/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AVX512/Complex.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AVX512/GemmKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AVX512/GemmKernel.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AVX512/PacketMathFP16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AVX512/PacketMathFP16.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AVX512/TrsmKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AVX512/TrsmKernel.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AVX512/TrsmUnrolls.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AVX512/TrsmUnrolls.inc -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AVX512/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AVX512/TypeCasting.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AltiVec/MatrixProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AltiVec/MatrixProduct.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AltiVec/MatrixProductMMAbfloat16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AltiVec/MatrixProductMMAbfloat16.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AltiVec/MatrixVectorProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AltiVec/MatrixVectorProduct.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/AltiVec/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/AltiVec/TypeCasting.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/Default/BFloat16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/Default/BFloat16.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/Default/ConjHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/Default/ConjHelper.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/Default/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/Default/Half.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/GPU/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/GPU/Complex.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/GPU/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/GPU/MathFunctions.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/GPU/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/GPU/PacketMath.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/GPU/Tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/GPU/Tuple.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/GPU/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/GPU/TypeCasting.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/HIP/hcc/math_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/HIP/hcc/math_constants.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/MSA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/MSA/Complex.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/MSA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/MSA/MathFunctions.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/MSA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/MSA/PacketMath.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/NEON/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/NEON/TypeCasting.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/NEON/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/NEON/UnaryFunctors.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/SVE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/SVE/MathFunctions.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/SVE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/SVE/PacketMath.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/SVE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/SVE/TypeCasting.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/SYCL/InteropHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/SYCL/InteropHeaders.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/SYCL/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/SYCL/MathFunctions.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/SYCL/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/SYCL/PacketMath.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/SYCL/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/SYCL/TypeCasting.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/Assert.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/ConfigureVectorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/ConfigureVectorization.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/EmulateArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/EmulateArray.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/IndexedViewHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/IndexedViewHelper.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/IntegralConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/IntegralConstant.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/MaxSizeVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/MaxSizeVector.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/MoreMeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/MoreMeta.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/ReshapedHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/ReshapedHelper.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/Serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/Serializer.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/SymbolicIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/SymbolicIndex.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Geometry/arch/Geometry_SIMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Geometry/arch/Geometry_SIMD.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Householder/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Householder/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/IterativeLinearSolvers/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/IterativeLinearSolvers/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Jacobi/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Jacobi/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/KLUSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/KLUSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/KLUSupport/KLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/KLUSupport/KLUSupport.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/LU/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/LU/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/LU/arch/InverseSize4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/LU/arch/InverseSize4.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/MetisSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/MetisSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/OrderingMethods/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/OrderingMethods/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/PaStiXSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/PaStiXSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/PardisoSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/PardisoSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/QR/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/QR/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SPQRSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SPQRSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SVD/BDCSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SVD/BDCSVD_LAPACKE.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SVD/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SVD/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCholesky/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCholesky/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseQR/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseQR/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SuperLUSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SuperLUSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/ThreadPool/Barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/ThreadPool/Barrier.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/ThreadPool/EventCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/ThreadPool/EventCount.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/ThreadPool/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/ThreadPool/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/ThreadPool/NonBlockingThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/ThreadPool/NonBlockingThreadPool.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/ThreadPool/RunQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/ThreadPool/RunQueue.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/ThreadPool/ThreadCancel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/ThreadPool/ThreadCancel.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/ThreadPool/ThreadEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/ThreadPool/ThreadEnvironment.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/ThreadPool/ThreadLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/ThreadPool/ThreadLocal.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/ThreadPool/ThreadPoolInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/ThreadPool/ThreadPoolInterface.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/ThreadPool/ThreadYield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/ThreadPool/ThreadYield.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/UmfPackSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/UmfPackSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/misc/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/misc/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/misc/lapacke_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/misc/lapacke_helpers.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/plugins/IndexedViewMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/plugins/IndexedViewMethods.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/plugins/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/plugins/InternalHeaderCheck.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /modules/Eigen/Eigen/src/plugins/ReshapedMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/Eigen/Eigen/src/plugins/ReshapedMethods.h -------------------------------------------------------------------------------- /modules/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/modules/json/json.hpp -------------------------------------------------------------------------------- /python/conv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/conv.png -------------------------------------------------------------------------------- /python/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/conv.py -------------------------------------------------------------------------------- /python/conv1d_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/conv1d_torch.py -------------------------------------------------------------------------------- /python/conv1d_torch_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/conv1d_torch_group.py -------------------------------------------------------------------------------- /python/conv1d_torch_stride.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/conv1d_torch_stride.py -------------------------------------------------------------------------------- /python/conv2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/conv2d.py -------------------------------------------------------------------------------- /python/conv_stateless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/conv_stateless.py -------------------------------------------------------------------------------- /python/convtranspose1d_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/convtranspose1d_torch.py -------------------------------------------------------------------------------- /python/convtranspose1d_torch_cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/convtranspose1d_torch_cc.py -------------------------------------------------------------------------------- /python/dense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/dense.png -------------------------------------------------------------------------------- /python/dense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/dense.py -------------------------------------------------------------------------------- /python/gru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/gru.png -------------------------------------------------------------------------------- /python/gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/gru.py -------------------------------------------------------------------------------- /python/gru_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/gru_1d.png -------------------------------------------------------------------------------- /python/gru_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/gru_1d.py -------------------------------------------------------------------------------- /python/gru_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/gru_torch.py -------------------------------------------------------------------------------- /python/lstm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/lstm.png -------------------------------------------------------------------------------- /python/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/lstm.py -------------------------------------------------------------------------------- /python/lstm_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/lstm_1d.png -------------------------------------------------------------------------------- /python/lstm_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/lstm_1d.py -------------------------------------------------------------------------------- /python/lstm_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/lstm_torch.py -------------------------------------------------------------------------------- /python/microtcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/microtcn.py -------------------------------------------------------------------------------- /python/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/python/model_utils.py -------------------------------------------------------------------------------- /test_data/conv1d_torch_group_x_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/conv1d_torch_group_x_python.csv -------------------------------------------------------------------------------- /test_data/conv1d_torch_group_y_python_6_3_3_1_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/conv1d_torch_group_y_python_6_3_3_1_3.csv -------------------------------------------------------------------------------- /test_data/conv1d_torch_group_y_python_6_3_4_10_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/conv1d_torch_group_y_python_6_3_4_10_3.csv -------------------------------------------------------------------------------- /test_data/conv1d_torch_group_y_python_6_6_1_1_6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/conv1d_torch_group_y_python_6_6_1_1_6.csv -------------------------------------------------------------------------------- /test_data/conv1d_torch_x_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/conv1d_torch_x_python.csv -------------------------------------------------------------------------------- /test_data/conv1d_torch_x_python_stride_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/conv1d_torch_x_python_stride_3.csv -------------------------------------------------------------------------------- /test_data/conv1d_torch_y_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/conv1d_torch_y_python.csv -------------------------------------------------------------------------------- /test_data/conv1d_torch_y_python_stride_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/conv1d_torch_y_python_stride_3.csv -------------------------------------------------------------------------------- /test_data/conv2d_x_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/conv2d_x_python.csv -------------------------------------------------------------------------------- /test_data/conv2d_y_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/conv2d_y_python.csv -------------------------------------------------------------------------------- /test_data/conv_stateless_x_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/conv_stateless_x_python.csv -------------------------------------------------------------------------------- /test_data/conv_stateless_y_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/conv_stateless_y_python.csv -------------------------------------------------------------------------------- /test_data/conv_x_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/conv_x_python.csv -------------------------------------------------------------------------------- /test_data/conv_y_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/conv_y_python.csv -------------------------------------------------------------------------------- /test_data/convtranspose1d_torch_x_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/convtranspose1d_torch_x_python.csv -------------------------------------------------------------------------------- /test_data/convtranspose1d_torch_x_python_cc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/convtranspose1d_torch_x_python_cc.csv -------------------------------------------------------------------------------- /test_data/convtranspose1d_torch_y_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/convtranspose1d_torch_y_python.csv -------------------------------------------------------------------------------- /test_data/convtranspose1d_torch_y_python_cc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/convtranspose1d_torch_y_python_cc.csv -------------------------------------------------------------------------------- /test_data/dense_x_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/dense_x_python.csv -------------------------------------------------------------------------------- /test_data/dense_y_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/dense_y_python.csv -------------------------------------------------------------------------------- /test_data/gru_1d_x_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/gru_1d_x_python.csv -------------------------------------------------------------------------------- /test_data/gru_1d_y_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/gru_1d_y_python.csv -------------------------------------------------------------------------------- /test_data/gru_torch_x_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/gru_torch_x_python.csv -------------------------------------------------------------------------------- /test_data/gru_torch_y_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/gru_torch_y_python.csv -------------------------------------------------------------------------------- /test_data/gru_x_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/gru_x_python.csv -------------------------------------------------------------------------------- /test_data/gru_y_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/gru_y_python.csv -------------------------------------------------------------------------------- /test_data/lstm_1d_x_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/lstm_1d_x_python.csv -------------------------------------------------------------------------------- /test_data/lstm_1d_y_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/lstm_1d_y_python.csv -------------------------------------------------------------------------------- /test_data/lstm_torch_x_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/lstm_torch_x_python.csv -------------------------------------------------------------------------------- /test_data/lstm_torch_y_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/lstm_torch_y_python.csv -------------------------------------------------------------------------------- /test_data/lstm_x_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/lstm_x_python.csv -------------------------------------------------------------------------------- /test_data/lstm_y_python.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/lstm_y_python.csv -------------------------------------------------------------------------------- /test_data/microtcn_x.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/microtcn_x.csv -------------------------------------------------------------------------------- /test_data/microtcn_y.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/test_data/microtcn_y.csv -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/functional/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/CMakeLists.txt -------------------------------------------------------------------------------- /tests/functional/bad_model_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/bad_model_test.cpp -------------------------------------------------------------------------------- /tests/functional/conv2d_model_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/conv2d_model_test.cpp -------------------------------------------------------------------------------- /tests/functional/load_csv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/load_csv.hpp -------------------------------------------------------------------------------- /tests/functional/model_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/model_test.cpp -------------------------------------------------------------------------------- /tests/functional/sample_rate_rnn_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/sample_rate_rnn_test.cpp -------------------------------------------------------------------------------- /tests/functional/templated_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/templated_tests.cpp -------------------------------------------------------------------------------- /tests/functional/test_configs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/test_configs.hpp -------------------------------------------------------------------------------- /tests/functional/test_maths_provider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/test_maths_provider.hpp -------------------------------------------------------------------------------- /tests/functional/torch_conv1d_groups_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/torch_conv1d_groups_test.cpp -------------------------------------------------------------------------------- /tests/functional/torch_conv1d_stride_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/torch_conv1d_stride_test.cpp -------------------------------------------------------------------------------- /tests/functional/torch_conv1d_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/torch_conv1d_test.cpp -------------------------------------------------------------------------------- /tests/functional/torch_convtranspose1d_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/torch_convtranspose1d_test.cpp -------------------------------------------------------------------------------- /tests/functional/torch_gru_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/torch_gru_test.cpp -------------------------------------------------------------------------------- /tests/functional/torch_lstm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/torch_lstm_test.cpp -------------------------------------------------------------------------------- /tests/functional/torch_microtcn_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/functional/torch_microtcn_test.cpp -------------------------------------------------------------------------------- /tests/torch_conv1d_group_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/torch_conv1d_group_test.hpp -------------------------------------------------------------------------------- /tests/torch_microtcn_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/torch_microtcn_test.hpp -------------------------------------------------------------------------------- /tests/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/unit/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit/activation_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural/HEAD/tests/unit/activation_test.cpp --------------------------------------------------------------------------------