├── .gitignore ├── LICENSE ├── README.md ├── examples ├── asl_demo │ ├── Readme.md │ ├── asl_arduino_nano_example.ino │ └── library.properties ├── asl_model.cpp └── person_detection │ ├── Readme.md │ ├── library.properties │ └── person_detect_arducam.ino ├── library.properties └── src ├── Eigen.h ├── Eigen ├── CMakeLists.txt ├── Cholesky ├── CholmodSupport ├── Core ├── Dense ├── Eigen ├── Eigenvalues ├── Geometry ├── Householder ├── IterativeLinearSolvers ├── Jacobi ├── LU ├── MetisSupport ├── OrderingMethods ├── PaStiXSupport ├── PardisoSupport ├── QR ├── QtAlignedMalloc ├── SPQRSupport ├── SVD ├── Sparse ├── SparseCholesky ├── SparseCore ├── SparseLU ├── SparseQR ├── StdDeque ├── StdList ├── StdVector ├── SuperLUSupport ├── UmfPackSupport └── src │ ├── Cholesky │ ├── LDLT.h │ ├── LLT.h │ └── LLT_LAPACKE.h │ ├── CholmodSupport │ └── CholmodSupport.h │ ├── Core │ ├── Array.h │ ├── ArrayBase.h │ ├── ArrayWrapper.h │ ├── Assign.h │ ├── AssignEvaluator.h │ ├── Assign_MKL.h │ ├── BandMatrix.h │ ├── Block.h │ ├── BooleanRedux.h │ ├── CommaInitializer.h │ ├── ConditionEstimator.h │ ├── CoreEvaluators.h │ ├── CoreIterators.h │ ├── CwiseBinaryOp.h │ ├── CwiseNullaryOp.h │ ├── CwiseTernaryOp.h │ ├── CwiseUnaryOp.h │ ├── CwiseUnaryView.h │ ├── DenseBase.h │ ├── DenseCoeffsBase.h │ ├── DenseStorage.h │ ├── Diagonal.h │ ├── DiagonalMatrix.h │ ├── DiagonalProduct.h │ ├── Dot.h │ ├── EigenBase.h │ ├── ForceAlignedAccess.h │ ├── Fuzzy.h │ ├── GeneralProduct.h │ ├── GenericPacketMath.h │ ├── GlobalFunctions.h │ ├── IO.h │ ├── Inverse.h │ ├── Map.h │ ├── MapBase.h │ ├── MathFunctions.h │ ├── MathFunctionsImpl.h │ ├── Matrix.h │ ├── MatrixBase.h │ ├── NestByValue.h │ ├── NoAlias.h │ ├── NumTraits.h │ ├── PermutationMatrix.h │ ├── PlainObjectBase.h │ ├── Product.h │ ├── ProductEvaluators.h │ ├── Random.h │ ├── Redux.h │ ├── Ref.h │ ├── Replicate.h │ ├── ReturnByValue.h │ ├── Reverse.h │ ├── Select.h │ ├── SelfAdjointView.h │ ├── SelfCwiseBinaryOp.h │ ├── Solve.h │ ├── SolveTriangular.h │ ├── SolverBase.h │ ├── StableNorm.h │ ├── Stride.h │ ├── Swap.h │ ├── Transpose.h │ ├── Transpositions.h │ ├── TriangularMatrix.h │ ├── VectorBlock.h │ ├── VectorwiseOp.h │ ├── Visitor.h │ ├── arch │ │ ├── AVX │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ ├── PacketMath.h │ │ │ └── TypeCasting.h │ │ ├── AVX512 │ │ │ ├── MathFunctions.h │ │ │ └── PacketMath.h │ │ ├── AltiVec │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ └── PacketMath.h │ │ ├── CUDA │ │ │ ├── Complex.h │ │ │ ├── Half.h │ │ │ ├── MathFunctions.h │ │ │ ├── PacketMath.h │ │ │ ├── PacketMathHalf.h │ │ │ └── TypeCasting.h │ │ ├── Default │ │ │ ├── ConjHelper.h │ │ │ └── Settings.h │ │ ├── NEON │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ └── PacketMath.h │ │ ├── SSE │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ ├── PacketMath.h │ │ │ └── TypeCasting.h │ │ └── ZVector │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ └── PacketMath.h │ ├── functors │ │ ├── AssignmentFunctors.h │ │ ├── BinaryFunctors.h │ │ ├── NullaryFunctors.h │ │ ├── StlFunctors.h │ │ ├── TernaryFunctors.h │ │ └── UnaryFunctors.h │ ├── products │ │ ├── GeneralBlockPanelKernel.h │ │ ├── GeneralMatrixMatrix.h │ │ ├── GeneralMatrixMatrixTriangular.h │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ ├── GeneralMatrixVector.h │ │ ├── GeneralMatrixVector_BLAS.h │ │ ├── Parallelizer.h │ │ ├── SelfadjointMatrixMatrix.h │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ ├── SelfadjointMatrixVector.h │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ ├── SelfadjointProduct.h │ │ ├── SelfadjointRank2Update.h │ │ ├── TriangularMatrixMatrix.h │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ ├── TriangularMatrixVector.h │ │ ├── TriangularMatrixVector_BLAS.h │ │ ├── TriangularSolverMatrix.h │ │ ├── TriangularSolverMatrix_BLAS.h │ │ └── TriangularSolverVector.h │ └── util │ │ ├── BlasUtil.h │ │ ├── Constants.h │ │ ├── DisableStupidWarnings.h │ │ ├── ForwardDeclarations.h │ │ ├── MKL_support.h │ │ ├── Macros.h │ │ ├── Memory.h │ │ ├── Meta.h │ │ ├── NonMPL2.h │ │ ├── ReenableStupidWarnings.h │ │ ├── StaticAssert.h │ │ └── XprHelper.h │ ├── Eigenvalues │ ├── ComplexEigenSolver.h │ ├── ComplexSchur.h │ ├── ComplexSchur_LAPACKE.h │ ├── EigenSolver.h │ ├── GeneralizedEigenSolver.h │ ├── GeneralizedSelfAdjointEigenSolver.h │ ├── HessenbergDecomposition.h │ ├── MatrixBaseEigenvalues.h │ ├── RealQZ.h │ ├── RealSchur.h │ ├── RealSchur_LAPACKE.h │ ├── SelfAdjointEigenSolver.h │ ├── SelfAdjointEigenSolver_LAPACKE.h │ └── Tridiagonalization.h │ ├── Geometry │ ├── AlignedBox.h │ ├── AngleAxis.h │ ├── EulerAngles.h │ ├── Homogeneous.h │ ├── Hyperplane.h │ ├── OrthoMethods.h │ ├── ParametrizedLine.h │ ├── Quaternion.h │ ├── Rotation2D.h │ ├── RotationBase.h │ ├── Scaling.h │ ├── Transform.h │ ├── Translation.h │ ├── Umeyama.h │ └── arch │ │ └── Geometry_SSE.h │ ├── Householder │ ├── BlockHouseholder.h │ ├── Householder.h │ └── HouseholderSequence.h │ ├── IterativeLinearSolvers │ ├── BasicPreconditioners.h │ ├── BiCGSTAB.h │ ├── ConjugateGradient.h │ ├── IncompleteCholesky.h │ ├── IncompleteLUT.h │ ├── IterativeSolverBase.h │ ├── LeastSquareConjugateGradient.h │ └── SolveWithGuess.h │ ├── Jacobi │ └── Jacobi.h │ ├── LU │ ├── Determinant.h │ ├── FullPivLU.h │ ├── InverseImpl.h │ ├── PartialPivLU.h │ ├── PartialPivLU_LAPACKE.h │ └── arch │ │ └── Inverse_SSE.h │ ├── MetisSupport │ └── MetisSupport.h │ ├── OrderingMethods │ ├── Amd.h │ ├── Eigen_Colamd.h │ └── Ordering.h │ ├── PaStiXSupport │ └── PaStiXSupport.h │ ├── PardisoSupport │ └── PardisoSupport.h │ ├── QR │ ├── ColPivHouseholderQR.h │ ├── ColPivHouseholderQR_LAPACKE.h │ ├── CompleteOrthogonalDecomposition.h │ ├── FullPivHouseholderQR.h │ ├── HouseholderQR.h │ └── HouseholderQR_LAPACKE.h │ ├── SPQRSupport │ └── SuiteSparseQRSupport.h │ ├── SVD │ ├── BDCSVD.h │ ├── JacobiSVD.h │ ├── JacobiSVD_LAPACKE.h │ ├── SVDBase.h │ └── UpperBidiagonalization.h │ ├── SparseCholesky │ ├── SimplicialCholesky.h │ └── SimplicialCholesky_impl.h │ ├── SparseCore │ ├── AmbiVector.h │ ├── CompressedStorage.h │ ├── ConservativeSparseSparseProduct.h │ ├── MappedSparseMatrix.h │ ├── SparseAssign.h │ ├── SparseBlock.h │ ├── SparseColEtree.h │ ├── SparseCompressedBase.h │ ├── SparseCwiseBinaryOp.h │ ├── SparseCwiseUnaryOp.h │ ├── SparseDenseProduct.h │ ├── SparseDiagonalProduct.h │ ├── SparseDot.h │ ├── SparseFuzzy.h │ ├── SparseMap.h │ ├── SparseMatrix.h │ ├── SparseMatrixBase.h │ ├── SparsePermutation.h │ ├── SparseProduct.h │ ├── SparseRedux.h │ ├── SparseRef.h │ ├── SparseSelfAdjointView.h │ ├── SparseSolverBase.h │ ├── SparseSparseProductWithPruning.h │ ├── SparseTranspose.h │ ├── SparseTriangularView.h │ ├── SparseUtil.h │ ├── SparseVector.h │ ├── SparseView.h │ └── TriangularSolver.h │ ├── SparseLU │ ├── SparseLU.h │ ├── SparseLUImpl.h │ ├── SparseLU_Memory.h │ ├── SparseLU_Structs.h │ ├── SparseLU_SupernodalMatrix.h │ ├── SparseLU_Utils.h │ ├── SparseLU_column_bmod.h │ ├── SparseLU_column_dfs.h │ ├── SparseLU_copy_to_ucol.h │ ├── SparseLU_gemm_kernel.h │ ├── SparseLU_heap_relax_snode.h │ ├── SparseLU_kernel_bmod.h │ ├── SparseLU_panel_bmod.h │ ├── SparseLU_panel_dfs.h │ ├── SparseLU_pivotL.h │ ├── SparseLU_pruneL.h │ └── SparseLU_relax_snode.h │ ├── SparseQR │ └── SparseQR.h │ ├── StlSupport │ ├── StdDeque.h │ ├── StdList.h │ ├── StdVector.h │ └── details.h │ ├── SuperLUSupport │ └── SuperLUSupport.h │ ├── UmfPackSupport │ └── UmfPackSupport.h │ ├── misc │ ├── Image.h │ ├── Kernel.h │ ├── RealSvd2x2.h │ ├── blas.h │ ├── lapack.h │ ├── lapacke.h │ └── lapacke_mangling.h │ └── plugins │ ├── ArrayCwiseBinaryOps.h │ ├── ArrayCwiseUnaryOps.h │ ├── BlockMethods.h │ ├── CommonCwiseBinaryOps.h │ ├── CommonCwiseUnaryOps.h │ ├── MatrixCwiseBinaryOps.h │ └── MatrixCwiseUnaryOps.h ├── core ├── broadcast.h ├── datatypes.h ├── flag.h ├── iterator.h ├── macros.h ├── placeHolder.h └── tensor.h ├── deepC.h └── operators ├── Abs.h ├── Acos.h ├── Acosh.h ├── Add.h ├── And.h ├── ArgMax.h ├── ArgMin.h ├── Asin.h ├── Asinh.h ├── Atan.h ├── Atanh.h ├── AveragePool.h ├── BatchNormalization.h ├── BitShift.h ├── BitwiseAnd.h ├── BitwiseOr.h ├── BitwiseXor.h ├── Cast.h ├── Ceil.h ├── Clip.h ├── Compress.h ├── Concat.h ├── Constant.h ├── ConstantOfShape.h ├── Conv.h ├── ConvInteger.h ├── ConvTranspose.h ├── Cos.h ├── Cosh.h ├── CumSum.h ├── DepthToSpace.h ├── DequantizeLinear.h ├── Div.h ├── Dropout.h ├── Elu.h ├── Equal.h ├── Erf.h ├── Exp.h ├── Expand.h ├── EyeLike.h ├── Flatten.h ├── Floor.h ├── FloorDiv.h ├── GRU.h ├── Gather.h ├── Gemm.h ├── GlobalAveragePool.h ├── GlobalLpPool.h ├── GlobalMaxPool.h ├── Greater.h ├── GreaterEqual.h ├── HardSigmoid.h ├── Hardmax.h ├── Identity.h ├── If.h ├── InstanceNormalization.h ├── IsInf.h ├── IsNaN.h ├── LRN.h ├── LSTM.h ├── LeakyRelu.h ├── Less.h ├── LessEqual.h ├── Log.h ├── LogSoftmax.h ├── Loop.h ├── LpNormalization.h ├── LpPool.h ├── MatMul.h ├── MatMulInteger.h ├── Max.h ├── MaxPool.h ├── MaxRoiPool.h ├── MaxUnpool.h ├── Mean.h ├── Min.h ├── Mod.h ├── Mul.h ├── Multinomial.h ├── Neg.h ├── NonMaxSuppression.h ├── NonZero.h ├── Not.h ├── NotEqual.h ├── OneHot.h ├── Or.h ├── PRelu.h ├── Pad.h ├── Pow.h ├── QLinearConv.h ├── QLinearMatMul.h ├── QuantizeLinear.h ├── RNN.h ├── RandomNormal.h ├── RandomNormalLike.h ├── RandomUniform.h ├── RandomUniformLike.h ├── Reciprocal.h ├── ReduceL1.h ├── ReduceL2.h ├── ReduceLogSum.h ├── ReduceLogSumExp.h ├── ReduceMax.h ├── ReduceMean.h ├── ReduceMin.h ├── ReduceProd.h ├── ReduceSum.h ├── ReduceSumSquare.h ├── Relu.h ├── Remainder.h ├── Reshape.h ├── Resize.h ├── ReverseSequence.h ├── RoiAlign.h ├── Round.h ├── Scan.h ├── Scatter.h ├── Selu.h ├── SetSlice.h ├── Shape.h ├── Shrink.h ├── Sigmoid.h ├── Sign.h ├── Sin.h ├── Sinh.h ├── Size.h ├── Slice.h ├── Softmax.h ├── Softplus.h ├── Softsign.h ├── SpaceToDepth.h ├── Split.h ├── Sqrt.h ├── Squeeze.h ├── StringNormalizer.h ├── Sub.h ├── Sum.h ├── Tan.h ├── Tanh.h ├── TfIdfVectorizer.h ├── ThresholdedRelu.h ├── Tile.h ├── TopK.h ├── Transpose.h ├── TrueDiv.h ├── Unsqueeze.h ├── Upsample.h ├── Where.h ├── Xor.h ├── baseOperator.h ├── macros.h └── opTypes.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/README.md -------------------------------------------------------------------------------- /examples/asl_demo/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/examples/asl_demo/Readme.md -------------------------------------------------------------------------------- /examples/asl_demo/asl_arduino_nano_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/examples/asl_demo/asl_arduino_nano_example.ino -------------------------------------------------------------------------------- /examples/asl_demo/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/examples/asl_demo/library.properties -------------------------------------------------------------------------------- /examples/asl_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/examples/asl_model.cpp -------------------------------------------------------------------------------- /examples/person_detection/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/examples/person_detection/Readme.md -------------------------------------------------------------------------------- /examples/person_detection/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/examples/person_detection/library.properties -------------------------------------------------------------------------------- /examples/person_detection/person_detect_arducam.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/examples/person_detection/person_detect_arducam.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/library.properties -------------------------------------------------------------------------------- /src/Eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen.h -------------------------------------------------------------------------------- /src/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /src/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/Cholesky -------------------------------------------------------------------------------- /src/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/CholmodSupport -------------------------------------------------------------------------------- /src/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/Core -------------------------------------------------------------------------------- /src/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/Dense -------------------------------------------------------------------------------- /src/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/Eigen -------------------------------------------------------------------------------- /src/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/Eigenvalues -------------------------------------------------------------------------------- /src/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/Geometry -------------------------------------------------------------------------------- /src/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/Householder -------------------------------------------------------------------------------- /src/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /src/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/Jacobi -------------------------------------------------------------------------------- /src/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/LU -------------------------------------------------------------------------------- /src/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/MetisSupport -------------------------------------------------------------------------------- /src/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/OrderingMethods -------------------------------------------------------------------------------- /src/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /src/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/PardisoSupport -------------------------------------------------------------------------------- /src/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/QR -------------------------------------------------------------------------------- /src/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /src/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/SPQRSupport -------------------------------------------------------------------------------- /src/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/SVD -------------------------------------------------------------------------------- /src/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/Sparse -------------------------------------------------------------------------------- /src/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/SparseCholesky -------------------------------------------------------------------------------- /src/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/SparseCore -------------------------------------------------------------------------------- /src/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/SparseLU -------------------------------------------------------------------------------- /src/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/SparseQR -------------------------------------------------------------------------------- /src/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/StdDeque -------------------------------------------------------------------------------- /src/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/StdList -------------------------------------------------------------------------------- /src/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/StdVector -------------------------------------------------------------------------------- /src/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /src/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /src/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /src/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /src/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /src/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/CUDA/Complex.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/CUDA/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/CUDA/Half.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/CUDA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/CUDA/MathFunctions.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/CUDA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/CUDA/PacketMath.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/CUDA/PacketMathHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/CUDA/PacketMathHalf.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/CUDA/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/CUDA/TypeCasting.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/Default/ConjHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/Default/ConjHelper.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /src/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /src/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /src/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /src/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -------------------------------------------------------------------------------- /src/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /src/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /src/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /src/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /src/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /src/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /src/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /src/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -------------------------------------------------------------------------------- /src/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /src/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h -------------------------------------------------------------------------------- /src/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /src/Eigen/src/Geometry/arch/Geometry_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Geometry/arch/Geometry_SSE.h -------------------------------------------------------------------------------- /src/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /src/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /src/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /src/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h -------------------------------------------------------------------------------- /src/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /src/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /src/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h -------------------------------------------------------------------------------- /src/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /src/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h -------------------------------------------------------------------------------- /src/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h -------------------------------------------------------------------------------- /src/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h -------------------------------------------------------------------------------- /src/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /src/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /src/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /src/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /src/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /src/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /src/Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/LU/arch/Inverse_SSE.h -------------------------------------------------------------------------------- /src/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /src/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /src/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /src/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /src/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /src/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /src/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /src/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /src/Eigen/src/QR/CompleteOrthogonalDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/QR/CompleteOrthogonalDecomposition.h -------------------------------------------------------------------------------- /src/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /src/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /src/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /src/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /src/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /src/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /src/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /src/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /src/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /src/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /src/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /src/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /src/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /src/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /src/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /src/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /src/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /src/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /src/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /src/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /src/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /src/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /src/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /src/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /src/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /src/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /src/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /src/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /src/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /src/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /src/core/broadcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/core/broadcast.h -------------------------------------------------------------------------------- /src/core/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/core/datatypes.h -------------------------------------------------------------------------------- /src/core/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/core/flag.h -------------------------------------------------------------------------------- /src/core/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/core/iterator.h -------------------------------------------------------------------------------- /src/core/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/core/macros.h -------------------------------------------------------------------------------- /src/core/placeHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/core/placeHolder.h -------------------------------------------------------------------------------- /src/core/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/core/tensor.h -------------------------------------------------------------------------------- /src/deepC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/deepC.h -------------------------------------------------------------------------------- /src/operators/Abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Abs.h -------------------------------------------------------------------------------- /src/operators/Acos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Acos.h -------------------------------------------------------------------------------- /src/operators/Acosh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Acosh.h -------------------------------------------------------------------------------- /src/operators/Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Add.h -------------------------------------------------------------------------------- /src/operators/And.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/And.h -------------------------------------------------------------------------------- /src/operators/ArgMax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ArgMax.h -------------------------------------------------------------------------------- /src/operators/ArgMin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ArgMin.h -------------------------------------------------------------------------------- /src/operators/Asin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Asin.h -------------------------------------------------------------------------------- /src/operators/Asinh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Asinh.h -------------------------------------------------------------------------------- /src/operators/Atan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Atan.h -------------------------------------------------------------------------------- /src/operators/Atanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Atanh.h -------------------------------------------------------------------------------- /src/operators/AveragePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/AveragePool.h -------------------------------------------------------------------------------- /src/operators/BatchNormalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/BatchNormalization.h -------------------------------------------------------------------------------- /src/operators/BitShift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/BitShift.h -------------------------------------------------------------------------------- /src/operators/BitwiseAnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/BitwiseAnd.h -------------------------------------------------------------------------------- /src/operators/BitwiseOr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/BitwiseOr.h -------------------------------------------------------------------------------- /src/operators/BitwiseXor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/BitwiseXor.h -------------------------------------------------------------------------------- /src/operators/Cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Cast.h -------------------------------------------------------------------------------- /src/operators/Ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Ceil.h -------------------------------------------------------------------------------- /src/operators/Clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Clip.h -------------------------------------------------------------------------------- /src/operators/Compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Compress.h -------------------------------------------------------------------------------- /src/operators/Concat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Concat.h -------------------------------------------------------------------------------- /src/operators/Constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Constant.h -------------------------------------------------------------------------------- /src/operators/ConstantOfShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ConstantOfShape.h -------------------------------------------------------------------------------- /src/operators/Conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Conv.h -------------------------------------------------------------------------------- /src/operators/ConvInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ConvInteger.h -------------------------------------------------------------------------------- /src/operators/ConvTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ConvTranspose.h -------------------------------------------------------------------------------- /src/operators/Cos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Cos.h -------------------------------------------------------------------------------- /src/operators/Cosh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Cosh.h -------------------------------------------------------------------------------- /src/operators/CumSum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/CumSum.h -------------------------------------------------------------------------------- /src/operators/DepthToSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/DepthToSpace.h -------------------------------------------------------------------------------- /src/operators/DequantizeLinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/DequantizeLinear.h -------------------------------------------------------------------------------- /src/operators/Div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Div.h -------------------------------------------------------------------------------- /src/operators/Dropout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Dropout.h -------------------------------------------------------------------------------- /src/operators/Elu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Elu.h -------------------------------------------------------------------------------- /src/operators/Equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Equal.h -------------------------------------------------------------------------------- /src/operators/Erf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Erf.h -------------------------------------------------------------------------------- /src/operators/Exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Exp.h -------------------------------------------------------------------------------- /src/operators/Expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Expand.h -------------------------------------------------------------------------------- /src/operators/EyeLike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/EyeLike.h -------------------------------------------------------------------------------- /src/operators/Flatten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Flatten.h -------------------------------------------------------------------------------- /src/operators/Floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Floor.h -------------------------------------------------------------------------------- /src/operators/FloorDiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/FloorDiv.h -------------------------------------------------------------------------------- /src/operators/GRU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/GRU.h -------------------------------------------------------------------------------- /src/operators/Gather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Gather.h -------------------------------------------------------------------------------- /src/operators/Gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Gemm.h -------------------------------------------------------------------------------- /src/operators/GlobalAveragePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/GlobalAveragePool.h -------------------------------------------------------------------------------- /src/operators/GlobalLpPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/GlobalLpPool.h -------------------------------------------------------------------------------- /src/operators/GlobalMaxPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/GlobalMaxPool.h -------------------------------------------------------------------------------- /src/operators/Greater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Greater.h -------------------------------------------------------------------------------- /src/operators/GreaterEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/GreaterEqual.h -------------------------------------------------------------------------------- /src/operators/HardSigmoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/HardSigmoid.h -------------------------------------------------------------------------------- /src/operators/Hardmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Hardmax.h -------------------------------------------------------------------------------- /src/operators/Identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Identity.h -------------------------------------------------------------------------------- /src/operators/If.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/If.h -------------------------------------------------------------------------------- /src/operators/InstanceNormalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/InstanceNormalization.h -------------------------------------------------------------------------------- /src/operators/IsInf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/IsInf.h -------------------------------------------------------------------------------- /src/operators/IsNaN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/IsNaN.h -------------------------------------------------------------------------------- /src/operators/LRN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/LRN.h -------------------------------------------------------------------------------- /src/operators/LSTM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/LSTM.h -------------------------------------------------------------------------------- /src/operators/LeakyRelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/LeakyRelu.h -------------------------------------------------------------------------------- /src/operators/Less.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Less.h -------------------------------------------------------------------------------- /src/operators/LessEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/LessEqual.h -------------------------------------------------------------------------------- /src/operators/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Log.h -------------------------------------------------------------------------------- /src/operators/LogSoftmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/LogSoftmax.h -------------------------------------------------------------------------------- /src/operators/Loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Loop.h -------------------------------------------------------------------------------- /src/operators/LpNormalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/LpNormalization.h -------------------------------------------------------------------------------- /src/operators/LpPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/LpPool.h -------------------------------------------------------------------------------- /src/operators/MatMul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/MatMul.h -------------------------------------------------------------------------------- /src/operators/MatMulInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/MatMulInteger.h -------------------------------------------------------------------------------- /src/operators/Max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Max.h -------------------------------------------------------------------------------- /src/operators/MaxPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/MaxPool.h -------------------------------------------------------------------------------- /src/operators/MaxRoiPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/MaxRoiPool.h -------------------------------------------------------------------------------- /src/operators/MaxUnpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/MaxUnpool.h -------------------------------------------------------------------------------- /src/operators/Mean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Mean.h -------------------------------------------------------------------------------- /src/operators/Min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Min.h -------------------------------------------------------------------------------- /src/operators/Mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Mod.h -------------------------------------------------------------------------------- /src/operators/Mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Mul.h -------------------------------------------------------------------------------- /src/operators/Multinomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Multinomial.h -------------------------------------------------------------------------------- /src/operators/Neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Neg.h -------------------------------------------------------------------------------- /src/operators/NonMaxSuppression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/NonMaxSuppression.h -------------------------------------------------------------------------------- /src/operators/NonZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/NonZero.h -------------------------------------------------------------------------------- /src/operators/Not.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Not.h -------------------------------------------------------------------------------- /src/operators/NotEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/NotEqual.h -------------------------------------------------------------------------------- /src/operators/OneHot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/OneHot.h -------------------------------------------------------------------------------- /src/operators/Or.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Or.h -------------------------------------------------------------------------------- /src/operators/PRelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/PRelu.h -------------------------------------------------------------------------------- /src/operators/Pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Pad.h -------------------------------------------------------------------------------- /src/operators/Pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Pow.h -------------------------------------------------------------------------------- /src/operators/QLinearConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/QLinearConv.h -------------------------------------------------------------------------------- /src/operators/QLinearMatMul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/QLinearMatMul.h -------------------------------------------------------------------------------- /src/operators/QuantizeLinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/QuantizeLinear.h -------------------------------------------------------------------------------- /src/operators/RNN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/RNN.h -------------------------------------------------------------------------------- /src/operators/RandomNormal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/RandomNormal.h -------------------------------------------------------------------------------- /src/operators/RandomNormalLike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/RandomNormalLike.h -------------------------------------------------------------------------------- /src/operators/RandomUniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/RandomUniform.h -------------------------------------------------------------------------------- /src/operators/RandomUniformLike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/RandomUniformLike.h -------------------------------------------------------------------------------- /src/operators/Reciprocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Reciprocal.h -------------------------------------------------------------------------------- /src/operators/ReduceL1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ReduceL1.h -------------------------------------------------------------------------------- /src/operators/ReduceL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ReduceL2.h -------------------------------------------------------------------------------- /src/operators/ReduceLogSum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ReduceLogSum.h -------------------------------------------------------------------------------- /src/operators/ReduceLogSumExp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ReduceLogSumExp.h -------------------------------------------------------------------------------- /src/operators/ReduceMax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ReduceMax.h -------------------------------------------------------------------------------- /src/operators/ReduceMean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ReduceMean.h -------------------------------------------------------------------------------- /src/operators/ReduceMin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ReduceMin.h -------------------------------------------------------------------------------- /src/operators/ReduceProd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ReduceProd.h -------------------------------------------------------------------------------- /src/operators/ReduceSum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ReduceSum.h -------------------------------------------------------------------------------- /src/operators/ReduceSumSquare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ReduceSumSquare.h -------------------------------------------------------------------------------- /src/operators/Relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Relu.h -------------------------------------------------------------------------------- /src/operators/Remainder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Remainder.h -------------------------------------------------------------------------------- /src/operators/Reshape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Reshape.h -------------------------------------------------------------------------------- /src/operators/Resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Resize.h -------------------------------------------------------------------------------- /src/operators/ReverseSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ReverseSequence.h -------------------------------------------------------------------------------- /src/operators/RoiAlign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/RoiAlign.h -------------------------------------------------------------------------------- /src/operators/Round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Round.h -------------------------------------------------------------------------------- /src/operators/Scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Scan.h -------------------------------------------------------------------------------- /src/operators/Scatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Scatter.h -------------------------------------------------------------------------------- /src/operators/Selu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Selu.h -------------------------------------------------------------------------------- /src/operators/SetSlice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/SetSlice.h -------------------------------------------------------------------------------- /src/operators/Shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Shape.h -------------------------------------------------------------------------------- /src/operators/Shrink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Shrink.h -------------------------------------------------------------------------------- /src/operators/Sigmoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Sigmoid.h -------------------------------------------------------------------------------- /src/operators/Sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Sign.h -------------------------------------------------------------------------------- /src/operators/Sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Sin.h -------------------------------------------------------------------------------- /src/operators/Sinh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Sinh.h -------------------------------------------------------------------------------- /src/operators/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Size.h -------------------------------------------------------------------------------- /src/operators/Slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Slice.h -------------------------------------------------------------------------------- /src/operators/Softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Softmax.h -------------------------------------------------------------------------------- /src/operators/Softplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Softplus.h -------------------------------------------------------------------------------- /src/operators/Softsign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Softsign.h -------------------------------------------------------------------------------- /src/operators/SpaceToDepth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/SpaceToDepth.h -------------------------------------------------------------------------------- /src/operators/Split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Split.h -------------------------------------------------------------------------------- /src/operators/Sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Sqrt.h -------------------------------------------------------------------------------- /src/operators/Squeeze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Squeeze.h -------------------------------------------------------------------------------- /src/operators/StringNormalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/StringNormalizer.h -------------------------------------------------------------------------------- /src/operators/Sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Sub.h -------------------------------------------------------------------------------- /src/operators/Sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Sum.h -------------------------------------------------------------------------------- /src/operators/Tan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Tan.h -------------------------------------------------------------------------------- /src/operators/Tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Tanh.h -------------------------------------------------------------------------------- /src/operators/TfIdfVectorizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/TfIdfVectorizer.h -------------------------------------------------------------------------------- /src/operators/ThresholdedRelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/ThresholdedRelu.h -------------------------------------------------------------------------------- /src/operators/Tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Tile.h -------------------------------------------------------------------------------- /src/operators/TopK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/TopK.h -------------------------------------------------------------------------------- /src/operators/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Transpose.h -------------------------------------------------------------------------------- /src/operators/TrueDiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/TrueDiv.h -------------------------------------------------------------------------------- /src/operators/Unsqueeze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Unsqueeze.h -------------------------------------------------------------------------------- /src/operators/Upsample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Upsample.h -------------------------------------------------------------------------------- /src/operators/Where.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Where.h -------------------------------------------------------------------------------- /src/operators/Xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/Xor.h -------------------------------------------------------------------------------- /src/operators/baseOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/baseOperator.h -------------------------------------------------------------------------------- /src/operators/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/macros.h -------------------------------------------------------------------------------- /src/operators/opTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-techsystems/arduino/HEAD/src/operators/opTypes.h --------------------------------------------------------------------------------