├── .gitignore ├── README.md ├── Source ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h └── includes │ ├── 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 │ ├── fdeep │ ├── base64.hpp │ ├── common.hpp │ ├── convolution.hpp │ ├── convolution_im2col.hpp │ ├── fdeep.hpp │ ├── filter.hpp │ ├── import_model.hpp │ ├── layers │ │ ├── activation_layer.hpp │ │ ├── add_layer.hpp │ │ ├── average_layer.hpp │ │ ├── average_pooling_2d_layer.hpp │ │ ├── batch_normalization_layer.hpp │ │ ├── bidirectional_layer.hpp │ │ ├── concatenate_layer.hpp │ │ ├── conv_2d_layer.hpp │ │ ├── cropping_2d_layer.hpp │ │ ├── dense_layer.hpp │ │ ├── depthwise_conv_2d_layer.hpp │ │ ├── elu_layer.hpp │ │ ├── embedding_layer.hpp │ │ ├── flatten_layer.hpp │ │ ├── global_average_pooling_1d_layer.hpp │ │ ├── global_average_pooling_2d_layer.hpp │ │ ├── global_max_pooling_1d_layer.hpp │ │ ├── global_max_pooling_2d_layer.hpp │ │ ├── global_pooling_layer.hpp │ │ ├── gru_layer.hpp │ │ ├── hard_sigmoid_layer.hpp │ │ ├── input_layer.hpp │ │ ├── layer.hpp │ │ ├── leaky_relu_layer.hpp │ │ ├── linear_layer.hpp │ │ ├── lstm_layer.hpp │ │ ├── max_pooling_2d_layer.hpp │ │ ├── maximum_layer.hpp │ │ ├── model_layer.hpp │ │ ├── multiply_layer.hpp │ │ ├── permute_layer.hpp │ │ ├── pooling_2d_layer.hpp │ │ ├── prelu_layer.hpp │ │ ├── relu_layer.hpp │ │ ├── reshape_layer.hpp │ │ ├── selu_layer.hpp │ │ ├── separable_conv_2d_layer.hpp │ │ ├── sigmoid_layer.hpp │ │ ├── softmax_layer.hpp │ │ ├── softplus_layer.hpp │ │ ├── subtract_layer.hpp │ │ ├── tanh_layer.hpp │ │ ├── time_distributed_layer.hpp │ │ ├── upsampling_1d_layer.hpp │ │ ├── upsampling_2d_layer.hpp │ │ └── zero_padding_2d_layer.hpp │ ├── model.hpp │ ├── node.hpp │ ├── recurrent_ops.hpp │ ├── shape2.hpp │ ├── tensor.hpp │ ├── tensor_pos.hpp │ ├── tensor_shape.hpp │ └── tensor_shape_variable.hpp │ ├── fplus │ └── fplus.hpp │ └── nlohmann │ └── json.hpp ├── TensorFlowVST.jucer ├── media ├── ImageLine_logo.png ├── Juce_logo.png ├── TensorFlowVST.PNG ├── example_clean.mov ├── example_clean.wav ├── example_tf_model_gain_d2.mov ├── example_tf_model_gain_d2.wav ├── example_tf_model_gain_d2_learned.mov ├── example_tf_model_gain_d2_learned.wav ├── example_tf_model_random_01.mov ├── example_tf_model_random_01.wav ├── example_tf_model_random_02.mov └── example_tf_model_random_02.wav ├── models.ipynb └── models ├── convert_model.py ├── tf_model_gain_d2.h5 ├── tf_model_gain_d2.json ├── tf_model_gain_d2_learned.h5 ├── tf_model_gain_d2_learned.json ├── tf_model_gain_m2.h5 ├── tf_model_gain_m2.json ├── tf_model_random_01.h5 ├── tf_model_random_01.json ├── tf_model_random_02.h5 └── tf_model_random_02.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/README.md -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Source/includes/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /Source/includes/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/Cholesky -------------------------------------------------------------------------------- /Source/includes/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/CholmodSupport -------------------------------------------------------------------------------- /Source/includes/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/Core -------------------------------------------------------------------------------- /Source/includes/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/Dense -------------------------------------------------------------------------------- /Source/includes/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/Eigen -------------------------------------------------------------------------------- /Source/includes/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/Eigenvalues -------------------------------------------------------------------------------- /Source/includes/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/Geometry -------------------------------------------------------------------------------- /Source/includes/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/Householder -------------------------------------------------------------------------------- /Source/includes/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /Source/includes/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/Jacobi -------------------------------------------------------------------------------- /Source/includes/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/LU -------------------------------------------------------------------------------- /Source/includes/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/MetisSupport -------------------------------------------------------------------------------- /Source/includes/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/OrderingMethods -------------------------------------------------------------------------------- /Source/includes/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /Source/includes/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/PardisoSupport -------------------------------------------------------------------------------- /Source/includes/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/QR -------------------------------------------------------------------------------- /Source/includes/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /Source/includes/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/SPQRSupport -------------------------------------------------------------------------------- /Source/includes/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/SVD -------------------------------------------------------------------------------- /Source/includes/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/Sparse -------------------------------------------------------------------------------- /Source/includes/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/SparseCholesky -------------------------------------------------------------------------------- /Source/includes/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/SparseCore -------------------------------------------------------------------------------- /Source/includes/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/SparseLU -------------------------------------------------------------------------------- /Source/includes/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/SparseQR -------------------------------------------------------------------------------- /Source/includes/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/StdDeque -------------------------------------------------------------------------------- /Source/includes/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/StdList -------------------------------------------------------------------------------- /Source/includes/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/StdVector -------------------------------------------------------------------------------- /Source/includes/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /Source/includes/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/CUDA/Complex.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/CUDA/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/CUDA/Half.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/CUDA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/CUDA/MathFunctions.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/CUDA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/CUDA/PacketMath.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/CUDA/PacketMathHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/CUDA/PacketMathHalf.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/CUDA/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/CUDA/TypeCasting.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/Default/ConjHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/Default/ConjHelper.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Geometry/arch/Geometry_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Geometry/arch/Geometry_SSE.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/LU/arch/Inverse_SSE.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/QR/CompleteOrthogonalDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/QR/CompleteOrthogonalDecomposition.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /Source/includes/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /Source/includes/fdeep/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/base64.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/common.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/convolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/convolution.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/convolution_im2col.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/convolution_im2col.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/fdeep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/fdeep.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/filter.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/import_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/import_model.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/activation_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/activation_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/add_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/add_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/average_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/average_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/average_pooling_2d_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/average_pooling_2d_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/batch_normalization_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/batch_normalization_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/bidirectional_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/bidirectional_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/concatenate_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/concatenate_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/conv_2d_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/conv_2d_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/cropping_2d_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/cropping_2d_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/dense_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/dense_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/depthwise_conv_2d_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/depthwise_conv_2d_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/elu_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/elu_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/embedding_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/embedding_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/flatten_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/flatten_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/global_average_pooling_1d_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/global_average_pooling_1d_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/global_average_pooling_2d_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/global_average_pooling_2d_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/global_max_pooling_1d_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/global_max_pooling_1d_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/global_max_pooling_2d_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/global_max_pooling_2d_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/global_pooling_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/global_pooling_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/gru_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/gru_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/hard_sigmoid_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/hard_sigmoid_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/input_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/input_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/leaky_relu_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/leaky_relu_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/linear_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/linear_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/lstm_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/lstm_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/max_pooling_2d_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/max_pooling_2d_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/maximum_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/maximum_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/model_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/model_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/multiply_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/multiply_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/permute_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/permute_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/pooling_2d_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/pooling_2d_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/prelu_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/prelu_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/relu_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/relu_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/reshape_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/reshape_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/selu_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/selu_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/separable_conv_2d_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/separable_conv_2d_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/sigmoid_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/sigmoid_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/softmax_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/softmax_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/softplus_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/softplus_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/subtract_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/subtract_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/tanh_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/tanh_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/time_distributed_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/time_distributed_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/upsampling_1d_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/upsampling_1d_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/upsampling_2d_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/upsampling_2d_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/layers/zero_padding_2d_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/layers/zero_padding_2d_layer.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/model.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/node.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/recurrent_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/recurrent_ops.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/shape2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/shape2.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/tensor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/tensor.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/tensor_pos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/tensor_pos.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/tensor_shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/tensor_shape.hpp -------------------------------------------------------------------------------- /Source/includes/fdeep/tensor_shape_variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fdeep/tensor_shape_variable.hpp -------------------------------------------------------------------------------- /Source/includes/fplus/fplus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/fplus/fplus.hpp -------------------------------------------------------------------------------- /Source/includes/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/Source/includes/nlohmann/json.hpp -------------------------------------------------------------------------------- /TensorFlowVST.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/TensorFlowVST.jucer -------------------------------------------------------------------------------- /media/ImageLine_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/media/ImageLine_logo.png -------------------------------------------------------------------------------- /media/Juce_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/media/Juce_logo.png -------------------------------------------------------------------------------- /media/TensorFlowVST.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/media/TensorFlowVST.PNG -------------------------------------------------------------------------------- /media/example_clean.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/media/example_clean.mov -------------------------------------------------------------------------------- /media/example_clean.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/media/example_clean.wav -------------------------------------------------------------------------------- /media/example_tf_model_gain_d2.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/media/example_tf_model_gain_d2.mov -------------------------------------------------------------------------------- /media/example_tf_model_gain_d2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/media/example_tf_model_gain_d2.wav -------------------------------------------------------------------------------- /media/example_tf_model_gain_d2_learned.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/media/example_tf_model_gain_d2_learned.mov -------------------------------------------------------------------------------- /media/example_tf_model_gain_d2_learned.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/media/example_tf_model_gain_d2_learned.wav -------------------------------------------------------------------------------- /media/example_tf_model_random_01.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/media/example_tf_model_random_01.mov -------------------------------------------------------------------------------- /media/example_tf_model_random_01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/media/example_tf_model_random_01.wav -------------------------------------------------------------------------------- /media/example_tf_model_random_02.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/media/example_tf_model_random_02.mov -------------------------------------------------------------------------------- /media/example_tf_model_random_02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/media/example_tf_model_random_02.wav -------------------------------------------------------------------------------- /models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/models.ipynb -------------------------------------------------------------------------------- /models/convert_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/models/convert_model.py -------------------------------------------------------------------------------- /models/tf_model_gain_d2.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/models/tf_model_gain_d2.h5 -------------------------------------------------------------------------------- /models/tf_model_gain_d2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/models/tf_model_gain_d2.json -------------------------------------------------------------------------------- /models/tf_model_gain_d2_learned.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/models/tf_model_gain_d2_learned.h5 -------------------------------------------------------------------------------- /models/tf_model_gain_d2_learned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/models/tf_model_gain_d2_learned.json -------------------------------------------------------------------------------- /models/tf_model_gain_m2.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/models/tf_model_gain_m2.h5 -------------------------------------------------------------------------------- /models/tf_model_gain_m2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/models/tf_model_gain_m2.json -------------------------------------------------------------------------------- /models/tf_model_random_01.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/models/tf_model_random_01.h5 -------------------------------------------------------------------------------- /models/tf_model_random_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/models/tf_model_random_01.json -------------------------------------------------------------------------------- /models/tf_model_random_02.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/models/tf_model_random_02.h5 -------------------------------------------------------------------------------- /models/tf_model_random_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyril-Meyer/TensorFlowVST/HEAD/models/tf_model_random_02.json --------------------------------------------------------------------------------