├── .gitIgnore ├── .gitattributes ├── .gitmodules ├── README.md ├── collect.sh ├── example ├── IModel.h ├── Model.h ├── cc_trainer │ ├── Source.cpp │ ├── cc_trainer.vcxproj │ └── cc_trainer.vcxproj.filters ├── examples.sln ├── load_model │ ├── Source.cpp │ ├── load_model.vcxproj │ ├── load_model.vcxproj.filters │ └── model │ │ ├── freezed.pb │ │ ├── generate_model.py │ │ ├── graph.pb │ │ └── model │ │ └── graph.pb ├── load_model_dll_build │ ├── IModel.cpp │ ├── Model.cpp │ ├── load_model_dll_build.vcxproj │ └── load_model_dll_build.vcxproj.filters ├── load_model_dll_link │ ├── Source.cpp │ ├── load_model_dll_link.vcxproj │ ├── load_model_dll_link.vcxproj.filters │ └── model │ │ ├── freezed.pb │ │ ├── generate_model.py │ │ ├── graph.pb │ │ └── model │ │ └── graph.pb └── load_model_lib │ ├── Model.cpp │ ├── load_model_lib.vcxproj │ └── load_model_lib.vcxproj.filters ├── include ├── Eigen │ ├── Cholesky │ ├── CholmodSupport │ ├── Core │ ├── Dense │ ├── Eigen │ ├── Eigenvalues │ ├── Geometry │ ├── Householder │ ├── IterativeLinearSolvers │ ├── Jacobi │ ├── KLUSupport │ ├── LU │ ├── MetisSupport │ ├── OrderingMethods │ ├── PaStiXSupport │ ├── PardisoSupport │ ├── QR │ ├── QtAlignedMalloc │ ├── SPQRSupport │ ├── SVD │ ├── Sparse │ ├── SparseCholesky │ ├── SparseCore │ ├── SparseLU │ ├── SparseQR │ ├── StdDeque │ ├── StdList │ ├── StdVector │ ├── SuperLUSupport │ ├── UmfPackSupport │ └── src │ │ ├── Cholesky │ │ ├── LDLT.h │ │ ├── LLT.h │ │ └── LLT_LAPACKE.h │ │ ├── CholmodSupport │ │ └── CholmodSupport.h │ │ ├── Core │ │ ├── ArithmeticSequence.h │ │ ├── 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 │ │ ├── IndexedView.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 │ │ │ ├── IndexedViewHelper.h │ │ │ ├── IntegralConstant.h │ │ │ ├── MKL_support.h │ │ │ ├── Macros.h │ │ │ ├── Memory.h │ │ │ ├── Meta.h │ │ │ ├── NonMPL2.h │ │ │ ├── ReenableStupidWarnings.h │ │ │ ├── StaticAssert.h │ │ │ ├── SymbolicIndex.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 │ │ ├── KLUSupport │ │ └── KLUSupport.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 │ │ ├── IndexedViewMethods.h │ │ ├── MatrixCwiseBinaryOps.h │ │ └── MatrixCwiseUnaryOps.h ├── Makefile.am ├── README.md ├── google │ └── protobuf │ │ ├── any.cc │ │ ├── any.h │ │ ├── any.pb.cc │ │ ├── any.pb.h │ │ ├── any.proto │ │ ├── any_test.cc │ │ ├── any_test.proto │ │ ├── api.pb.cc │ │ ├── api.pb.h │ │ ├── api.proto │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── arena_impl.h │ │ ├── arena_test_util.cc │ │ ├── arena_test_util.h │ │ ├── arena_unittest.cc │ │ ├── arenastring.cc │ │ ├── arenastring.h │ │ ├── arenastring_unittest.cc │ │ ├── compiler │ │ ├── code_generator.cc │ │ ├── code_generator.h │ │ ├── command_line_interface.cc │ │ ├── command_line_interface.h │ │ ├── command_line_interface_unittest.cc │ │ ├── cpp │ │ │ ├── cpp_bootstrap_unittest.cc │ │ │ ├── cpp_enum.cc │ │ │ ├── cpp_enum.h │ │ │ ├── cpp_enum_field.cc │ │ │ ├── cpp_enum_field.h │ │ │ ├── cpp_extension.cc │ │ │ ├── cpp_extension.h │ │ │ ├── cpp_field.cc │ │ │ ├── cpp_field.h │ │ │ ├── cpp_file.cc │ │ │ ├── cpp_file.h │ │ │ ├── cpp_generator.cc │ │ │ ├── cpp_generator.h │ │ │ ├── cpp_helpers.cc │ │ │ ├── cpp_helpers.h │ │ │ ├── cpp_map_field.cc │ │ │ ├── cpp_map_field.h │ │ │ ├── cpp_message.cc │ │ │ ├── cpp_message.h │ │ │ ├── cpp_message_field.cc │ │ │ ├── cpp_message_field.h │ │ │ ├── cpp_move_unittest.cc │ │ │ ├── cpp_options.h │ │ │ ├── cpp_plugin_unittest.cc │ │ │ ├── cpp_primitive_field.cc │ │ │ ├── cpp_primitive_field.h │ │ │ ├── cpp_service.cc │ │ │ ├── cpp_service.h │ │ │ ├── cpp_string_field.cc │ │ │ ├── cpp_string_field.h │ │ │ ├── cpp_test_bad_identifiers.proto │ │ │ ├── cpp_test_large_enum_value.proto │ │ │ ├── cpp_unittest.cc │ │ │ ├── cpp_unittest.h │ │ │ └── metadata_test.cc │ │ ├── csharp │ │ │ ├── csharp_bootstrap_unittest.cc │ │ │ ├── csharp_doc_comment.cc │ │ │ ├── csharp_doc_comment.h │ │ │ ├── csharp_enum.cc │ │ │ ├── csharp_enum.h │ │ │ ├── csharp_enum_field.cc │ │ │ ├── csharp_enum_field.h │ │ │ ├── csharp_field_base.cc │ │ │ ├── csharp_field_base.h │ │ │ ├── csharp_generator.cc │ │ │ ├── csharp_generator.h │ │ │ ├── csharp_generator_unittest.cc │ │ │ ├── csharp_helpers.cc │ │ │ ├── csharp_helpers.h │ │ │ ├── csharp_map_field.cc │ │ │ ├── csharp_map_field.h │ │ │ ├── csharp_message.cc │ │ │ ├── csharp_message.h │ │ │ ├── csharp_message_field.cc │ │ │ ├── csharp_message_field.h │ │ │ ├── csharp_names.h │ │ │ ├── csharp_options.h │ │ │ ├── csharp_primitive_field.cc │ │ │ ├── csharp_primitive_field.h │ │ │ ├── csharp_reflection_class.cc │ │ │ ├── csharp_reflection_class.h │ │ │ ├── csharp_repeated_enum_field.cc │ │ │ ├── csharp_repeated_enum_field.h │ │ │ ├── csharp_repeated_message_field.cc │ │ │ ├── csharp_repeated_message_field.h │ │ │ ├── csharp_repeated_primitive_field.cc │ │ │ ├── csharp_repeated_primitive_field.h │ │ │ ├── csharp_source_generator_base.cc │ │ │ ├── csharp_source_generator_base.h │ │ │ ├── csharp_wrapper_field.cc │ │ │ └── csharp_wrapper_field.h │ │ ├── importer.cc │ │ ├── importer.h │ │ ├── importer_unittest.cc │ │ ├── java │ │ │ ├── java_context.cc │ │ │ ├── java_context.h │ │ │ ├── java_doc_comment.cc │ │ │ ├── java_doc_comment.h │ │ │ ├── java_doc_comment_unittest.cc │ │ │ ├── java_enum.cc │ │ │ ├── java_enum.h │ │ │ ├── java_enum_field.cc │ │ │ ├── java_enum_field.h │ │ │ ├── java_enum_field_lite.cc │ │ │ ├── java_enum_field_lite.h │ │ │ ├── java_enum_lite.cc │ │ │ ├── java_enum_lite.h │ │ │ ├── java_extension.cc │ │ │ ├── java_extension.h │ │ │ ├── java_extension_lite.cc │ │ │ ├── java_extension_lite.h │ │ │ ├── java_field.cc │ │ │ ├── java_field.h │ │ │ ├── java_file.cc │ │ │ ├── java_file.h │ │ │ ├── java_generator.cc │ │ │ ├── java_generator.h │ │ │ ├── java_generator_factory.cc │ │ │ ├── java_generator_factory.h │ │ │ ├── java_helpers.cc │ │ │ ├── java_helpers.h │ │ │ ├── java_lazy_message_field.cc │ │ │ ├── java_lazy_message_field.h │ │ │ ├── java_lazy_message_field_lite.cc │ │ │ ├── java_lazy_message_field_lite.h │ │ │ ├── java_map_field.cc │ │ │ ├── java_map_field.h │ │ │ ├── java_map_field_lite.cc │ │ │ ├── java_map_field_lite.h │ │ │ ├── java_message.cc │ │ │ ├── java_message.h │ │ │ ├── java_message_builder.cc │ │ │ ├── java_message_builder.h │ │ │ ├── java_message_builder_lite.cc │ │ │ ├── java_message_builder_lite.h │ │ │ ├── java_message_field.cc │ │ │ ├── java_message_field.h │ │ │ ├── java_message_field_lite.cc │ │ │ ├── java_message_field_lite.h │ │ │ ├── java_message_lite.cc │ │ │ ├── java_message_lite.h │ │ │ ├── java_name_resolver.cc │ │ │ ├── java_name_resolver.h │ │ │ ├── java_names.h │ │ │ ├── java_options.h │ │ │ ├── java_plugin_unittest.cc │ │ │ ├── java_primitive_field.cc │ │ │ ├── java_primitive_field.h │ │ │ ├── java_primitive_field_lite.cc │ │ │ ├── java_primitive_field_lite.h │ │ │ ├── java_service.cc │ │ │ ├── java_service.h │ │ │ ├── java_shared_code_generator.cc │ │ │ ├── java_shared_code_generator.h │ │ │ ├── java_string_field.cc │ │ │ ├── java_string_field.h │ │ │ ├── java_string_field_lite.cc │ │ │ └── java_string_field_lite.h │ │ ├── javanano │ │ │ ├── javanano_enum.cc │ │ │ ├── javanano_enum.h │ │ │ ├── javanano_enum_field.cc │ │ │ ├── javanano_enum_field.h │ │ │ ├── javanano_extension.cc │ │ │ ├── javanano_extension.h │ │ │ ├── javanano_field.cc │ │ │ ├── javanano_field.h │ │ │ ├── javanano_file.cc │ │ │ ├── javanano_file.h │ │ │ ├── javanano_generator.cc │ │ │ ├── javanano_generator.h │ │ │ ├── javanano_helpers.cc │ │ │ ├── javanano_helpers.h │ │ │ ├── javanano_map_field.cc │ │ │ ├── javanano_map_field.h │ │ │ ├── javanano_message.cc │ │ │ ├── javanano_message.h │ │ │ ├── javanano_message_field.cc │ │ │ ├── javanano_message_field.h │ │ │ ├── javanano_params.h │ │ │ ├── javanano_primitive_field.cc │ │ │ └── javanano_primitive_field.h │ │ ├── js │ │ │ ├── embed.cc │ │ │ ├── js_generator.cc │ │ │ ├── js_generator.h │ │ │ ├── well_known_types │ │ │ │ ├── any.js │ │ │ │ ├── struct.js │ │ │ │ └── timestamp.js │ │ │ ├── well_known_types_embed.cc │ │ │ └── well_known_types_embed.h │ │ ├── main.cc │ │ ├── mock_code_generator.cc │ │ ├── mock_code_generator.h │ │ ├── objectivec │ │ │ ├── objectivec_enum.cc │ │ │ ├── objectivec_enum.h │ │ │ ├── objectivec_enum_field.cc │ │ │ ├── objectivec_enum_field.h │ │ │ ├── objectivec_extension.cc │ │ │ ├── objectivec_extension.h │ │ │ ├── objectivec_field.cc │ │ │ ├── objectivec_field.h │ │ │ ├── objectivec_file.cc │ │ │ ├── objectivec_file.h │ │ │ ├── objectivec_generator.cc │ │ │ ├── objectivec_generator.h │ │ │ ├── objectivec_helpers.cc │ │ │ ├── objectivec_helpers.h │ │ │ ├── objectivec_helpers_unittest.cc │ │ │ ├── objectivec_map_field.cc │ │ │ ├── objectivec_map_field.h │ │ │ ├── objectivec_message.cc │ │ │ ├── objectivec_message.h │ │ │ ├── objectivec_message_field.cc │ │ │ ├── objectivec_message_field.h │ │ │ ├── objectivec_oneof.cc │ │ │ ├── objectivec_oneof.h │ │ │ ├── objectivec_primitive_field.cc │ │ │ └── objectivec_primitive_field.h │ │ ├── package_info.h │ │ ├── parser.cc │ │ ├── parser.h │ │ ├── parser_unittest.cc │ │ ├── php │ │ │ ├── php_generator.cc │ │ │ └── php_generator.h │ │ ├── plugin.cc │ │ ├── plugin.h │ │ ├── plugin.pb.cc │ │ ├── plugin.pb.h │ │ ├── plugin.proto │ │ ├── python │ │ │ ├── python_generator.cc │ │ │ ├── python_generator.h │ │ │ └── python_plugin_unittest.cc │ │ ├── ruby │ │ │ ├── ruby_generated_code.proto │ │ │ ├── ruby_generated_code_pb.rb │ │ │ ├── ruby_generator.cc │ │ │ ├── ruby_generator.h │ │ │ └── ruby_generator_unittest.cc │ │ ├── subprocess.cc │ │ ├── subprocess.h │ │ ├── test_plugin.cc │ │ ├── zip_output_unittest.sh │ │ ├── zip_writer.cc │ │ └── zip_writer.h │ │ ├── descriptor.cc │ │ ├── descriptor.h │ │ ├── descriptor.pb.cc │ │ ├── descriptor.pb.h │ │ ├── descriptor.proto │ │ ├── descriptor_database.cc │ │ ├── descriptor_database.h │ │ ├── descriptor_database_unittest.cc │ │ ├── descriptor_unittest.cc │ │ ├── drop_unknown_fields_test.cc │ │ ├── duration.pb.cc │ │ ├── duration.pb.h │ │ ├── duration.proto │ │ ├── dynamic_message.cc │ │ ├── dynamic_message.h │ │ ├── dynamic_message_unittest.cc │ │ ├── empty.pb.cc │ │ ├── empty.pb.h │ │ ├── empty.proto │ │ ├── extension_set.cc │ │ ├── extension_set.h │ │ ├── extension_set_heavy.cc │ │ ├── extension_set_unittest.cc │ │ ├── field_mask.pb.cc │ │ ├── field_mask.pb.h │ │ ├── field_mask.proto │ │ ├── generated_enum_reflection.h │ │ ├── generated_enum_util.h │ │ ├── generated_message_reflection.cc │ │ ├── generated_message_reflection.h │ │ ├── generated_message_reflection_unittest.cc │ │ ├── generated_message_table_driven.cc │ │ ├── generated_message_table_driven.h │ │ ├── generated_message_table_driven_lite.cc │ │ ├── generated_message_table_driven_lite.h │ │ ├── generated_message_util.cc │ │ ├── generated_message_util.h │ │ ├── has_bits.h │ │ ├── io │ │ ├── coded_stream.cc │ │ ├── coded_stream.h │ │ ├── coded_stream_inl.h │ │ ├── coded_stream_unittest.cc │ │ ├── gzip_stream.cc │ │ ├── gzip_stream.h │ │ ├── gzip_stream_unittest.sh │ │ ├── package_info.h │ │ ├── printer.cc │ │ ├── printer.h │ │ ├── printer_unittest.cc │ │ ├── strtod.cc │ │ ├── strtod.h │ │ ├── tokenizer.cc │ │ ├── tokenizer.h │ │ ├── tokenizer_unittest.cc │ │ ├── zero_copy_stream.cc │ │ ├── zero_copy_stream.h │ │ ├── zero_copy_stream_impl.cc │ │ ├── zero_copy_stream_impl.h │ │ ├── zero_copy_stream_impl_lite.cc │ │ ├── zero_copy_stream_impl_lite.h │ │ └── zero_copy_stream_unittest.cc │ │ ├── lite_arena_unittest.cc │ │ ├── lite_unittest.cc │ │ ├── map.h │ │ ├── map_entry.h │ │ ├── map_entry_lite.h │ │ ├── map_field.cc │ │ ├── map_field.h │ │ ├── map_field_inl.h │ │ ├── map_field_lite.h │ │ ├── map_field_test.cc │ │ ├── map_lite_test_util.cc │ │ ├── map_lite_test_util.h │ │ ├── map_lite_unittest.proto │ │ ├── map_proto2_unittest.proto │ │ ├── map_test.cc │ │ ├── map_test_util.cc │ │ ├── map_test_util.h │ │ ├── map_test_util_impl.h │ │ ├── map_type_handler.h │ │ ├── map_unittest.proto │ │ ├── map_unittest_proto3.proto │ │ ├── message.cc │ │ ├── message.h │ │ ├── message_lite.cc │ │ ├── message_lite.h │ │ ├── message_unittest.cc │ │ ├── metadata.h │ │ ├── metadata_lite.h │ │ ├── no_field_presence_test.cc │ │ ├── package_info.h │ │ ├── preserve_unknown_enum_test.cc │ │ ├── proto3_arena_lite_unittest.cc │ │ ├── proto3_arena_unittest.cc │ │ ├── proto3_lite_unittest.cc │ │ ├── reflection.h │ │ ├── reflection_internal.h │ │ ├── reflection_ops.cc │ │ ├── reflection_ops.h │ │ ├── reflection_ops_unittest.cc │ │ ├── repeated_field.cc │ │ ├── repeated_field.h │ │ ├── repeated_field_reflection_unittest.cc │ │ ├── repeated_field_unittest.cc │ │ ├── service.cc │ │ ├── service.h │ │ ├── source_context.pb.cc │ │ ├── source_context.pb.h │ │ ├── source_context.proto │ │ ├── struct.pb.cc │ │ ├── struct.pb.h │ │ ├── struct.proto │ │ ├── stubs │ │ ├── atomic_sequence_num.h │ │ ├── atomicops.h │ │ ├── atomicops_internals_arm64_gcc.h │ │ ├── atomicops_internals_arm_gcc.h │ │ ├── atomicops_internals_arm_qnx.h │ │ ├── atomicops_internals_atomicword_compat.h │ │ ├── atomicops_internals_generic_c11_atomic.h │ │ ├── atomicops_internals_generic_gcc.h │ │ ├── atomicops_internals_mips_gcc.h │ │ ├── atomicops_internals_power.h │ │ ├── atomicops_internals_ppc_gcc.h │ │ ├── atomicops_internals_solaris.h │ │ ├── atomicops_internals_tsan.h │ │ ├── atomicops_internals_x86_gcc.cc │ │ ├── atomicops_internals_x86_gcc.h │ │ ├── atomicops_internals_x86_msvc.cc │ │ ├── atomicops_internals_x86_msvc.h │ │ ├── bytestream.cc │ │ ├── bytestream.h │ │ ├── bytestream_unittest.cc │ │ ├── callback.h │ │ ├── casts.h │ │ ├── common.cc │ │ ├── common.h │ │ ├── common_unittest.cc │ │ ├── fastmem.h │ │ ├── hash.h │ │ ├── int128.cc │ │ ├── int128.h │ │ ├── int128_unittest.cc │ │ ├── io_win32.cc │ │ ├── io_win32.h │ │ ├── io_win32_unittest.cc │ │ ├── logging.h │ │ ├── macros.h │ │ ├── map_util.h │ │ ├── mathlimits.cc │ │ ├── mathlimits.h │ │ ├── mathutil.h │ │ ├── mutex.h │ │ ├── once.cc │ │ ├── once.h │ │ ├── once_unittest.cc │ │ ├── platform_macros.h │ │ ├── port.h │ │ ├── scoped_ptr.h │ │ ├── shared_ptr.h │ │ ├── singleton.h │ │ ├── status.cc │ │ ├── status.h │ │ ├── status_macros.h │ │ ├── status_test.cc │ │ ├── statusor.cc │ │ ├── statusor.h │ │ ├── statusor_test.cc │ │ ├── stl_util.h │ │ ├── stringpiece.cc │ │ ├── stringpiece.h │ │ ├── stringpiece_unittest.cc │ │ ├── stringprintf.cc │ │ ├── stringprintf.h │ │ ├── stringprintf_unittest.cc │ │ ├── structurally_valid.cc │ │ ├── structurally_valid_unittest.cc │ │ ├── strutil.cc │ │ ├── strutil.h │ │ ├── strutil_unittest.cc │ │ ├── substitute.cc │ │ ├── substitute.h │ │ ├── template_util.h │ │ ├── template_util_unittest.cc │ │ ├── time.cc │ │ ├── time.h │ │ ├── time_test.cc │ │ ├── type_traits.h │ │ └── type_traits_unittest.cc │ │ ├── test_messages_proto2.proto │ │ ├── test_messages_proto3.proto │ │ ├── test_util.cc │ │ ├── test_util.h │ │ ├── test_util_lite.cc │ │ ├── test_util_lite.h │ │ ├── testdata │ │ ├── bad_utf8_string │ │ ├── golden_message │ │ ├── golden_message_maps │ │ ├── golden_message_oneof_implemented │ │ ├── golden_message_proto3 │ │ ├── golden_packed_fields_message │ │ ├── map_test_data.txt │ │ ├── text_format_unittest_data.txt │ │ ├── text_format_unittest_data_oneof_implemented.txt │ │ ├── text_format_unittest_data_pointy.txt │ │ ├── text_format_unittest_data_pointy_oneof.txt │ │ ├── text_format_unittest_extensions_data.txt │ │ └── text_format_unittest_extensions_data_pointy.txt │ │ ├── testing │ │ ├── file.cc │ │ ├── file.h │ │ ├── googletest.cc │ │ ├── googletest.h │ │ ├── zcgunzip.cc │ │ └── zcgzip.cc │ │ ├── text_format.cc │ │ ├── text_format.h │ │ ├── text_format_unittest.cc │ │ ├── timestamp.pb.cc │ │ ├── timestamp.pb.h │ │ ├── timestamp.proto │ │ ├── type.pb.cc │ │ ├── type.pb.h │ │ ├── type.proto │ │ ├── unittest.proto │ │ ├── unittest_arena.proto │ │ ├── unittest_custom_options.proto │ │ ├── unittest_drop_unknown_fields.proto │ │ ├── unittest_embed_optimize_for.proto │ │ ├── unittest_empty.proto │ │ ├── unittest_enormous_descriptor.proto │ │ ├── unittest_import.proto │ │ ├── unittest_import_lite.proto │ │ ├── unittest_import_proto3.proto │ │ ├── unittest_import_public.proto │ │ ├── unittest_import_public_lite.proto │ │ ├── unittest_import_public_proto3.proto │ │ ├── unittest_lazy_dependencies.proto │ │ ├── unittest_lazy_dependencies_custom_option.proto │ │ ├── unittest_lazy_dependencies_enum.proto │ │ ├── unittest_lite.proto │ │ ├── unittest_lite_imports_nonlite.proto │ │ ├── unittest_mset.proto │ │ ├── unittest_mset_wire_format.proto │ │ ├── unittest_no_arena.proto │ │ ├── unittest_no_arena_import.proto │ │ ├── unittest_no_arena_lite.proto │ │ ├── unittest_no_field_presence.proto │ │ ├── unittest_no_generic_services.proto │ │ ├── unittest_optimize_for.proto │ │ ├── unittest_preserve_unknown_enum.proto │ │ ├── unittest_preserve_unknown_enum2.proto │ │ ├── unittest_proto3.proto │ │ ├── unittest_proto3_arena.proto │ │ ├── unittest_proto3_arena_lite.proto │ │ ├── unittest_proto3_lite.proto │ │ ├── unittest_well_known_types.proto │ │ ├── unknown_field_set.cc │ │ ├── unknown_field_set.h │ │ ├── unknown_field_set_unittest.cc │ │ ├── util │ │ ├── delimited_message_util.cc │ │ ├── delimited_message_util.h │ │ ├── delimited_message_util_test.cc │ │ ├── field_comparator.cc │ │ ├── field_comparator.h │ │ ├── field_comparator_test.cc │ │ ├── field_mask_util.cc │ │ ├── field_mask_util.h │ │ ├── field_mask_util_test.cc │ │ ├── internal │ │ │ ├── constants.h │ │ │ ├── datapiece.cc │ │ │ ├── datapiece.h │ │ │ ├── default_value_objectwriter.cc │ │ │ ├── default_value_objectwriter.h │ │ │ ├── default_value_objectwriter_test.cc │ │ │ ├── error_listener.cc │ │ │ ├── error_listener.h │ │ │ ├── expecting_objectwriter.h │ │ │ ├── field_mask_utility.cc │ │ │ ├── field_mask_utility.h │ │ │ ├── json_escaping.cc │ │ │ ├── json_escaping.h │ │ │ ├── json_objectwriter.cc │ │ │ ├── json_objectwriter.h │ │ │ ├── json_objectwriter_test.cc │ │ │ ├── json_stream_parser.cc │ │ │ ├── json_stream_parser.h │ │ │ ├── json_stream_parser_test.cc │ │ │ ├── location_tracker.h │ │ │ ├── mock_error_listener.h │ │ │ ├── object_location_tracker.h │ │ │ ├── object_source.h │ │ │ ├── object_writer.cc │ │ │ ├── object_writer.h │ │ │ ├── proto_writer.cc │ │ │ ├── proto_writer.h │ │ │ ├── protostream_objectsource.cc │ │ │ ├── protostream_objectsource.h │ │ │ ├── protostream_objectsource_test.cc │ │ │ ├── protostream_objectwriter.cc │ │ │ ├── protostream_objectwriter.h │ │ │ ├── protostream_objectwriter_test.cc │ │ │ ├── structured_objectwriter.h │ │ │ ├── testdata │ │ │ │ ├── anys.proto │ │ │ │ ├── books.proto │ │ │ │ ├── default_value.proto │ │ │ │ ├── default_value_test.proto │ │ │ │ ├── field_mask.proto │ │ │ │ ├── maps.proto │ │ │ │ ├── oneofs.proto │ │ │ │ ├── proto3.proto │ │ │ │ ├── struct.proto │ │ │ │ ├── timestamp_duration.proto │ │ │ │ └── wrappers.proto │ │ │ ├── type_info.cc │ │ │ ├── type_info.h │ │ │ ├── type_info_test_helper.cc │ │ │ ├── type_info_test_helper.h │ │ │ ├── utility.cc │ │ │ └── utility.h │ │ ├── json_format_proto3.proto │ │ ├── json_util.cc │ │ ├── json_util.h │ │ ├── json_util_test.cc │ │ ├── message_differencer.cc │ │ ├── message_differencer.h │ │ ├── message_differencer_unittest.cc │ │ ├── message_differencer_unittest.proto │ │ ├── package_info.h │ │ ├── time_util.cc │ │ ├── time_util.h │ │ ├── time_util_test.cc │ │ ├── type_resolver.h │ │ ├── type_resolver_util.cc │ │ ├── type_resolver_util.h │ │ └── type_resolver_util_test.cc │ │ ├── well_known_types_unittest.cc │ │ ├── wire_format.cc │ │ ├── wire_format.h │ │ ├── wire_format_lite.cc │ │ ├── wire_format_lite.h │ │ ├── wire_format_lite_inl.h │ │ ├── wire_format_unittest.cc │ │ ├── wrappers.pb.cc │ │ ├── wrappers.pb.h │ │ └── wrappers.proto ├── libprotobuf-lite.map ├── libprotobuf.map ├── libprotoc.map ├── nsync.h ├── nsync_atomic.h ├── nsync_counter.h ├── nsync_cpp.h ├── nsync_cv.h ├── nsync_debug.h ├── nsync_mu.h ├── nsync_mu_wait.h ├── nsync_note.h ├── nsync_once.h ├── nsync_time.h ├── nsync_time_internal.h ├── nsync_waiter.h ├── signature_of_eigen3_matrix_library ├── solaris │ └── libstdc++.la ├── tensorflow │ ├── cc │ │ └── ops │ │ │ ├── array_ops.cc │ │ │ ├── array_ops.h │ │ │ ├── array_ops_internal.cc │ │ │ ├── array_ops_internal.h │ │ │ ├── audio_ops.cc │ │ │ ├── audio_ops.h │ │ │ ├── audio_ops_internal.cc │ │ │ ├── audio_ops_internal.h │ │ │ ├── bitwise_ops.cc │ │ │ ├── bitwise_ops.h │ │ │ ├── bitwise_ops_internal.cc │ │ │ ├── bitwise_ops_internal.h │ │ │ ├── candidate_sampling_ops.cc │ │ │ ├── candidate_sampling_ops.h │ │ │ ├── candidate_sampling_ops_internal.cc │ │ │ ├── candidate_sampling_ops_internal.h │ │ │ ├── checkpoint_ops.cc │ │ │ ├── checkpoint_ops.h │ │ │ ├── checkpoint_ops_internal.cc │ │ │ ├── checkpoint_ops_internal.h │ │ │ ├── control_flow_ops.cc │ │ │ ├── control_flow_ops.h │ │ │ ├── control_flow_ops_internal.cc │ │ │ ├── control_flow_ops_internal.h │ │ │ ├── ctc_ops.cc │ │ │ ├── ctc_ops.h │ │ │ ├── ctc_ops_internal.cc │ │ │ ├── ctc_ops_internal.h │ │ │ ├── data_flow_ops.cc │ │ │ ├── data_flow_ops.h │ │ │ ├── data_flow_ops_internal.cc │ │ │ ├── data_flow_ops_internal.h │ │ │ ├── dataset_ops.cc │ │ │ ├── dataset_ops.h │ │ │ ├── dataset_ops_internal.cc │ │ │ ├── dataset_ops_internal.h │ │ │ ├── functional_ops.cc │ │ │ ├── functional_ops.h │ │ │ ├── functional_ops_internal.cc │ │ │ ├── functional_ops_internal.h │ │ │ ├── image_ops.cc │ │ │ ├── image_ops.h │ │ │ ├── image_ops_internal.cc │ │ │ ├── image_ops_internal.h │ │ │ ├── io_ops.cc │ │ │ ├── io_ops.h │ │ │ ├── io_ops_internal.cc │ │ │ ├── io_ops_internal.h │ │ │ ├── linalg_ops.cc │ │ │ ├── linalg_ops.h │ │ │ ├── linalg_ops_internal.cc │ │ │ ├── linalg_ops_internal.h │ │ │ ├── logging_ops.cc │ │ │ ├── logging_ops.h │ │ │ ├── logging_ops_internal.cc │ │ │ ├── logging_ops_internal.h │ │ │ ├── lookup_ops.cc │ │ │ ├── lookup_ops.h │ │ │ ├── lookup_ops_internal.cc │ │ │ ├── lookup_ops_internal.h │ │ │ ├── math_ops.cc │ │ │ ├── math_ops.h │ │ │ ├── math_ops_internal.cc │ │ │ ├── math_ops_internal.h │ │ │ ├── nn_ops.cc │ │ │ ├── nn_ops.h │ │ │ ├── nn_ops_internal.cc │ │ │ ├── nn_ops_internal.h │ │ │ ├── no_op.cc │ │ │ ├── no_op.h │ │ │ ├── no_op_internal.cc │ │ │ ├── no_op_internal.h │ │ │ ├── parsing_ops.cc │ │ │ ├── parsing_ops.h │ │ │ ├── parsing_ops_internal.cc │ │ │ ├── parsing_ops_internal.h │ │ │ ├── random_ops.cc │ │ │ ├── random_ops.h │ │ │ ├── random_ops_internal.cc │ │ │ ├── random_ops_internal.h │ │ │ ├── remote_fused_graph_ops.cc │ │ │ ├── remote_fused_graph_ops.h │ │ │ ├── remote_fused_graph_ops_internal.cc │ │ │ ├── remote_fused_graph_ops_internal.h │ │ │ ├── resource_variable_ops.cc │ │ │ ├── resource_variable_ops.h │ │ │ ├── resource_variable_ops_internal.cc │ │ │ ├── resource_variable_ops_internal.h │ │ │ ├── script_ops.cc │ │ │ ├── script_ops.h │ │ │ ├── script_ops_internal.cc │ │ │ ├── script_ops_internal.h │ │ │ ├── sdca_ops.cc │ │ │ ├── sdca_ops.h │ │ │ ├── sdca_ops_internal.cc │ │ │ ├── sdca_ops_internal.h │ │ │ ├── sendrecv_ops.cc │ │ │ ├── sendrecv_ops.h │ │ │ ├── sendrecv_ops_internal.cc │ │ │ ├── sendrecv_ops_internal.h │ │ │ ├── set_ops.cc │ │ │ ├── set_ops.h │ │ │ ├── set_ops_internal.cc │ │ │ ├── set_ops_internal.h │ │ │ ├── sparse_ops.cc │ │ │ ├── sparse_ops.h │ │ │ ├── sparse_ops_internal.cc │ │ │ ├── sparse_ops_internal.h │ │ │ ├── spectral_ops.cc │ │ │ ├── spectral_ops.h │ │ │ ├── spectral_ops_internal.cc │ │ │ ├── spectral_ops_internal.h │ │ │ ├── state_ops.cc │ │ │ ├── state_ops.h │ │ │ ├── state_ops_internal.cc │ │ │ ├── state_ops_internal.h │ │ │ ├── stateless_random_ops.cc │ │ │ ├── stateless_random_ops.h │ │ │ ├── stateless_random_ops_internal.cc │ │ │ ├── stateless_random_ops_internal.h │ │ │ ├── string_ops.cc │ │ │ ├── string_ops.h │ │ │ ├── string_ops_internal.cc │ │ │ ├── string_ops_internal.h │ │ │ ├── summary_ops.cc │ │ │ ├── summary_ops.h │ │ │ ├── summary_ops_internal.cc │ │ │ ├── summary_ops_internal.h │ │ │ ├── training_ops.cc │ │ │ ├── training_ops.h │ │ │ ├── training_ops_internal.cc │ │ │ ├── training_ops_internal.h │ │ │ ├── user_ops.cc │ │ │ ├── user_ops.h │ │ │ ├── user_ops_internal.cc │ │ │ └── user_ops_internal.h │ ├── contrib │ │ ├── boosted_trees │ │ │ └── proto │ │ │ │ ├── learner.pb.cc │ │ │ │ ├── learner.pb.h │ │ │ │ ├── quantiles.pb.cc │ │ │ │ ├── quantiles.pb.h │ │ │ │ ├── split_info.pb.cc │ │ │ │ ├── split_info.pb.h │ │ │ │ ├── tree_config.pb.cc │ │ │ │ └── tree_config.pb.h │ │ ├── session_bundle │ │ │ ├── manifest.pb.cc │ │ │ └── manifest.pb.h │ │ ├── tensorboard │ │ │ ├── graph_explorer │ │ │ │ └── proto │ │ │ │ │ ├── graph_explorer.pb.cc │ │ │ │ │ └── graph_explorer.pb.h │ │ │ └── plugins │ │ │ │ ├── projector │ │ │ │ ├── projector_config.pb.cc │ │ │ │ └── projector_config.pb.h │ │ │ │ └── trace │ │ │ │ ├── trace_info.pb.cc │ │ │ │ └── trace_info.pb.h │ │ └── training │ │ │ └── python │ │ │ └── training │ │ │ ├── hparam.pb.cc │ │ │ └── hparam.pb.h │ ├── core │ │ ├── debug │ │ │ ├── debug_service.pb.cc │ │ │ ├── debug_service.pb.h │ │ │ ├── debugger_event_metadata.pb.cc │ │ │ └── debugger_event_metadata.pb.h │ │ ├── example │ │ │ ├── example.pb.cc │ │ │ ├── example.pb.h │ │ │ ├── example.pb_text-impl.h │ │ │ ├── example.pb_text.cc │ │ │ ├── example.pb_text.h │ │ │ ├── example_parser_configuration.pb.cc │ │ │ ├── example_parser_configuration.pb.h │ │ │ ├── feature.pb.cc │ │ │ ├── feature.pb.h │ │ │ ├── feature.pb_text-impl.h │ │ │ ├── feature.pb_text.cc │ │ │ └── feature.pb_text.h │ │ ├── framework │ │ │ ├── allocation_description.pb.cc │ │ │ ├── allocation_description.pb.h │ │ │ ├── allocation_description.pb_text-impl.h │ │ │ ├── allocation_description.pb_text.cc │ │ │ ├── allocation_description.pb_text.h │ │ │ ├── api_def.pb.cc │ │ │ ├── api_def.pb.h │ │ │ ├── attr_value.pb.cc │ │ │ ├── attr_value.pb.h │ │ │ ├── attr_value.pb_text-impl.h │ │ │ ├── attr_value.pb_text.cc │ │ │ ├── attr_value.pb_text.h │ │ │ ├── cost_graph.pb.cc │ │ │ ├── cost_graph.pb.h │ │ │ ├── cost_graph.pb_text-impl.h │ │ │ ├── cost_graph.pb_text.cc │ │ │ ├── cost_graph.pb_text.h │ │ │ ├── device_attributes.pb.cc │ │ │ ├── device_attributes.pb.h │ │ │ ├── device_attributes.pb_text-impl.h │ │ │ ├── device_attributes.pb_text.cc │ │ │ ├── device_attributes.pb_text.h │ │ │ ├── function.pb.cc │ │ │ ├── function.pb.h │ │ │ ├── function.pb_text-impl.h │ │ │ ├── function.pb_text.cc │ │ │ ├── function.pb_text.h │ │ │ ├── graph.pb.cc │ │ │ ├── graph.pb.h │ │ │ ├── graph.pb_text-impl.h │ │ │ ├── graph.pb_text.cc │ │ │ ├── graph.pb_text.h │ │ │ ├── graph_transfer_info.pb.cc │ │ │ ├── graph_transfer_info.pb.h │ │ │ ├── graph_transfer_info.pb_text-impl.h │ │ │ ├── graph_transfer_info.pb_text.cc │ │ │ ├── graph_transfer_info.pb_text.h │ │ │ ├── iterator.pb.cc │ │ │ ├── iterator.pb.h │ │ │ ├── kernel_def.pb.cc │ │ │ ├── kernel_def.pb.h │ │ │ ├── kernel_def.pb_text-impl.h │ │ │ ├── kernel_def.pb_text.cc │ │ │ ├── kernel_def.pb_text.h │ │ │ ├── log_memory.pb.cc │ │ │ ├── log_memory.pb.h │ │ │ ├── log_memory.pb_text-impl.h │ │ │ ├── log_memory.pb_text.cc │ │ │ ├── log_memory.pb_text.h │ │ │ ├── node_def.pb.cc │ │ │ ├── node_def.pb.h │ │ │ ├── node_def.pb_text-impl.h │ │ │ ├── node_def.pb_text.cc │ │ │ ├── node_def.pb_text.h │ │ │ ├── op_def.pb.cc │ │ │ ├── op_def.pb.h │ │ │ ├── op_def.pb_text-impl.h │ │ │ ├── op_def.pb_text.cc │ │ │ ├── op_def.pb_text.h │ │ │ ├── op_gen_overrides.pb.cc │ │ │ ├── op_gen_overrides.pb.h │ │ │ ├── reader_base.pb.cc │ │ │ ├── reader_base.pb.h │ │ │ ├── remote_fused_graph_execute_info.pb.cc │ │ │ ├── remote_fused_graph_execute_info.pb.h │ │ │ ├── remote_fused_graph_execute_info.pb_text-impl.h │ │ │ ├── remote_fused_graph_execute_info.pb_text.cc │ │ │ ├── remote_fused_graph_execute_info.pb_text.h │ │ │ ├── resource_handle.pb.cc │ │ │ ├── resource_handle.pb.h │ │ │ ├── resource_handle.pb_text-impl.h │ │ │ ├── resource_handle.pb_text.cc │ │ │ ├── resource_handle.pb_text.h │ │ │ ├── step_stats.pb.cc │ │ │ ├── step_stats.pb.h │ │ │ ├── step_stats.pb_text-impl.h │ │ │ ├── step_stats.pb_text.cc │ │ │ ├── step_stats.pb_text.h │ │ │ ├── summary.pb.cc │ │ │ ├── summary.pb.h │ │ │ ├── summary.pb_text-impl.h │ │ │ ├── summary.pb_text.cc │ │ │ ├── summary.pb_text.h │ │ │ ├── tensor.pb.cc │ │ │ ├── tensor.pb.h │ │ │ ├── tensor.pb_text-impl.h │ │ │ ├── tensor.pb_text.cc │ │ │ ├── tensor.pb_text.h │ │ │ ├── tensor_description.pb.cc │ │ │ ├── tensor_description.pb.h │ │ │ ├── tensor_description.pb_text-impl.h │ │ │ ├── tensor_description.pb_text.cc │ │ │ ├── tensor_description.pb_text.h │ │ │ ├── tensor_shape.pb.cc │ │ │ ├── tensor_shape.pb.h │ │ │ ├── tensor_shape.pb_text-impl.h │ │ │ ├── tensor_shape.pb_text.cc │ │ │ ├── tensor_shape.pb_text.h │ │ │ ├── tensor_slice.pb.cc │ │ │ ├── tensor_slice.pb.h │ │ │ ├── tensor_slice.pb_text-impl.h │ │ │ ├── tensor_slice.pb_text.cc │ │ │ ├── tensor_slice.pb_text.h │ │ │ ├── types.pb.cc │ │ │ ├── types.pb.h │ │ │ ├── types.pb_text-impl.h │ │ │ ├── types.pb_text.cc │ │ │ ├── types.pb_text.h │ │ │ ├── variable.pb.cc │ │ │ ├── variable.pb.h │ │ │ ├── versions.pb.cc │ │ │ ├── versions.pb.h │ │ │ ├── versions.pb_text-impl.h │ │ │ ├── versions.pb_text.cc │ │ │ └── versions.pb_text.h │ │ ├── grappler │ │ │ └── costs │ │ │ │ ├── op_performance_data.pb.cc │ │ │ │ └── op_performance_data.pb.h │ │ ├── lib │ │ │ └── core │ │ │ │ ├── error_codes.pb.cc │ │ │ │ ├── error_codes.pb.h │ │ │ │ ├── error_codes.pb_text-impl.h │ │ │ │ ├── error_codes.pb_text.cc │ │ │ │ └── error_codes.pb_text.h │ │ ├── profiler │ │ │ ├── profile.pb.cc │ │ │ ├── profile.pb.h │ │ │ ├── tfprof_log.pb.cc │ │ │ ├── tfprof_log.pb.h │ │ │ ├── tfprof_options.pb.cc │ │ │ ├── tfprof_options.pb.h │ │ │ ├── tfprof_output.pb.cc │ │ │ └── tfprof_output.pb.h │ │ ├── protobuf │ │ │ ├── cluster.pb.cc │ │ │ ├── cluster.pb.h │ │ │ ├── cluster.pb_text-impl.h │ │ │ ├── cluster.pb_text.cc │ │ │ ├── cluster.pb_text.h │ │ │ ├── config.pb.cc │ │ │ ├── config.pb.h │ │ │ ├── config.pb_text-impl.h │ │ │ ├── config.pb_text.cc │ │ │ ├── config.pb_text.h │ │ │ ├── control_flow.pb.cc │ │ │ ├── control_flow.pb.h │ │ │ ├── debug.pb.cc │ │ │ ├── debug.pb.h │ │ │ ├── debug.pb_text-impl.h │ │ │ ├── debug.pb_text.cc │ │ │ ├── debug.pb_text.h │ │ │ ├── device_properties.pb.cc │ │ │ ├── device_properties.pb.h │ │ │ ├── device_properties.pb_text-impl.h │ │ │ ├── device_properties.pb_text.cc │ │ │ ├── device_properties.pb_text.h │ │ │ ├── master.pb.cc │ │ │ ├── master.pb.h │ │ │ ├── master_service.pb.cc │ │ │ ├── master_service.pb.h │ │ │ ├── meta_graph.pb.cc │ │ │ ├── meta_graph.pb.h │ │ │ ├── named_tensor.pb.cc │ │ │ ├── named_tensor.pb.h │ │ │ ├── queue_runner.pb.cc │ │ │ ├── queue_runner.pb.h │ │ │ ├── rewriter_config.pb.cc │ │ │ ├── rewriter_config.pb.h │ │ │ ├── rewriter_config.pb_text-impl.h │ │ │ ├── rewriter_config.pb_text.cc │ │ │ ├── rewriter_config.pb_text.h │ │ │ ├── saved_model.pb.cc │ │ │ ├── saved_model.pb.h │ │ │ ├── saver.pb.cc │ │ │ ├── saver.pb.h │ │ │ ├── saver.pb_text-impl.h │ │ │ ├── saver.pb_text.cc │ │ │ ├── saver.pb_text.h │ │ │ ├── tensor_bundle.pb.cc │ │ │ ├── tensor_bundle.pb.h │ │ │ ├── tensor_bundle.pb_text-impl.h │ │ │ ├── tensor_bundle.pb_text.cc │ │ │ ├── tensor_bundle.pb_text.h │ │ │ ├── tensorflow_server.pb.cc │ │ │ ├── tensorflow_server.pb.h │ │ │ ├── worker.pb.cc │ │ │ ├── worker.pb.h │ │ │ ├── worker_service.pb.cc │ │ │ └── worker_service.pb.h │ │ └── util │ │ │ ├── event.pb.cc │ │ │ ├── event.pb.h │ │ │ ├── example_proto_fast_parsing_test.pb.cc │ │ │ ├── example_proto_fast_parsing_test.pb.h │ │ │ ├── memmapped_file_system.pb.cc │ │ │ ├── memmapped_file_system.pb.h │ │ │ ├── memmapped_file_system.pb_text-impl.h │ │ │ ├── memmapped_file_system.pb_text.cc │ │ │ ├── memmapped_file_system.pb_text.h │ │ │ ├── saved_tensor_slice.pb.cc │ │ │ ├── saved_tensor_slice.pb.h │ │ │ ├── saved_tensor_slice.pb_text-impl.h │ │ │ ├── saved_tensor_slice.pb_text.cc │ │ │ ├── saved_tensor_slice.pb_text.h │ │ │ ├── test_log.pb.cc │ │ │ └── test_log.pb.h │ └── python │ │ ├── framework │ │ ├── cpp_shape_inference.pb.cc │ │ └── cpp_shape_inference.pb.h │ │ ├── training │ │ ├── checkpoint_state.pb.cc │ │ └── checkpoint_state.pb.h │ │ └── util │ │ └── protobuf │ │ ├── compare_test.pb.cc │ │ └── compare_test.pb.h └── unsupported │ └── Eigen │ ├── AdolcForward │ ├── AlignedVector3 │ ├── ArpackSupport │ ├── AutoDiff │ ├── BVH │ ├── CXX11 │ ├── Tensor │ ├── TensorSymmetry │ ├── ThreadPool │ └── src │ │ ├── Tensor │ │ ├── Tensor.h │ │ ├── TensorArgMax.h │ │ ├── TensorArgMaxSycl.h │ │ ├── TensorAssign.h │ │ ├── TensorBase.h │ │ ├── TensorBroadcasting.h │ │ ├── TensorChipping.h │ │ ├── TensorConcatenation.h │ │ ├── TensorContraction.h │ │ ├── TensorContractionBlocking.h │ │ ├── TensorContractionCuda.h │ │ ├── TensorContractionMapper.h │ │ ├── TensorContractionSycl.h │ │ ├── TensorContractionThreadPool.h │ │ ├── TensorConversion.h │ │ ├── TensorConvolution.h │ │ ├── TensorConvolutionSycl.h │ │ ├── TensorCostModel.h │ │ ├── TensorCustomOp.h │ │ ├── TensorDevice.h │ │ ├── TensorDeviceCuda.h │ │ ├── TensorDeviceDefault.h │ │ ├── TensorDeviceSycl.h │ │ ├── TensorDeviceThreadPool.h │ │ ├── TensorDimensionList.h │ │ ├── TensorDimensions.h │ │ ├── TensorEvalTo.h │ │ ├── TensorEvaluator.h │ │ ├── TensorExecutor.h │ │ ├── TensorExpr.h │ │ ├── TensorFFT.h │ │ ├── TensorFixedSize.h │ │ ├── TensorForcedEval.h │ │ ├── TensorForwardDeclarations.h │ │ ├── TensorFunctors.h │ │ ├── TensorGenerator.h │ │ ├── TensorGlobalFunctions.h │ │ ├── TensorIO.h │ │ ├── TensorImagePatch.h │ │ ├── TensorIndexList.h │ │ ├── TensorInflation.h │ │ ├── TensorInitializer.h │ │ ├── TensorIntDiv.h │ │ ├── TensorLayoutSwap.h │ │ ├── TensorMacros.h │ │ ├── TensorMap.h │ │ ├── TensorMeta.h │ │ ├── TensorMorphing.h │ │ ├── TensorPadding.h │ │ ├── TensorPatch.h │ │ ├── TensorRandom.h │ │ ├── TensorReduction.h │ │ ├── TensorReductionCuda.h │ │ ├── TensorReductionSycl.h │ │ ├── TensorRef.h │ │ ├── TensorReverse.h │ │ ├── TensorScan.h │ │ ├── TensorShuffling.h │ │ ├── TensorStorage.h │ │ ├── TensorStriding.h │ │ ├── TensorSycl.h │ │ ├── TensorSyclConvertToDeviceExpression.h │ │ ├── TensorSyclExprConstructor.h │ │ ├── TensorSyclExtractAccessor.h │ │ ├── TensorSyclExtractFunctors.h │ │ ├── TensorSyclFunctors.h │ │ ├── TensorSyclLeafCount.h │ │ ├── TensorSyclPlaceHolderExpr.h │ │ ├── TensorSyclRun.h │ │ ├── TensorSyclTuple.h │ │ ├── TensorTrace.h │ │ ├── TensorTraits.h │ │ ├── TensorUInt128.h │ │ └── TensorVolumePatch.h │ │ ├── TensorSymmetry │ │ ├── DynamicSymmetry.h │ │ ├── StaticSymmetry.h │ │ ├── Symmetry.h │ │ └── util │ │ │ └── TemplateGroupTheory.h │ │ ├── ThreadPool │ │ ├── EventCount.h │ │ ├── NonBlockingThreadPool.h │ │ ├── RunQueue.h │ │ ├── SimpleThreadPool.h │ │ ├── ThreadCancel.h │ │ ├── ThreadEnvironment.h │ │ ├── ThreadLocal.h │ │ ├── ThreadPoolInterface.h │ │ └── ThreadYield.h │ │ └── util │ │ ├── CXX11Meta.h │ │ ├── CXX11Workarounds.h │ │ ├── EmulateArray.h │ │ ├── EmulateCXX11Meta.h │ │ └── MaxSizeVector.h │ ├── EulerAngles │ ├── FFT │ ├── IterativeSolvers │ ├── KroneckerProduct │ ├── LevenbergMarquardt │ ├── MPRealSupport │ ├── MatrixFunctions │ ├── MoreVectorization │ ├── NonLinearOptimization │ ├── NumericalDiff │ ├── OpenGLSupport │ ├── Polynomials │ ├── Skyline │ ├── SparseExtra │ ├── SpecialFunctions │ ├── Splines │ └── src │ ├── AutoDiff │ ├── AutoDiffJacobian.h │ ├── AutoDiffScalar.h │ └── AutoDiffVector.h │ ├── BVH │ ├── BVAlgorithms.h │ └── KdBVH.h │ ├── Eigenvalues │ └── ArpackSelfAdjointEigenSolver.h │ ├── EulerAngles │ ├── EulerAngles.h │ └── EulerSystem.h │ ├── FFT │ ├── ei_fftw_impl.h │ └── ei_kissfft_impl.h │ ├── IterativeSolvers │ ├── ConstrainedConjGrad.h │ ├── DGMRES.h │ ├── GMRES.h │ ├── IncompleteLU.h │ ├── IterationController.h │ ├── MINRES.h │ └── Scaling.h │ ├── KroneckerProduct │ └── KroneckerTensorProduct.h │ ├── LevenbergMarquardt │ ├── LMcovar.h │ ├── LMonestep.h │ ├── LMpar.h │ ├── LMqrsolv.h │ └── LevenbergMarquardt.h │ ├── MatrixFunctions │ ├── MatrixExponential.h │ ├── MatrixFunction.h │ ├── MatrixLogarithm.h │ ├── MatrixPower.h │ ├── MatrixSquareRoot.h │ └── StemFunction.h │ ├── MoreVectorization │ └── MathFunctions.h │ ├── NonLinearOptimization │ ├── HybridNonLinearSolver.h │ ├── LevenbergMarquardt.h │ ├── chkder.h │ ├── covar.h │ ├── dogleg.h │ ├── fdjac1.h │ ├── lmpar.h │ ├── qrsolv.h │ ├── r1mpyq.h │ ├── r1updt.h │ └── rwupdt.h │ ├── NumericalDiff │ └── NumericalDiff.h │ ├── Polynomials │ ├── Companion.h │ ├── PolynomialSolver.h │ └── PolynomialUtils.h │ ├── Skyline │ ├── SkylineInplaceLU.h │ ├── SkylineMatrix.h │ ├── SkylineMatrixBase.h │ ├── SkylineProduct.h │ ├── SkylineStorage.h │ └── SkylineUtil.h │ ├── SparseExtra │ ├── BlockOfDynamicSparseMatrix.h │ ├── BlockSparseMatrix.h │ ├── DynamicSparseMatrix.h │ ├── MarketIO.h │ ├── MatrixMarketIterator.h │ └── RandomSetter.h │ ├── SpecialFunctions │ ├── SpecialFunctionsArrayAPI.h │ ├── SpecialFunctionsFunctors.h │ ├── SpecialFunctionsHalf.h │ ├── SpecialFunctionsImpl.h │ ├── SpecialFunctionsPacketMath.h │ └── arch │ │ └── CUDA │ │ └── CudaSpecialFunctions.h │ └── Splines │ ├── Spline.h │ ├── SplineFitting.h │ └── SplineFwd.h └── lib ├── farmhash.lib ├── fft2d.lib ├── giflib.lib ├── gpr.lib ├── grpc++_unsecure.lib ├── grpc_unsecure.lib ├── highwayhash.lib ├── jsoncpp.lib ├── libjpeg.lib ├── libpng12_static.lib ├── libprotobuf.lib ├── lmdb.lib ├── nsync.lib ├── re2.lib ├── snappy.lib ├── sqlite.lib ├── tf_cc.lib ├── tf_cc_framework.lib ├── tf_cc_ops.lib ├── tf_cc_while_loop.lib ├── tf_core_cpu.lib ├── tf_core_direct_session.lib ├── tf_core_framework.lib ├── tf_core_kernels.lib ├── tf_core_lib.lib ├── tf_core_ops.lib ├── tf_protos_cc.lib └── zlibstatic.lib /.gitattributes: -------------------------------------------------------------------------------- 1 | include/** filter=lfs diff=lfs merge=lfs -text 2 | lib/** filter=lfs diff=lfs merge=lfs -text 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "tensorflow"] 2 | path = tensorflow 3 | url = http://github.com/tensorflow/tensorflow.git 4 | branch = r1.4 5 | -------------------------------------------------------------------------------- /example/load_model/model/freezed.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter1591/tensorflow-prebuilt/d8ab33c965648514830ca7c9ce543d52890d98c1/example/load_model/model/freezed.pb -------------------------------------------------------------------------------- /example/load_model/model/graph.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter1591/tensorflow-prebuilt/d8ab33c965648514830ca7c9ce543d52890d98c1/example/load_model/model/graph.pb -------------------------------------------------------------------------------- /example/load_model/model/model/graph.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter1591/tensorflow-prebuilt/d8ab33c965648514830ca7c9ce543d52890d98c1/example/load_model/model/model/graph.pb -------------------------------------------------------------------------------- /example/load_model_dll_link/model/freezed.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter1591/tensorflow-prebuilt/d8ab33c965648514830ca7c9ce543d52890d98c1/example/load_model_dll_link/model/freezed.pb -------------------------------------------------------------------------------- /example/load_model_dll_link/model/graph.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter1591/tensorflow-prebuilt/d8ab33c965648514830ca7c9ce543d52890d98c1/example/load_model_dll_link/model/graph.pb -------------------------------------------------------------------------------- /include/Eigen/Cholesky: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66259207922d6c73550f340dedd1232a2c7f4bd93ae0f9c2f1e918e62bd63e26 3 | size 1206 4 | -------------------------------------------------------------------------------- /include/Eigen/CholmodSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:26f0d1bd0677785394f1f4eb2cddf763423f703c0941b3e58373e955b0130327 3 | size 1900 4 | -------------------------------------------------------------------------------- /include/Eigen/Core: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f13a23b9035fb9a214e24195384d03e51ee3c8cb88bc2f97dd4d7ecbbbc094c 3 | size 18703 4 | -------------------------------------------------------------------------------- /include/Eigen/Dense: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5325c9d4d693e504ee012c5275ad4b10b135a701cbd87c14466d2ea21ea22ee5 3 | size 122 4 | -------------------------------------------------------------------------------- /include/Eigen/Eigen: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0473b5d7c0cd9311d4a90548162e8cf160904476871f7fb749e9624e9b3dfd1 3 | size 35 4 | -------------------------------------------------------------------------------- /include/Eigen/Eigenvalues: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:14ade6b0ae8988c163d06a5e25fa56e8dddd105d0075c8d0738bf33d67d3378c 3 | size 1822 4 | -------------------------------------------------------------------------------- /include/Eigen/Geometry: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a631a64b87e96c8af6b60d549bdce1c751b09cb54c90a6e4a2e5de7af6221778 3 | size 2049 4 | -------------------------------------------------------------------------------- /include/Eigen/Householder: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fae2c45c354729a373934f5104602458dbb38b3b6e61f58ef5b156b7babab749 3 | size 874 4 | -------------------------------------------------------------------------------- /include/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84ffa38ac1ef3be005bff500b78b529c1e164fc50637836ff8648fea127b74f7 3 | size 2083 4 | -------------------------------------------------------------------------------- /include/Eigen/Jacobi: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c48a6074e2e65b3648dd8671574a74cee253d8e2b94866f5410f124a55589232 3 | size 939 4 | -------------------------------------------------------------------------------- /include/Eigen/KLUSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bc4631eba44254d2d102287f01c02b0ca793291c976b509b7c3528157fed2f64 3 | size 1389 4 | -------------------------------------------------------------------------------- /include/Eigen/LU: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b803a890b084e936eca78faf1e361ba76697181d2eba5d6810f602273ef9595 3 | size 1433 4 | -------------------------------------------------------------------------------- /include/Eigen/MetisSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e46d51d3065962408a403480f2c9cad4e7d61fb509c1e4a695274751274969a2 3 | size 991 4 | -------------------------------------------------------------------------------- /include/Eigen/OrderingMethods: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a298753f1bc00c6591cf3d8faf2053ac9b0c8d362e71ba2136504ca8cbd8d9e 3 | size 2483 4 | -------------------------------------------------------------------------------- /include/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f423b95716b804f9521234dfbc58ad1a2fad9a16f84bcf16df0bb88aeecc8543 3 | size 1751 4 | -------------------------------------------------------------------------------- /include/Eigen/PardisoSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50ec5003df399fabf518620e220f71c717ff3a03a7218b8650a974dc3ad06b15 3 | size 1116 4 | -------------------------------------------------------------------------------- /include/Eigen/QR: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4935341e2f0d80136ad52eb34f95556190b663ddd638e64aa9ffcfe98ac65c03 3 | size 1317 4 | -------------------------------------------------------------------------------- /include/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ba5db58fc2e366a833d0a47e658dc78ec89044ea0bc575d400d77d7e2956683 3 | size 945 4 | -------------------------------------------------------------------------------- /include/Eigen/SPQRSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4fa2d73b998c0794682d63dffbfff795bea41a7d18665840b1c357e66ff1c89d 3 | size 1162 4 | -------------------------------------------------------------------------------- /include/Eigen/SVD: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:80aee8aa3268d6f4aa601d60acd560624e98ed47d0b440cc19f354ce868cdef6 3 | size 1629 4 | -------------------------------------------------------------------------------- /include/Eigen/Sparse: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb92e4b1c0b85d3e9292d064b1b1700bf1d488d4905c64aa23b9e40feda75478 3 | size 919 4 | -------------------------------------------------------------------------------- /include/Eigen/SparseCholesky: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7fefd6f6aa714052d1a67ef9f598d47bdfa2e21f237c820c4c0e37d013b49229 3 | size 1371 4 | -------------------------------------------------------------------------------- /include/Eigen/SparseCore: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2323c1e3179dfc6abf348161b78c1bf5ecd0caa8f452c70caca9a1cdfdd6a6ae 3 | size 2240 4 | -------------------------------------------------------------------------------- /include/Eigen/SparseLU: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf9296fbb3c7d68329013fdc7464e1d696d1aeae9c778d9e06d370d108fad9a2 3 | size 1713 4 | -------------------------------------------------------------------------------- /include/Eigen/SparseQR: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9756bad84167491b44d9990613ea2e889857eeb54ffca50d590410846f5c67d2 3 | size 1222 4 | -------------------------------------------------------------------------------- /include/Eigen/StdDeque: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1885167a447825ab7c35573422c3efa23dec62f5b630ac322ffe658e0ee5242 3 | size 797 4 | -------------------------------------------------------------------------------- /include/Eigen/StdList: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03540e297ae96ed03e828d9a433bb7f5a5e93aa83c6f50a6c271c78f9283d667 3 | size 726 4 | -------------------------------------------------------------------------------- /include/Eigen/StdVector: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e8b1060757a1140298ff3905df70edb59ad1083f505681df30dc9dc9963d8ab 3 | size 803 4 | -------------------------------------------------------------------------------- /include/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8aa601f3fa1e6bfc03b799666bf39ebc42d44917a5fb2aaa489beafd63901f72 3 | size 2243 4 | -------------------------------------------------------------------------------- /include/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:003d41fa08cde68b1c4698499fa9bf9c803cebb27ae748615851519f42dc56ac 3 | size 1382 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fee668a59415f5cbc50c259157851d3d35111117796eab4b174304f13a14c47a 3 | size 24320 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa2426e3578b1f5b709fcda80626079ee951899ee197dd889da70371f181e1f5 3 | size 18373 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1efc3720834ec96ba0df4a0622aa20c3a80ae48d90d60cfaad5e0bf9c1cfa04b 3 | size 3974 4 | -------------------------------------------------------------------------------- /include/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ac1c4d68f4cf15789558273b3eae78171bed9db8df4e93e1c1d50ac6e24517f 3 | size 25475 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/ArithmeticSequence.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e39a7dc35a64827048968b01804ae02f9495aa57d8b76a24e699513bc7bc55bb 3 | size 17244 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b63c648b52217f479d61542f270189adbeb39b9fc7c24a6f636928035dbd336d 3 | size 12218 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a4620a65a9e2bb0aac3c6ea48f67a07a48b13f9b42e3de367f4bc937620e6133 3 | size 8159 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37016f0f53e895d4946b68b7030d85d67913d4143a53529f4d5899fb4f8aedbe 3 | size 6775 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74a400998f745e1897a3f29de0c1f10e6ad2e97269f72945abb259e6617f3b62 3 | size 2738 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:33e35011d72254a751e5a234076c09afface80eb923f0514a84048792630f477 3 | size 38155 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f965654d06dc2888bcb098b50eff171b0f3697cda6a432c1da7f6cc13ded862 3 | size 12221 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bcad8b0d59a56e9f3d4f39ee6396e27cf4143d24fbd24c91fab7e03c7415c564 3 | size 13910 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:551858019e0ae5a66ef5638036f18124c18033b3cfe04ba7c4c934d15ebbc747 3 | size 18064 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4247ee3590c6b062134335eb9059afc2ae447d4a49e6f5ec7d36714c1b899894 3 | size 4301 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:76f6a19b852f03093065da7875ca4556bdd279a2b56f4b0f7427c2f7958ce9ca 3 | size 5725 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d44345e7ccf669ba2b343f09ce32c08cd8ed04f2c40dc9a0de88daee5f83041 3 | size 6970 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:849e6b10f280da94c1657017be89225261bd33016ca8c7985dea9ae9f9275d3d 3 | size 63780 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:30bc5387d90ca841e6ec85686d2125318a19d4fdaa05a87fae6ffab0848f749a 3 | size 4745 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:725dbeb263e5cbbb3c26b7902aba5157370b759b414f32bef9266237c6a1aba2 3 | size 7628 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fa7da7c64aee5cb57885dcefe1ee3253cf23415b16513c7d7f0b4bcbd1e1e11 3 | size 32570 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:97d9e03c73e1a101352d8b00ee191013b6b6acf00e90c887dd54bea4551de7be 3 | size 8256 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:16a8224c1758e79ca01692110137ee5cfeccdf8018020571569d1102cf0e5616 3 | size 3877 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:140671a011363e16bc49eca3c9ffc808f9fcf7569e45f8580d320e2023d2037c 3 | size 5282 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:752e58df2f41877fc72d7f7dbf8b1df290be796650dbb10bb620114b2cad8d64 3 | size 27579 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e7f54eddcb464a1863e5bfb1b1060bbede58cdca60a720a3244d46844252b03 3 | size 24212 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f42190688b6a803a9094344c729c9c220939274e38f0c69ecd28702965b1a8b 3 | size 21959 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4312f77a5201c01b87c5221eb7bdafd660cd940a9fca2cd9d354791053a841a7 3 | size 9615 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7fcb84da664b3f20e739feab493e8274321cac40a7f69b349a6ffd4b4f13350f 3 | size 12680 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffa71f347a5914c9e9341ea82bb42bf7b6f7b8d0454bc17bc5629addb82138cb 3 | size 988 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:beea3a1ab560bb2f18628ef60b8a042c352414bf64f3d264f5c55cbad6f1d308 3 | size 11536 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:413187c10593667561db6d41edb4a2ffc845119e86226a815cbacba22d408cb9 3 | size 5619 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:179a8ebf0fdba78414a9e01b130db5fbf78dc5d1c7fd48c5d49dcc7ccca4aaff 3 | size 4769 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4da4a3ce3d7a85b30d35977658415e48a4c1051ed6ba1dd4c61cbc8d350027d3 3 | size 5759 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1a8af78eb581505de0a0fc5d7cddd87d7fa583fb1c5d660bef1ea5fbc53fb54 3 | size 21679 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:abe790bc9d1c9e251ba9bb6cf5766339bb2e908d65a6024b083d4aff7648feaa 3 | size 22405 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0bb182dcdd0dbcbafd6d84edb99fb54033a14025be28c045cebc5568fbf1f88 3 | size 10701 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee812d1bf34f6e17863dea22a01ada13f249598d9a9cce396f94fb801b6b1a3b 3 | size 7076 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/IndexedView.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f6ac0d02a57885819f7372446f786cca51d9925d4117d3b10d3af7f6d74e1e6 3 | size 8412 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:88200e4b074de5e0956b1c87bdd0717c0e9a71fcd8ede3252c5bda4b9059bed4 3 | size 3519 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:502d884c07e99db0258014616445fc2fe52f68742fe69c2dcf58ba86a7f01a8d 3 | size 7227 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:005a99b916a5ef1647508c1d8a4fcc431a19ba47b1bfa39c0500c72f56083df0 3 | size 10621 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f8d8780deea171ff9771130a286e9ed5905d779a02207c48c31352287de3e2e 3 | size 49978 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf8fa7382311d0c8b0480c50b17b72f435da9baa8fbd4dcbff008be7aa740eec 3 | size 2475 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:263ee4b850c2f9b4ce53fb66532cccd31a638eaaa17796e8a8f8f93cb2fa30c6 3 | size 19170 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f48083495dbfaab01f52cbcd0ea1b859ca7a2babbbd81ac598eb0a187f558db8 3 | size 22309 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ef9fc417b2fac5f1b8b6b8723a8a9c537fbab3a4672a4edf7804691dd14fa4d 3 | size 3490 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f61d91a9d0419209703a94fd865a5b9565633937fd7b1ace3f9edb84cd8bc02 3 | size 3622 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:536505342b7f3b0819976b0e12beb9660ceedae56e13926d7d830372a4d2c03b 3 | size 10182 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3c399cff29b81e23c912caec4287b3563f7710dc615ff8f2c736da642d36e63 3 | size 21646 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6436285bdf6e1457e65a874de30d589563a783135482d5b20607b114849baeb2 3 | size 45180 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4704836fb3e5136233f64edd47aaf67534ac46648820710a34be916dc1c73fc8 3 | size 7149 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07f72cd1ab4b27e809617e21d38f6384f1ee8634d17f2a5831e8787f3f3253e2 3 | size 48921 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df42b36b1dd4799194e2c21d7a00f8d4d4ea1bf00d697b3985580b15b437c0e5 3 | size 6397 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d90a909cb53a866ce757c2765533750202087d5531c19d33fd1f8f582c413f59 3 | size 17958 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5fe47c9afeba884d79b85fb3684daeefbdea8f7545b22adfa98f8003f6182040 3 | size 12945 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc2f1982cffc4dc08e0e30de7003cf0712778f690082f712a9cc39f60eb3ea39 3 | size 5631 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3cce6b623260db02124eb64ed1cf67bf764d84357af9656c6d630cc4c4a476c0 3 | size 4218 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2de5977b947d7bc2de3a0fb345472c7a97797175c1c6e5de323e2fc850dcde75 3 | size 7127 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8739a2a3d23debd527816d961fda688e8dc3ec9be61da9b45f4d2cee0a048636 3 | size 6020 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3252592e528d0d0fdc1971d762c99f78664a5404da8ab790373665edac497174 3 | size 14171 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1ba057353c26bae1d711b4f8c0d4ea8374cbca0547a30121584642858ef601c 3 | size 1909 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e276cf089174311b182d070d584795d30626101436fedde2d6c743cc1dfc4324 3 | size 6795 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b831cc578177631419deef0a6c8defb07a044dc2b34cb76a32d83fdf9d58176 3 | size 9049 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffbb1e941695a300c65c4333df7966270fc8a1011356beeebfd4d780f28bf803 3 | size 4365 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5870cf511ccb9c6d5145819900e54f332a24f9077c268cffb540da2a2319473b 3 | size 7692 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:523f6b45d8b0a0242963ad2a4d5a4fee910485bc7e7fc9ca442cca8282b3a961 3 | size 3865 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb3eebb8b252ee2aa5f97eb97675a14c1317b95a0ce6f83abc6dc6b556df4cd5 3 | size 2683 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:684c477df59319c4b1e3ac8841b1e7420437795af5563cb2a848212916989b86 3 | size 14867 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24d47478156fdf1609d9c983d346cff77eeee7fb2d89f5120c4d982c69bde2ef 3 | size 14396 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bceaaae2dc0b3b791ae59c6acb2b4c7e161efd68fe6f450f66afa85b54773c35 3 | size 37356 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a45df905986d0f46db45bec6dc7bd5623926c4f85101eb15f52aa2fe3f7ebb18 3 | size 3462 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:275d0e8d6b6fc222e61234eb639e7ccd00eae43ada729b1fc1cb03cd1423d9a8 3 | size 29477 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c91b32670eb935ef1927688eff704e469d69def6a736619a2b962726ad531620 3 | size 8074 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1527741115ee72f77510b0ac65a620441bc7670df80f780505a2c35424988b65 3 | size 18037 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a126cc57de6ccb9a876359020258044d9a8e9cf2c18b43f72e0ea6c2ff8d128 3 | size 17776 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63845eb7e4c961f773da5d20a0509147c442c5da36912c8bdd1929ab238ac62c 3 | size 27870 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b5e4e2dcafb2de207a9508a04d41c202d9666027a4e30c99fcb2450a4dc76a4f 3 | size 1194 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f04391ed718b58da9b673ccdfd64fbbc40fbbb9bad78015972c2d08e4f48ef4 3 | size 15827 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5f025d6a1c35c465e4eb34c3514021f0468aafb20a87adf411598558c24a9c0 3 | size 49872 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:679d216865af89c9980fe4b1b326da499233666661b13610f75a1d724fdf1346 3 | size 16443 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:70b9e13adeed42efffab787c84c5b2ff891508ddde27502c9635903d35c50ac1 3 | size 10797 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ccdc9b0eb5532620f1948bf96c08d6b72b6f9561fad881248dd5597603b583f 3 | size 37102 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a069c36df804e36bba9f1f8ee9923021271b9d2b003a525de3df8d0411204c30 3 | size 4244 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/CUDA/Half.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3589b8dd48584a159320588dcc0ff9144678cf4bc67a91d96f4a71849f668e36 3 | size 23002 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/CUDA/MathFunctions.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46a879326d2782ad12a8e8d888fa9c16d8b8e80c484ea34d569c3092ae08a293 3 | size 2699 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/CUDA/PacketMath.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3915dbf8add7091dfaabc700b04ae5da98cd9afec69fddda36c9ddb3b144febb 3 | size 10798 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/CUDA/PacketMathHalf.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e26cff463951e0b9d1f8ee5c4271f44ce29646c2957f70caaf2600a53a3adecf 3 | size 35758 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/CUDA/TypeCasting.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b589d49ebfcc5c7f4db540f1e23344e4bff70fe8e88ef5d5a01cfbe74cf9a96 3 | size 5525 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/Default/ConjHelper.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f9fa828d2774bd7871b7bd275a81254234352dd57076fe7e4754aac5fa238a2 3 | size 1989 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6240582241b284fbcd6a2494ede1e4f0a23f5d81f8234e1d990821ae7ea07f5c 3 | size 1746 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99edf7efd53d23a80690aa304cd5e3ebcded274c30604eb8c59e6bde39b538e1 3 | size 17678 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6da7bd8db6f1da19d7b273c86625708c2793438b59f4e789d99239a9f37b0e9b 3 | size 5904 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d76b06f1b9ff7d9dcd78425b1cc58c4662873c92632373bc05c6bcab5c76666d 3 | size 27880 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:052f8c6345577dfc84398b577df51404003ef47e2d096e78f878a752c7ef9c38 3 | size 19412 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3263a15ddfba774d83e80a26846ece590b488bbd53cb1b921713d39030e46e1d 3 | size 18888 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d61e94c9015d613dcd9488d49be91733142fa58b3ef5dfc25d400c0e821f45e6 3 | size 36953 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7d411ff56bf7247a8a2372181c31c9038ec68f5db385941dd23e4d30523feaaf 3 | size 1726 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d1963e223fe530ccf960a7290f790842be4344726848ce61caf83006504d9610 3 | size 20358 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07593c4c4dc67d837ed8ce27051857402ad20c05625cd1229648e9e3e20890ba 3 | size 8025 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:becd6c7cae550e67db60bcb0c41dfc484a2090dbefb3583bb037e784dd0fb928 3 | size 40438 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7bb8daf6b8e5446a3a92e3b92e31b57e7de9a443d180084ca46ccced7aa22ff 3 | size 6286 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f03b8f377d1ee2b9088dac3c184f07b67408b70aa1703ac57477624aba47a68 3 | size 18081 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8d2d49206e21315024082c0de23d87bce0b2bdd4396dc0867fdb44511703661 3 | size 8229 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0f9d78f5cb0ea9b70246cdb6c150e50f0a47dda4586f609218b481f88f351ed 3 | size 4184 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0fc3c1aa2a5ad2f1ca9cdbcf37a633712cc0452b107ed63f6a4cf10d67111168 3 | size 607 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e42ce256920c326ba0172f22a0d29ed017d1a50c423b33ad37600c161735e233 3 | size 28902 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72c99ab885dbea5b007075214ce557851d11a4547006ffbab3e4cf8e71f55a02 3 | size 4905 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c2a018415fbe4093af68bec0cc97c8a0d65d5c9d768e205ce61bd762e8cf724 3 | size 6123 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb3ae95b544fe18fd6352c5f243b931333108bf729ac4201ba5d1cb38eaa0380 3 | size 15911 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a00e8ce53d26fe664420e991a05b50a91de4018526dc73c4fe32281f4591a32 3 | size 21738 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b1c76a2170af2011191d607aae1da7f8e88c2cd5674b17ef0b62db5920772f54 3 | size 3718 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49ccf31f3b8d68af44a4060698607a10bb477b9c1c7c469702b16d8d58d33446 3 | size 14238 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/IndexedViewHelper.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9eded1ee8e3f985efa31372e671abddc1a059bae1cbecedc08b0b28ac32bb331 3 | size 5966 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/IntegralConstant.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:865a1a29d01b984a1308edd31c5a3a7ba80f26fe83cf32f563db7ca5bf5ba5e2 3 | size 10821 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:487f0c220d40b8418876b5c7d9032d3597374cdff790d4022e8f4eea932cf620 3 | size 4268 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a14114c818022b73a71450c1acb6cab1d07cae4d3e0089515433872c62497c7 3 | size 37833 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2fc4d85e9ba6c053420b2c5248a2a0c9ec11b14154844626852e866e751d330a 3 | size 40094 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5bb59d8e7fed0b938a4e9f7fd2d19cb611f15b48bd421df2457e6982adcf28ba 3 | size 20244 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45e90a0556a27623a911bf6c9bc81cb3dfcbc9ec82dce28e4af7f8255ea5dad7 3 | size 85 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bcf82ea0701a620e38426aa3f127f5aa9fd9d2b55bc2f194c63645633b3b5869 3 | size 809 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b75f758a8ea5ac084e56b9156938b37459a21d90d3f477d21b19d80d7c80c1ea 3 | size 10400 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/SymbolicIndex.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7d8612cd7689c3693af39a695700f005f9a38a980346ce7d2c6c059abc5be733 3 | size 12224 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dcaf1a80dc381dc953e2f96a8258640daee95ef12497ac3a11272270d0265949 3 | size 34774 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab27f7951821bfa8e574915f98917c7446716f4bb681a5fe4976809be48aa1a4 3 | size 12558 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:565f0e3ae9a7d5a458333b0692887978887de4b9a385d91d7a803415f3649e4a 3 | size 17021 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd6553437ebd9249d16e31ae2aeed73c983cafa3cab835cc9829343e5ccefa4f 3 | size 4178 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1190506d0c3b5af4a22828b8401d1faa505c4378f17eb8efd69d03431ae37b02 3 | size 22944 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b0db631cf35d0ad782125f1dc35b01dcce0a45d8f9385e6d658d0bd10724e34 3 | size 23586 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89a7bb0970a5869aef0356fd0c23da4bd69bfc0126d4be7f0748a72e09f08580 3 | size 20268 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:30aafb5459f8297d6851aa6a8b651275565d9faa451332d04af50713c043562b 3 | size 3650 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f566763c0ff0a6e7876ae8d8bc3392f6a1b91436d232df98f696116117d0dd22 3 | size 22444 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca5ac376b0d0c8a051726fe75da248772b3252484879c07572a1632175966d26 3 | size 14840 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c786445fcc4c7172090f9ec1162dc30aa61d652612f65828c0a6745513b2eef9 3 | size 8423 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:234613b4bcffc4c4c688301bd7f9d3c6c5c1a3451ac976774ab9b339c4c6da38 3 | size 3639 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:428080d1bc8b9e6c4f1620d3a2c2c95737890b266797769e94817e36205743ee 3 | size 20539 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b063c91a3b7c66683e8a97e448f67665cd11f43dc5ac07c58213d9c22f36354e 3 | size 11961 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b8ee14cb98d51d73c7c74bd75775f10dc3ef0fc433838b84bc4973909d25abe 3 | size 8949 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e320d91fd5926ef8e2090a0d51f3108c1d3afb28b911a562c0f65cd275a3886d 3 | size 9817 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f16e7090de437e95d25b45933554a12de905b57933734942000ad8e5ec726e3f 3 | size 32152 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:398ba775ef546cd7b0d9155fedb2b4bb1156ecb7ac8a1330bab1a48e80fb06a9 3 | size 6877 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:122a302f2f3593ac3951e4408c7d1404360a031baa0380617ba1dd6dd64518cc 3 | size 8063 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee19cdcf8218258d89c4851b54ebbb4d6845101709b506adc7b46462fabcb6a4 3 | size 6324 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:950bb3b8d28ef287767c86b36d7ff0d2d8d349c47a96d5c2895232f9564156f0 3 | size 60689 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f83f8085d651c80297e90004cdd5da90637801aeefc9141bf214262aab40cd8 3 | size 7773 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:666d793d75de858bf496e698d6e23d1363e4c9707c370a9279f504c3a500a9ad 3 | size 6191 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/arch/Geometry_SSE.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8e0ec3585a1eddaf2186d2b32446cd52a0a5e8000ddf594b77acd7f3b3e5135 3 | size 5387 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd3bea6ad32b93b134e642ba7288765d06e015eef58a57519279bdc80fe8b129 3 | size 4481 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63fe489f1eabd51399649cc0102803dd616689ef831a2224afe53d48c013d5e0 3 | size 5345 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c38234f5ae691e94bf11bc8f42b173a954b2b140c47e5af1d8cdcbc3551e16fe 3 | size 20603 4 | -------------------------------------------------------------------------------- /include/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab25f5908cfc026a0a33430b1aa9ac6690dc6522a0cd5b2b74347fce4fb482f9 3 | size 7253 4 | -------------------------------------------------------------------------------- /include/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:649ec8fb316751a6c0c07ee318043ab6961e7361bd197ae84b44c340682fe81e 3 | size 16267 4 | -------------------------------------------------------------------------------- /include/Eigen/src/KLUSupport/KLUSupport.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31d1fcd9f2a70db54782398cb84eae2b6dcca1aab98cf96897ce2fc3ab844653 3 | size 11533 4 | -------------------------------------------------------------------------------- /include/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9add6beffdfda8d5547a571d713a63f790d19c78ab2b17aa3d5c7ffe159f116 3 | size 3057 4 | -------------------------------------------------------------------------------- /include/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a0f2d9f8eb1a571e6bc9b766c692a45081c34b8e6e60c5008331f347dd0b620e 3 | size 32759 4 | -------------------------------------------------------------------------------- /include/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99b21a4e3e86c101399ac904eaed2f22c1a78f1416b03296f929929e998b5a36 3 | size 15068 4 | -------------------------------------------------------------------------------- /include/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47975ed4891b4a9bca254954de9cfe34cad7e538442ade20a18778402175f89c 3 | size 21478 4 | -------------------------------------------------------------------------------- /include/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e34e5e8934c5c1a591ca3eafd1a7045898c404a95b93eeb374466a1278c44625 3 | size 3555 4 | -------------------------------------------------------------------------------- /include/Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8d17910200c4cf148ee8cc7120a09d29749542bf6603d44c8a9df5d97183ca4 3 | size 13669 4 | -------------------------------------------------------------------------------- /include/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7b5f60a7baf958a7a0b46bf484518b9e49d56bc98ef8965c5433bd7c64f264f 3 | size 4588 4 | -------------------------------------------------------------------------------- /include/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9fcc6db26fd1bec9cbaea4a54975b96e1f64c0d522b8e7e6ebe0de06273895a4 3 | size 16396 4 | -------------------------------------------------------------------------------- /include/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a827df806c79601253083ba75af7799d1d1616c0c5fb2d779f5c1d02ce20b249 3 | size 62266 4 | -------------------------------------------------------------------------------- /include/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f018c3904308f8e3b1e1df81640977452eadd455df0c66f82fb95669337ad36a 3 | size 5229 4 | -------------------------------------------------------------------------------- /include/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31a279855101253816109d062ce36302161a3658b148a8760c3beb1853bb532b 3 | size 22248 4 | -------------------------------------------------------------------------------- /include/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4de10de3f84b900cb03cf074e6f9df35b67047125c5708123b13aaa954bb97b4 3 | size 20032 4 | -------------------------------------------------------------------------------- /include/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:059757ceb055fb077a2edcd845350fa7ec5561b834a1fb419a122e44c1827def 3 | size 24859 4 | -------------------------------------------------------------------------------- /include/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3e0e20fee012834d4652f2aff391d9d7499c2c86f64ec0407bc4f150853331bb 3 | size 4662 4 | -------------------------------------------------------------------------------- /include/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b8f445dd302efe6208efd71a4a45127f66a44664cea4ed638b3317cdad048a4 3 | size 25440 4 | -------------------------------------------------------------------------------- /include/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:094dc21a3e2c6ecdfb7722352a9562204d8cba1fa4357b18cac4ca19af365d83 3 | size 13984 4 | -------------------------------------------------------------------------------- /include/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a8486145c909c2108aaf1bbd5b448f91c0bb2553070da5e4e1b38661b76aa87 3 | size 2993 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6ca760a42fe16fe00671534380f40c3876f38de35cd3cd727456a585ee6e0f8 3 | size 52247 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66e64f55376e80dde525d9d62235fd6e6c93a674b8492e6a036e22c23b015200 3 | size 32949 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:980e34812fc3ca5ee8936e4adfa58188963c97d72d4752b9ca152c49fcd23fed 3 | size 5009 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7b99bd485333eb35ed62a54d91b40fdab640c567c3d99719e6463f37dd8d75a 3 | size 12630 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffd6e21c6b478cfdb4975342d44c6257ba170615d1df7ce5aafc3931cc60b5d4 3 | size 15957 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:678d46b1d27e49f8cf29deb43d7bb289350a51ca3bbd3fad07f15739e0fa951a 3 | size 10537 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cbf3caedd63a5558e0c330326f20590a2b2ab54acbc74c4230289636bd03c1f6 3 | size 8164 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2ea4abaa6fc437a2974174c5204c6bdb0e40cc6b59dfd33bd020d9c2dd660eda 3 | size 2191 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1cd0778af36319ee3d2807d9437ae7381e311585f4df95e1b8f0c611b3b5cdb7 3 | size 8150 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d5d687c1f1419fb81eca03f8ad1e923a64d0fc3ba9e69017855b459b8396768 3 | size 25592 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:871be15fce8853900437445ee4913bba0c9c3d6af08e6313f3deb9cb916e9344 3 | size 6485 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4d55f5d0de8820da7f04565f21acab3f3d483f9cbc378ed97b07530153cc14e 3 | size 13173 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4c843cf9a400d7f0cc8c5c71cb66825acf3728d8bef0eaafc9f5d19e25c82995 3 | size 25426 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b23b409ac2628f6d244d620ca539447e71e2554b691059b9ebd8ce74276818c5 3 | size 4711 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:436a9b58e2ae27a795c13ccbd01ce5644922a5df884cc3c3de4e972a585bd806 3 | size 12487 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa5d600eb466743c6ead15ca60ab77e79f15579eabc24920dfdab5ae6363519f 3 | size 5808 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8d305b52c1dc6e66b2402dfb6ec1cd54967f1d5cf1e7ecef81e876277d78767 3 | size 3080 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f87bcc4641b02eea1e015454cda4f124e65eacad4b2a817bcc88549edce91370 3 | size 1107 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c43629c60e0ccffb47d22f17bd202d909931a9bf0ebe5a6619a2ecbdf061fa0 3 | size 12589 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ce0c3d292094f80e58ac981fa9d3b25e7a826cf0f9c8196248823b59347dab0 3 | size 52349 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a7da3d2c56a2e998da7420aa534cd42ba9c483abb4eed144265c2b3a1608439 3 | size 17923 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:30e0a30a0418db9a58b4f31086f1af91193c9285ae18ef1d93441132a4ad88cf 3 | size 7329 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7d4297bb1e5110b605413bea62a6bcd7da79e85c2c861b49f4e9407cf427b543 3 | size 7049 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3e68290cad5fbbba0ecf8284fa238a52072108e3368c0632f8c90816b41dc91 3 | size 1699 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b79265e9213e1ac5300214ebe681b53b6b865fbac807ee85bee53eb18b17b642 3 | size 15492 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc525e230bdb66f4ba4d79d02386ea716d3b01eba5b734533a171f043a20a479 3 | size 4424 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf3180918315deb7dc433fa0d4f388d7a4209fa430783cc9d80373ab88bfd72e 3 | size 3175 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0bce29b40b11481ed84f3e77fe0444e7788c43a6be68b3b58c9a6db6221a6cf 3 | size 6437 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99f91ef4c2b58e9179a5844f8736cb5320b190bcea14c1b5f038ba0bc4e61787 3 | size 6602 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fde1bd0ab875abe8cddc4008289baa7237daa2fd8d9629aec1b4fe171dd7d27 3 | size 14831 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57850b96570203482c5cc422c1ce2a8dd72352c39c8a728f93dc8a719a29ab1c 3 | size 8110 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9caf168bfdea718fa900283448395de5791b237683df10caf0b453cf4ed314f 3 | size 9657 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81115cee9f9da92a61ba81d991c6a9031a390d576c2addeb5ebe087f9f38a753 3 | size 27923 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6a155332ca1b7894e00f3f7ea5cfe38b4ca0cb2d5e3f69b025c40137e7c0e40 3 | size 4303 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8cbed4d0275e0739d01b1a529fc97249f9ef5e671754f0e518fd63d690691801 3 | size 7601 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a204a6a9409586135ff5218420dc6e1389fcdae1cfe072750fd4478a8394614 3 | size 4974 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55f6cb16d53c850699977b228d2b3428a2753a4e1e1f4919c1f4a5003d427210 3 | size 2049 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:504173ccf9d9a0cbe9feaee1c9a34968c41a8af9ee28681f53c38c70b918f44a 3 | size 6712 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:28d7a5c335b6ef2cc18539b66a0028448d46fe155e9a1dd33faf12b7b7e70feb 3 | size 6582 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6e7a3007e53f7bde5668c57adf4df64cae9e5dfc6596384533792b2a45a1639 3 | size 3681 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d4025eab3175b5dede317d96577636ac1732ffa807a928c411c1848a22eb3025 3 | size 10216 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2c4d8f589e9134eb8669fada7bf6f86c9f7d65795e2b9079955648d06955825 3 | size 5723 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a256f5e7b2f064208249719e075bf521610b90016902de6d9ea0d8ec43b7031b 3 | size 8486 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c7c706c25786c3783570a3a3e5efb8e14e70950229c2435d26da8ce2d3fc43c 3 | size 9028 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ad1a6b28183f605213c8987d9fe15dd17d57876dbc958210ec3ed0213306c5b 3 | size 4979 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5b9134a43ba6361061875b2f331c355b1203942639bf6d02db1d5ece3a159bc 3 | size 4545 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c665a42771eb09e631fe8d9bed5d4db53c28b2482df381739a0e4e1cee1924d6 3 | size 2889 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a7aac85bfc55da275f4fd2b821a712957e5ca53b2fd5a105c85ec9c8fad188e 3 | size 28091 4 | -------------------------------------------------------------------------------- /include/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:88ce4277e52348d36a611fa3c472d6d277604f605c65c2ce2d8a9b74279c671d 3 | size 5117 4 | -------------------------------------------------------------------------------- /include/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b93cad65e0d808a0326c764641cff52ab9000e1691bf4894c2fbb39e70c5462c 3 | size 4147 4 | -------------------------------------------------------------------------------- /include/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:78dd7645cbc017e692b1a1ba2edb0e1a19e9a474433af9e0b8ff184f082c2ce5 3 | size 5330 4 | -------------------------------------------------------------------------------- /include/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3785c06753150648f95aaa9fd29babcf0f01376a0132a91e9cfc820bb6541781 3 | size 2809 4 | -------------------------------------------------------------------------------- /include/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3782f973b25b854fe00595e98d1df270726e681a949dc645941652debdf96bd6 3 | size 34341 4 | -------------------------------------------------------------------------------- /include/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb5941b1dce6b16a50e3c2f08662cf585645a2848ea23955a3293f243c9f4d2b 3 | size 17199 4 | -------------------------------------------------------------------------------- /include/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f8f9fb664c1462056175f956d9377bedd150e8c45fb89a39ef4463b63686c4a1 3 | size 2913 4 | -------------------------------------------------------------------------------- /include/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2088910ed3d2fd24df3d2f7cd3164bc8457c782a8e0058b7f4adf228a1d3eeba 3 | size 2742 4 | -------------------------------------------------------------------------------- /include/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5fe0795f45cd92a09b48c02259ef743bacbbe86f890cb0c0725c0c03fb56886a 3 | size 1748 4 | -------------------------------------------------------------------------------- /include/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74e5a8752672edadd93637f6dc7feb8a50427ea94f9ac5d1ed56dc2dae0fad67 3 | size 30560 4 | -------------------------------------------------------------------------------- /include/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffdfe0aa46cb3221202a9f2582e39ecf6d5ad66626cdfd70f409859521d68346 3 | size 7834 4 | -------------------------------------------------------------------------------- /include/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06673e96af65b907c83d42495b754361b42bdbf9efc6353d51f2e702396caeb7 3 | size 1058369 4 | -------------------------------------------------------------------------------- /include/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7d71fdee53a1e0cd01568aba2f152f2e1e4fbb849e84d740e3b031e819fbfa22 3 | size 474 4 | -------------------------------------------------------------------------------- /include/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3057960f15226fc9e3b9ac3c394474452181a89af099ad2d5a81df9ce9dbaf92 3 | size 13132 4 | -------------------------------------------------------------------------------- /include/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4dc73b9bcc781a015ae6a13897c85e8cf8371543e499ba84cdcfd6e3f86f382b 3 | size 17481 4 | -------------------------------------------------------------------------------- /include/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e5c2ea570e25abe87eafd6309f64468eef3797b2825dfc8f48bcb00ead61599 3 | size 55137 4 | -------------------------------------------------------------------------------- /include/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f8a9bec47fcd5f7f529d5956e15da2d0d32511879bdf613d39fb22fbc9b4498 3 | size 4828 4 | -------------------------------------------------------------------------------- /include/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d8e10f6c1d9da6f5d747b9e91e25745685b1d3e37a2e26f3a16a3a94c5b4f27 3 | size 5621 4 | -------------------------------------------------------------------------------- /include/Eigen/src/plugins/IndexedViewMethods.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5dfde352a3821677e73ff723f55aa8307b15891006e82d8c33b823d2636fcdd7 3 | size 12468 4 | -------------------------------------------------------------------------------- /include/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02980a53165715f789a6c41c6f32046a8c38a88544d498ec38645bbfd7b32579 3 | size 6375 4 | -------------------------------------------------------------------------------- /include/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d13235e4019216126592b42596b515fceed6bbaf1492f83559f5d84e49c5167 3 | size 2937 4 | -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e7e6bf5a4cb1b399af3cbc40ec768de97fac29d2ce83ca757d98c497126d4e1 3 | size 57264 4 | -------------------------------------------------------------------------------- /include/README.md: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5c68453017dfde475a4e2799860953ab50fd53d6fa353973f0a6a54552e6f38a 3 | size 7407 4 | -------------------------------------------------------------------------------- /include/google/protobuf/any.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49466363595c8bec29604aa6839404891bc5aade0d6a5a833bc831e05036241f 3 | size 4479 4 | -------------------------------------------------------------------------------- /include/google/protobuf/any.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6186e3fa08083ba987e2edd8b1a27106c132540ef942717b5657a13038eeb8c 3 | size 4834 4 | -------------------------------------------------------------------------------- /include/google/protobuf/any.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:62f6fa287b990fbd711f60a94a0c12754a60c70a646a01a74753f7aa0b03aab3 3 | size 20772 4 | -------------------------------------------------------------------------------- /include/google/protobuf/any.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eab47efd252e595f8370d493427ae6edd4315679c5d6a8992f32946311d7b0cc 3 | size 11393 4 | -------------------------------------------------------------------------------- /include/google/protobuf/any.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b88dbe96ceaa521b418ae042cea468a9dbc80b1a260fb447d98d892e5385a47 3 | size 5632 4 | -------------------------------------------------------------------------------- /include/google/protobuf/any_test.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:527f54c136381e2e7f36334440e8c07fd56e9598c0eeaffcff81352d51657d9b 3 | size 3582 4 | -------------------------------------------------------------------------------- /include/google/protobuf/any_test.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:77f83b3e2a8c02d81395d9952d83e6ed4d959751b37ba5d15163970e841c9e60 3 | size 1923 4 | -------------------------------------------------------------------------------- /include/google/protobuf/api.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c19ff47ed04cb3e4ef8462d6f53fb50c4724a040393d82e0a9cdc028b35815d2 3 | size 84214 4 | -------------------------------------------------------------------------------- /include/google/protobuf/api.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ecba1a3fb33330d30f797be0ea8a014b843af07a883abb66abdf52534c5860f 3 | size 43581 4 | -------------------------------------------------------------------------------- /include/google/protobuf/api.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c04db0a8cdd7de1ccf9565aed7c038d3676b861cbec36eb344caeb824319cac0 3 | size 7944 4 | -------------------------------------------------------------------------------- /include/google/protobuf/arena.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:624f284441a368dbc327507714af5dfd21c16d63623d2357e3189221333b97bb 3 | size 12497 4 | -------------------------------------------------------------------------------- /include/google/protobuf/arena.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a165b558532d016d5afb52d386cd304c1b1126a2148b7894a25b80c309ce2136 3 | size 39587 4 | -------------------------------------------------------------------------------- /include/google/protobuf/arena_impl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:755f133e9cfbfea5c951236e03906e14c254aebffc2c6aa292eb23a8557d63f1 3 | size 8727 4 | -------------------------------------------------------------------------------- /include/google/protobuf/arena_test_util.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f106d2f9745ef393b0a3de9e65f5103c0dbb94b8d24010d31ae19212bb8d31c6 3 | size 2164 4 | -------------------------------------------------------------------------------- /include/google/protobuf/arena_test_util.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:870c08ac3a6eb3393dab99e2e6250707761a32818a8e282d543d72d62561fd82 3 | size 3477 4 | -------------------------------------------------------------------------------- /include/google/protobuf/arena_unittest.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d1a8c089d0d92969e5bd2b8c4c4b9ccb63f61fe50ea991c744438025e3597395 3 | size 53772 4 | -------------------------------------------------------------------------------- /include/google/protobuf/arenastring.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c76d1d8f5860e754bc06620c8a0ba142d8ac5576c99042ee8ccc7a4eec625cf7 3 | size 2009 4 | -------------------------------------------------------------------------------- /include/google/protobuf/arenastring.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:830fb94fc49d13cf45e1c746c932b25e81ebd0bb6a11895707cb72776098ea30 3 | size 12613 4 | -------------------------------------------------------------------------------- /include/google/protobuf/arenastring_unittest.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7cf8ffc2e79ea5fa5ec77029e46fdd646ebaa461246c42f6e59d4bc6121deea3 3 | size 4650 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/code_generator.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21160cac81e12a1571c25f39cf574fc818bf9bc61c0094a792b1a594cdde1488 3 | size 4669 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/code_generator.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8acd0f9dda73c71b945bf75005c6097f1bf739d9aa2a39588503a2c6a2ebf131 3 | size 7583 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_enum.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5abf39f54089878f4574188cd8c6b36d44e9949e7cb651c920d6f7870a0edef3 3 | size 13245 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_enum.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bfbe617e95b9ea1aeb7c59534a59332267a82e24f35528cb6ffdfbf81962d061 3 | size 4540 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_extension.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55c6e38e5d673cd84b79a2ccba467c43a9d1edbd25ae18374b2715889388811f 3 | size 3320 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_field.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2c3d26714066a0bba454859721908f5218de401e2ed7ca29e14e463ddbf531f 3 | size 8727 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_field.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82417d67f8a8308a02905de1a5c836c693ae8789c1d6335341fd9bdf8a8967ce 3 | size 10633 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_file.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:96d796c27e02d1502c08f999e6f75a8047fd01cd1c95ab8c31e54ff5b1dafa26 3 | size 47793 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_file.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:637bb8aff8239b0dedc13361a188804f5be1a96a3116078d2ee58496e1fe9d79 3 | size 7591 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_generator.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d72fcdcd8a1069fe10051faea891c63939fd66b5b2b460f8415bef5cef73beac 3 | size 3035 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_helpers.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad67902bbe601f58060f1092f14cd265eb4735d77e95a013dcf4d4e2ed4426ea 3 | size 29109 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_helpers.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c4b1c0c81e0a96b00798f211537e679ff10532f9c26e8c972feadb2730c2a3ac 3 | size 14796 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_map_field.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1dec63c81be6a6890b8c24a83f540425bfcd04867532549c42664ded6fde7e60 3 | size 3572 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_message.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f12a1780718531bf4f200dda29714cf9b23a8e49ecdd56db08c20456bcc23e80 3 | size 10897 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_options.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:71a31fa8ccc366c0341cdbe32c0693112e3cd639d3c2b8fd84f6e16362973f74 3 | size 2769 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_service.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f90aa9a9e854ea52d65c0daf9a146df50ec6c808f6d7bf6db88c2b618547a6b 3 | size 13365 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/cpp/cpp_service.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a6bdb76b8dc1901c6de81f5b648e9a548b911e0bddb99ab95f40ac7c3fe1d92f 3 | size 4412 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/importer.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf9d977f5bb877d98a2591e71a05ff47dbc87cce86f65554c67b80943cea06fa 3 | size 17687 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/importer.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a57d314b582b466e0444cdab55c7b7f078ecdb80dbc4dc73fa63dc972d20dc46 3 | size 14060 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/js/embed.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df8c2dc4034f7839a9c022a86715211486154d562d1ca7ae482b64cfcdc4a813 3 | size 3669 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/main.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:549460343c4384da5ac334f909b95265b62bad0325ad1ed7cfc27bd97b9b43d6 3 | size 4731 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/package_info.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1fc857e1150396dc998c3462e7a998b9034fedb660031d7f90b91f246533b6c2 3 | size 3276 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/parser.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fbe603b344de0549ccab2a72d4209753cdaaeab5c0b7ebdb7014cb9918992877 3 | size 77267 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/parser.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8d02da50be8dd687f766d1f3d304bd3cc1afcde748b6aae39e1154a0f9aa02b8 3 | size 26786 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/plugin.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:936747b785c0a16f2f69245b2a6f0609bedb41fcb08049c965a04e29a332c2bc 3 | size 6225 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/plugin.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5df3c5b4c2ed2ebda880ba9e51a32148ce9800a12f3181998a3b943ad75316a0 3 | size 4340 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/plugin.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5554c7035eb31fd8da1c45c5eba08a5809f62f825f406158fd92906bf26af419 3 | size 98470 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/plugin.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dfc4689fb3c680b1f892ce8e8b40e8fbbb468be0be3fbf0d9f237add02a046c5 3 | size 56375 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff444e910a6b8ab430f16c82292e3a933d284a1ddd22a5ff4fa692640a8e1bf1 3 | size 8367 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/subprocess.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4538b4b85c356ed56b0a3e396999ab189bec5b8f75eb863cb62a42b9c85c39dd 3 | size 14855 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/subprocess.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b9de0a7acc673b45735c9e893013ddc6c928be0eb8776dff7dfe7196bc3462dc 3 | size 3899 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/test_plugin.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b35027b6a9f7a0991e4dcddf119d0bfa07b93206a078686770df6a46edb05894 3 | size 2323 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/zip_writer.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03cbf7f5beffac998db109da85f6c74e95b159921a924dae23286eeaa8888397 3 | size 10907 4 | -------------------------------------------------------------------------------- /include/google/protobuf/compiler/zip_writer.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc468f4015ca7b86026eb814d0bb6bfe55dae04dde1da8c23a5e5a5d4cec840b 3 | size 4070 4 | -------------------------------------------------------------------------------- /include/google/protobuf/descriptor.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a33f327268d062651e4044f8556c3867787bedb6ee527527834348ef1a5b743d 3 | size 269634 4 | -------------------------------------------------------------------------------- /include/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a14a836bfa1e8124c59147d0edc31faa295078e4511525a20e57990c5593143 3 | size 88817 4 | -------------------------------------------------------------------------------- /include/google/protobuf/descriptor.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4296a51ecbae9a39d460a49491d45b1e7d8de8596d0a807eea027d37a5e2912 3 | size 701599 4 | -------------------------------------------------------------------------------- /include/google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ee0958049dafa2fce873c538d6b16e3e6af26d4fc52b0dd04bea9e01777872a 3 | size 399266 4 | -------------------------------------------------------------------------------- /include/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:603a31ca0a6d56558bb229a115f56f6171119a8ef48d40d78cc2e2a7634c7603 3 | size 36206 4 | -------------------------------------------------------------------------------- /include/google/protobuf/descriptor_database.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4122aab3065743de8fa118dffc7318eee4a90eb1cc485708ba43e619244f7aa 3 | size 19383 4 | -------------------------------------------------------------------------------- /include/google/protobuf/descriptor_database.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5bdabe95e8d8d913aa512b21464c73ed12b7f97cab6e2d5e02befc8f97d69182 3 | size 18260 4 | -------------------------------------------------------------------------------- /include/google/protobuf/duration.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa9c4fd9b12d8e20f1c729477f339dc9b57c0fb01b27195272b2cbff35084013 3 | size 16962 4 | -------------------------------------------------------------------------------- /include/google/protobuf/duration.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d5dc1c05a9fa98975ee2a1aa37bfe3e03f6e8ead4a223d8b2bff55c34bbacce 3 | size 8026 4 | -------------------------------------------------------------------------------- /include/google/protobuf/duration.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61b629cd00acd10da73bbe53d39ddd26efaea6006b12a50db5415390e5480e28 3 | size 5007 4 | -------------------------------------------------------------------------------- /include/google/protobuf/dynamic_message.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c58152aee50ac0964086ca13eca51255fa50800f3c92fbeb49e09cb58a59e891 3 | size 32711 4 | -------------------------------------------------------------------------------- /include/google/protobuf/dynamic_message.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03ce4a6ad60fbc9616e0797203e10bc7f30c3d8f629e468d16b089b2a36e3cab 3 | size 10289 4 | -------------------------------------------------------------------------------- /include/google/protobuf/empty.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:95d204a3b2b401a51102fcf7646436fdbd3e2f0627293899c861c195c97f9634 3 | size 12808 4 | -------------------------------------------------------------------------------- /include/google/protobuf/empty.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6448955954d484a37d8cbd9490aa17910cb4245beb3c056646f851c2be88b50c 3 | size 6609 4 | -------------------------------------------------------------------------------- /include/google/protobuf/empty.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da85aca9c8469cb9244cac17d7a6737257ca0a2bfd63723f93ff8e9895f2aa5c 3 | size 2474 4 | -------------------------------------------------------------------------------- /include/google/protobuf/extension_set.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be9fe3fa49a5b20789dcd8ab4c7d06384898aee4b8f8680b5d19febc995b884e 3 | size 75082 4 | -------------------------------------------------------------------------------- /include/google/protobuf/extension_set.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a23c4066531c84d115559eaecafb351fbaedb36d135c97cd058d0a7b0d730159 3 | size 69690 4 | -------------------------------------------------------------------------------- /include/google/protobuf/extension_set_heavy.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:825b332391c79f64dda6f57123e05270e9e6428ea39ec0d53db6ad709f93ade9 3 | size 31655 4 | -------------------------------------------------------------------------------- /include/google/protobuf/field_mask.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49248aee7243f39e839ab1df81ea6b9b765ae7303ccea65ba73da7445b2e3319 3 | size 17101 4 | -------------------------------------------------------------------------------- /include/google/protobuf/field_mask.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1902cc8af273fb90158b3d78b421c5c3054bd7f5f276bf210fcca60bd5886d1 3 | size 9789 4 | -------------------------------------------------------------------------------- /include/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d4124e4cd9b048ff0a84fc2afeeae4da2404369cb8f5da87eeb5bc523ce00854 3 | size 8181 4 | -------------------------------------------------------------------------------- /include/google/protobuf/generated_enum_util.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c99be2a61372cf4dd8acc6555ba79caa172f73952ac6ff0b8ce23a30dc77003b 3 | size 2171 4 | -------------------------------------------------------------------------------- /include/google/protobuf/has_bits.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:01cea412833bb1b149a34e713e414d1bfe0222da518f00a28aa845a5973f7f4c 3 | size 3426 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/coded_stream.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfaef3d8ed5862e191f3915ad76d865a0dbf08ad6ab8c9b8a3f9a76317a17eec 3 | size 26482 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/coded_stream.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7edfc9f602e91eb9550c1a4a476e61e7c38e4b97b87607e899694ec44c83d9bc 3 | size 60495 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/coded_stream_inl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27fd50add02f6f95def60d8818a27ed07fe5dfbed33499361cc0c72371abd908 3 | size 3678 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/gzip_stream.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7a5454d1b541be09a495cf3b34e7170b603457de8cd1e6602c55a9bb7d9e5fb 3 | size 10693 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/gzip_stream.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:14ad0116e5d4093849c55e474e9abaf2aaae7b2571c462ab7ba86ba19e101c8d 3 | size 6788 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/package_info.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:684e7a94c281f56a301ff87be5beb1d530206bd1fc8abff550f50cfa76a725e2 3 | size 2596 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/printer.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21b6e8bbd1abe36b645e08baf3c3cad0495036f5653b19f15c9eaa5c670e2112 3 | size 13286 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:80702e2522d2cb95fba56c843de6526c1237e4ccd8935d6aa2dcff6a575fe792 3 | size 17348 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/printer_unittest.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10f3a10624c246c7df5d013090c87f7a3cb7805cb8da0d6cbb33975a745791f7 3 | size 20356 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/strtod.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a0aab729fd7655d7deb32d03d823be12eb98b7880b8412112765e7c3d78b01a5 3 | size 5089 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/strtod.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11dac770b91e4ca825e5dcbc119a81605b04724507535aabd3a71934119c5244 3 | size 2486 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/tokenizer.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e2688c65b6653a6f811412b65f1ccb854b9b95aa6a237bd57aa8cf0002eacb1 3 | size 38906 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:308dc3dbb06ef96769eaa53c6f77f32bc139d66ea6a4483ab01a1e7b7005f31b 3 | size 17009 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/zero_copy_stream.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa81ee5693fac3bcde45e0d7dc7182fb00ad25e4e21447ac6cca5ea034b8ad2b 3 | size 2447 4 | -------------------------------------------------------------------------------- /include/google/protobuf/io/zero_copy_stream.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8cbf8604009dcc6f856432fef4d6c2e1ee061ce0d1d497955862919bca147e6c 3 | size 10423 4 | -------------------------------------------------------------------------------- /include/google/protobuf/lite_arena_unittest.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10d14c0ccaa7f89939757784f600538e95e329d6e526625a364eea301af63441 3 | size 3501 4 | -------------------------------------------------------------------------------- /include/google/protobuf/lite_unittest.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d913373f4a5562ef192a3c019da97687cf3b769dbfdbc96c764696e264b8f2fb 3 | size 33484 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:87aedf658a3c3ba25788859adf4c77a8114b0b64860d52113ddf9a6e3ccc660c 3 | size 44170 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_entry.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86151682d6023fa9b0802334b06ead5db1c877b507293d9afcc00895b74f527a 3 | size 8337 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_entry_lite.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:466b13c139d03098d9ff67c2c41faa19da9f160b4de80b24232c53c585fca00c 3 | size 27210 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_field.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:746333c0e1755703c9b271122997626bc77f5e405474082d22847d3a415aeede 3 | size 17887 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_field.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e7391ed6ca91441a0b7dfd954b38af89fc780327dea674c8ba44c35fb87c5e7e 3 | size 30678 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_field_inl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e71e712fe698445defead191378707c7412a02fe80ce3840201a1ca22977de34 3 | size 14033 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_field_lite.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e36725f1261b2e220e3a6220e3a865b695735566fe580c2bb845f4b675583860 3 | size 5024 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_field_test.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:465d3a7e64e4ffc9f80bcd6ce65e116cf0e25a4c9b0c3404537d21f1301e25aa 3 | size 15099 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_lite_test_util.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:35fe14d4306fb675d7f7058b5fd8def938f7c559e151bc588a17ca2f4aa63658 3 | size 4196 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_lite_test_util.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c0d3cabac8a659c59984f3319100f0d9f0e7e47d50ee962d998b35c6316500f 3 | size 3595 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_lite_unittest.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42e0fad92b37b1e310b1f72543e80f71736ce6beb5b8eab958a66b5ceab47af0 3 | size 5149 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_test.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5ecf32453e81e6d4b99bc9f22d72030cfa2a055025a13fd5d71df236dd6e720 3 | size 121431 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_test_util.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1cc92b3bc3825ba7d8b2fb8d8e4fb5fe763f60107b0bb80f9c63ddf7f837c503 3 | size 80008 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_test_util.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3497560ed7d1d73bed6fc9722b0b6b10610786cb889c1311e712e9eb2ec6e33d 3 | size 7464 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_test_util_impl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b615e4914fb12f76c4c4bd0a03caf94fa3e6d48112cf566b4144fc4a3bd760f 3 | size 23237 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_type_handler.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6306c34dd54e6c0cd00677528138f61f38c0f298afabe6e213988d4b72a80de 3 | size 38602 4 | -------------------------------------------------------------------------------- /include/google/protobuf/map_unittest.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e38a676fdad1b0d4c1c8ccf0fbc0995a9e349947ea54d8c908a8fd9572b124aa 3 | size 5251 4 | -------------------------------------------------------------------------------- /include/google/protobuf/message.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f8dda75246a5de1422fa64a6357363f9fca72c1ffb19bd13fbf3bf7e7d2c8c41 3 | size 18068 4 | -------------------------------------------------------------------------------- /include/google/protobuf/message.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66ad2a698da0d0fb6583480875fc6e0b58e635d9b2b1ad11efad4d7c0e89a4e0 3 | size 54797 4 | -------------------------------------------------------------------------------- /include/google/protobuf/message_lite.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0cce7d57ef49ab0202307259fef21a122747131483ae869076a074d247a34db7 3 | size 15566 4 | -------------------------------------------------------------------------------- /include/google/protobuf/message_lite.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07f5bb04ad87e3b60eae7013b02bebcbf65a6bfdfed545ddfe59ace77edd5159 3 | size 19415 4 | -------------------------------------------------------------------------------- /include/google/protobuf/message_unittest.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7779cc8ba726410d8e7049ab7a6c8fffa965d87dcc0a27633582b36fb8ef008 3 | size 19540 4 | -------------------------------------------------------------------------------- /include/google/protobuf/metadata.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dae7ad5f114d1bc99998245b2e2d1068906859e2901bf1fe02f5bd5e83ba0745 3 | size 3188 4 | -------------------------------------------------------------------------------- /include/google/protobuf/metadata_lite.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5ce588ea95141228533827d0e77a102f1ae6f2c37d4ee71c13bd72475e043ce 3 | size 7071 4 | -------------------------------------------------------------------------------- /include/google/protobuf/package_info.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:97803b94bb38e2e8266786a69fc79912204f1fcaa3fbbf677648564396697e60 3 | size 3222 4 | -------------------------------------------------------------------------------- /include/google/protobuf/proto3_lite_unittest.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:caeea4162662bb5a0c01b0c2bef378792a654eac1bb9b459263eaca9c18abf93 3 | size 5809 4 | -------------------------------------------------------------------------------- /include/google/protobuf/reflection.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b678f72aa29852806bf9844eed0f6a2ef14fbd2644280cee12b71aa65ab3b44 3 | size 23132 4 | -------------------------------------------------------------------------------- /include/google/protobuf/reflection_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6295c069e329630fca374ee29f095a6dde35f800187da675978901249f7cc4ed 3 | size 15122 4 | -------------------------------------------------------------------------------- /include/google/protobuf/reflection_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84f3be6355611183c49493d43b8f804bda4939cab0bf3093091359d4516977c6 3 | size 10527 4 | -------------------------------------------------------------------------------- /include/google/protobuf/reflection_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7872282f8511b70d2545a2c2cd01b33accabce4808a72821de129cbc87f273a 3 | size 3617 4 | -------------------------------------------------------------------------------- /include/google/protobuf/repeated_field.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e277d051eefbdc22e7dff5122f4c41fe8648f7b0975d421ccf5685ebb46e8c3a 3 | size 4417 4 | -------------------------------------------------------------------------------- /include/google/protobuf/repeated_field.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09a15920e3c75826f5b1dd9853ad259643064b4a7b4b6b53fd0f5318a9de0203 3 | size 93276 4 | -------------------------------------------------------------------------------- /include/google/protobuf/service.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7de0a7b9c37d86095babd741c685e1054fb391133f43d76608e006761a1ed7ec 3 | size 2060 4 | -------------------------------------------------------------------------------- /include/google/protobuf/service.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84790648783f93a00c39a84c9a96987fb9f6f8486e2e3795839e2602e32216ec 3 | size 13429 4 | -------------------------------------------------------------------------------- /include/google/protobuf/source_context.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fbfad3baa1ae4baa5a85a756a47dd4fb9513c515a242995ef73626386449a811 3 | size 17628 4 | -------------------------------------------------------------------------------- /include/google/protobuf/source_context.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:acc7a4401d81b6678b2f4bf32af64f43867a39768276333cfb66cc681206d182 3 | size 9236 4 | -------------------------------------------------------------------------------- /include/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:68abe7c38ddb2c5206554084b96658279a1e34b5f56c594881357d74bcd5ff22 3 | size 2400 4 | -------------------------------------------------------------------------------- /include/google/protobuf/struct.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b004360d048be3b74e76a713c662e57a35864531bb7a45b20aed62f622c841f8 3 | size 69829 4 | -------------------------------------------------------------------------------- /include/google/protobuf/struct.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e3b8b9b5341afaee555d469545d8bd7369bda658bc07a2fc1b14e446e6d87307 3 | size 38596 4 | -------------------------------------------------------------------------------- /include/google/protobuf/struct.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0d1906b357d4368297c0bd2e029b695ce8c434a07b0f8cff77f66a3380d749a 3 | size 3877 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/atomicops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:798620f0bc6e71b2d04092e9e647d035e3a8d572119c1c4acce5c179ebec32e8 3 | size 11099 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/bytestream.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e73c9532726b1ae671d7a7fcc900dd49cb191f63ade6409db7e304de76628a82 3 | size 6124 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/bytestream.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b2de5cd84a420ddc2b7709ecef4ca09ad33835a7ae5e661882d668503459395 3 | size 11957 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/callback.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a29d6c4199faee341f1bb5317e7013a840bffa83f5dbd661aba59f0ccf6cf568 3 | size 17301 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/casts.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:77adbc59597ac59f7c1542c2020123b046410f587fc6b45a9f27c68e653deac0 3 | size 5830 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/common.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:216659776418734b1f5fd6d5ac9b72360126595515093ecbac0042bd70de8b81 3 | size 15455 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:549726515d9c9b33544f84fc9bab6d209a775ecfd0399d535c083528dbf86d75 3 | size 9245 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/fastmem.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:51ee8b300eae05aec26b3a985028b1aeb38664d4f66cf70d2590fdcb012c8b6d 3 | size 6083 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f609b831d178069b6f1d464dd678b0116910e3c47303bb555c8753cf7501951 3 | size 15594 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/int128.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac9c4ed1032f73dc4be91388f20d7acd9302c1c4007986ac21653bc9b02d5522 3 | size 6973 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/int128.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0696669f2f936644fb23245a74076ced78c79451b8684a086e2a0ab57706f17b 3 | size 12288 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/io_win32.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8532e42338eac2f21adb2575da928b2e6ce552c1598c450342ec625311db8efd 3 | size 10822 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/io_win32.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a2b347cd3cc63996bebaa318ba2809d8ef91e7fd6cd605097b1c379bdd641842 3 | size 4098 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/logging.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0cd86f514486f87d42c42caec471ccfea2b77108e421e31137b25b4a59d28fbf 3 | size 9147 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/macros.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3f07defe07d75c14bad11cf93cadfa52d2a46dfc7677f2c5e2cf5980fc4aa71 3 | size 6793 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/map_util.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4eadabca144023b9cc8c27a8add3207cc6d2bd4a5659bcb109818d74bab05103 3 | size 31946 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/mathlimits.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2efaf44b8cf6f202dc57262f027c0085f2ad41c0a3c7c1144170cf6dbc75031c 3 | size 6141 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/mathlimits.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:505d2a8ecc98ae0829be2f91185668e3d8acd61065c1a96b96e981c968656043 3 | size 11871 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/mathutil.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9746174cb623b880483baa55b0b5c42b3520b25ec6d0a32c41a5aedc41f12de8 3 | size 5569 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/mutex.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1d4154a7a0407b706aa1c6beb5b6d1211b64f3bf9e13f4198912bd70b652cb7 3 | size 4676 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/once.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4dfaa3a3e27c2123957b2332f849309c0d042524234d2675b7466eb2b1356c34 3 | size 3688 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:78a4ef954e83390335155b1bf493cf87efa8f2c1bf02db31d0ba98cd2acab5a5 3 | size 6315 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/once_unittest.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c83643e74edeafe9c349f5750f3de4b660a56dd5f91ed2c94a2568b3a156aa58 3 | size 7000 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/platform_macros.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d49133ffa80d08f886767e102ff15412fd7cff7b2ef73bf1ae8e4a9c8c902299 3 | size 4935 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/port.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f81ab5fc867ae1f6358a6884a21173dcc7d8d2074cbe773508ac7c949039ada6 3 | size 15490 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/scoped_ptr.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85df94c6e4ea81adb4076234f53e7c6cf5a9aa5b343f4ae07ee58876fa1bcb04 3 | size 8139 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/shared_ptr.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a066697d0b0188cf60f19ef110766bd88c63e2373cbf5d89ed36cf06fbbb4e04 3 | size 16682 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/singleton.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31f77a048515a4052320dea3ab39a07d85635d1ac4f161bdeac36d9ea7b703b9 3 | size 2582 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/status.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a0490f9de0062d4e584e3147650a04a4058151be76154e5f651b337e03175454 3 | size 4311 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/status.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c3c5583baaaddcd4d85bf907b8e8078af8b3937dfb59f372940e3b0914adffaa 3 | size 3898 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/status_macros.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02aba8e7ded57c43a6e5bbbe5e682ab3bd477a484ec330ac7b4ab92e5c7d5a5a 3 | size 3717 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/status_test.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa18a61aec0518abfb813f2f75d3c41a3ad50eb8f4e0a9041b0f37804f341d7e 3 | size 4649 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/statusor.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5fea27e979d3271877218c98552f8ecf15f56941c1174e420a2e193be7346c4 3 | size 2098 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/statusor.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8402d503d11cde550debaf7680917a6344d42ef3be61494eeec9f62f609b8c2 3 | size 8532 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/statusor_test.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:18e856aa767223a0de965e8e04470c0c8ef8441fbf1d86c8f6c4569cdd707ebe 3 | size 8095 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/stl_util.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:70ca9616675393c683f95c9dcd056831b799516f1fd17b1e5d813e941853e594 3 | size 5311 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/stringpiece.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7250e70151fe560d1de44eb2b421c86a480cb5d7c95ac552f6c56011b732b3d1 3 | size 9404 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/stringpiece.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e59649488d2f14c3629c8a5fe8facfb50fa62aaf72923dc1456283cf44a20d19 3 | size 18148 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/stringprintf.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:afc135cf2dd7d6abb3ee8813e430c1b4333c827970a2b0d23d5db873b1a5a1db 3 | size 6335 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/stringprintf.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2e24f7909675e8ab9a934487df707b89085ec2e2fb62d224329ed7d4577e4158 3 | size 3384 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/strutil.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:54427407db3049e6f0cea88f77f365458027fbf147cf0a4482bb06354705d169 3 | size 83846 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/strutil.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:20bc212c87f89f950616e5de036e690ed9fab5bedcfdba25e99c66e4f9ba03d3 3 | size 37234 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/substitute.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b30f1e0b88b8c273dfc51224632e0e35d985f67e0f04b5dd94c38931ff94bfc4 3 | size 5144 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/substitute.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c05146801ab06a675bbd26fc912b24a8acb6cbf2994c65c46c4d4d96f7c810d4 3 | size 7784 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/template_util.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea5048e418a4dbae6b4373bcecd79e8fcd56fbe5baec81823d1e1ca4530ccc47 3 | size 4972 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/time.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84c20dedc48342ae801c99c74e114fdc44bd5ade091102d444447d8d348e9bc8 3 | size 10496 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/time.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83c6193c8dcdc644a8d983439c7f3468a894718c97f235f6482a2cab48a8770e 3 | size 3321 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/time_test.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:211cb1c1228052c7311e7c5e4324215b1dc3361ddbfa6dda5b5f91f05dc36c4a 3 | size 8182 4 | -------------------------------------------------------------------------------- /include/google/protobuf/stubs/type_traits.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63986a077d646bc4a55c26c20995334bfbc196e555e23c3c863b727cdea60dc1 3 | size 15978 4 | -------------------------------------------------------------------------------- /include/google/protobuf/test_util.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e82a9e9ce4e51541a37345242222abfcc8fccb65e3ce6a46c3fd35b382c81e8 3 | size 187397 4 | -------------------------------------------------------------------------------- /include/google/protobuf/test_util.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d89772c46a68e517cffbb117fa212ec3d712a3237d4046492f9f87c9c69cf81 3 | size 9792 4 | -------------------------------------------------------------------------------- /include/google/protobuf/test_util_lite.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69825664d141718fbd1f4cd80464b6bf86dc707c69a4bb0613ce8823be73b27f 3 | size 92933 4 | -------------------------------------------------------------------------------- /include/google/protobuf/test_util_lite.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45419204dece8303c6dc3c073a3d0aa2187b1891b05d9dbb611c7a39a1aa00c1 3 | size 4614 4 | -------------------------------------------------------------------------------- /include/google/protobuf/testdata/bad_utf8_string: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44a8218d7fa1e5cf262b5b497454b8483998fa085af05eab402738f9027b6834 3 | size 3 4 | -------------------------------------------------------------------------------- /include/google/protobuf/testdata/golden_message: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c88697963d270731eb18111e04d9a5affc4286449b58800a09c315946b9101e2 3 | size 531 4 | -------------------------------------------------------------------------------- /include/google/protobuf/testing/file.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2cf5dc2b665cbfa2a59c0eae2f8e367996dd289a301c04f3486a05557e9b994b 3 | size 6878 4 | -------------------------------------------------------------------------------- /include/google/protobuf/testing/file.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34e9103e788b3207f68d42f2706df592718d32d3f1c4b163923052205af27b3b 3 | size 4063 4 | -------------------------------------------------------------------------------- /include/google/protobuf/testing/googletest.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f78d5b7c561708f7707c6ad7b1f6b155e1511015e66e4d5d6f6a863b8e14b175 3 | size 9667 4 | -------------------------------------------------------------------------------- /include/google/protobuf/testing/googletest.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57c625331e4e1a79756ae489e6eefe5b8222a67c94e9b1b66102379eb1335ca5 3 | size 4067 4 | -------------------------------------------------------------------------------- /include/google/protobuf/testing/zcgunzip.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c18c72693be45d511cd3e5f0c9a00a6978c2f75889dec4a907452ee8ed2c19b6 3 | size 2863 4 | -------------------------------------------------------------------------------- /include/google/protobuf/testing/zcgzip.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08c9d4a644086c2698d9e87e7878021dced9a6db58bb3c6dfc7263ba394e3516 3 | size 2995 4 | -------------------------------------------------------------------------------- /include/google/protobuf/text_format.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a384e3e05d97cfd35a586b2d7d0738c6a5c8be5b624152cceb525e356d8e415 3 | size 78472 4 | -------------------------------------------------------------------------------- /include/google/protobuf/text_format.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4c30669ad70829bb873bd2619d6b83bafe212d7f512b11a6714271dd3745234 3 | size 24549 4 | -------------------------------------------------------------------------------- /include/google/protobuf/timestamp.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b455e36f22340d6312431385fd6b9d16e5bea8cee4cfaa0853002e8f7e5e99f 3 | size 17065 4 | -------------------------------------------------------------------------------- /include/google/protobuf/timestamp.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1221eece86d4f70d1f729bc5844a2794b28a84f45b90c9b4cb6bf5c55d82b406 3 | size 8076 4 | -------------------------------------------------------------------------------- /include/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53ac935e22b724526b118105637a50ff7533eae3ca5fa4512107136b6eebc1b5 3 | size 6111 4 | -------------------------------------------------------------------------------- /include/google/protobuf/type.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7db93d47e1c8f0b3df05d0464477e1f8284aced1890dd4687edde0cca7a5e63b 3 | size 148410 4 | -------------------------------------------------------------------------------- /include/google/protobuf/type.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c67c6f2b47bd49c97869a75376c92023522ef894de65185486ac6e09e75972f9 3 | size 86787 4 | -------------------------------------------------------------------------------- /include/google/protobuf/type.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ac9f4e7b325995dab54e3d509d6c3453ed97d8602056ce257308468fc40a5be 3 | size 6470 4 | -------------------------------------------------------------------------------- /include/google/protobuf/unittest.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1292dc34225035ef8cf01692a55da39be1e874e0e93eaa6af91f2bc057dbf07f 3 | size 34706 4 | -------------------------------------------------------------------------------- /include/google/protobuf/unittest_arena.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11fb3ce4c19b6c83c5aa0a6ba8013756f92c3970e19d9f9547c5871d336d2db6 3 | size 2058 4 | -------------------------------------------------------------------------------- /include/google/protobuf/unittest_empty.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3469488010318a0b336db3527a4eb2736a3e4c1aebb4c0ac91f6093100997ae0 3 | size 1949 4 | -------------------------------------------------------------------------------- /include/google/protobuf/unittest_import.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dbc17b76d0e09e9b41e8a10e0fee8d4eb20e2e91ca1b25a36b1562562e805e47 3 | size 2816 4 | -------------------------------------------------------------------------------- /include/google/protobuf/unittest_lite.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2628e6c866c5d2ac724527c5ec5fd550814c55c7e248ec434952878a977b499b 3 | size 18586 4 | -------------------------------------------------------------------------------- /include/google/protobuf/unittest_mset.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6b3e7b63f76569d9a21b724b7a277acfb86e29b529c3048ceb183be51201739 3 | size 3247 4 | -------------------------------------------------------------------------------- /include/google/protobuf/unittest_no_arena.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75761ab9a8e6e71379bd05da78f61625714e7fba634b64b147f40e9b4a451adb 3 | size 8614 4 | -------------------------------------------------------------------------------- /include/google/protobuf/unittest_proto3.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f424f35a57bf4e30926b38a9298e54f5996b0fecf1d0ee0bbae6dfe8ae29225 3 | size 8122 4 | -------------------------------------------------------------------------------- /include/google/protobuf/unknown_field_set.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce0f7b03ebf7460c9753013be1e16c1baf2271070b8ae110c2eac0536ac732ec 3 | size 11463 4 | -------------------------------------------------------------------------------- /include/google/protobuf/unknown_field_set.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:abca64807330f288626e92c8f8cba0dfc3d836dd91f874344d2a13f8ab61fc5e 3 | size 13036 4 | -------------------------------------------------------------------------------- /include/google/protobuf/util/field_mask_util.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:212425ee219c0138fa2ef089f09fac5581b754943b4df62e1c6b741c18a5ab43 3 | size 10010 4 | -------------------------------------------------------------------------------- /include/google/protobuf/util/internal/utility.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e2f6dc34fca52d571b8fee6b3f42ac6cf2c35f4db72d7cc0ef72c9e92c9c4fc 3 | size 8702 4 | -------------------------------------------------------------------------------- /include/google/protobuf/util/json_util.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65314bbf4a78a34ff1f58d980c20846f93eb6a96c93313648aef8aa4b76812e4 3 | size 10498 4 | -------------------------------------------------------------------------------- /include/google/protobuf/util/json_util.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38b662dffb6dfee1dd85ca6343e2a054492aa8fc7c94128a29b4e700f05127e1 3 | size 7960 4 | -------------------------------------------------------------------------------- /include/google/protobuf/util/json_util_test.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be542fc56f04280bc45cbb2c4aa54d4d9482e426875b29a1e575e4a72d145673 3 | size 16903 4 | -------------------------------------------------------------------------------- /include/google/protobuf/util/package_info.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b923828973590b3a6e249b0ba1a8edca9fd35720d2ae94703b3b44aeb0f9619 3 | size 2126 4 | -------------------------------------------------------------------------------- /include/google/protobuf/util/time_util.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8d568859867a1c2d903295c0413b5c4df5d0f471c6931725e5586c8bebde1b97 3 | size 17023 4 | -------------------------------------------------------------------------------- /include/google/protobuf/util/time_util.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7234b694348b93234d7f10f4505783274e24a797c2f33aec928b50d6086fee1d 3 | size 11998 4 | -------------------------------------------------------------------------------- /include/google/protobuf/util/time_util_test.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a8aea19257aa63611f52939b2bfd1863de135843bf8f73c2aa05faa4dc366f9 3 | size 16385 4 | -------------------------------------------------------------------------------- /include/google/protobuf/util/type_resolver.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7567522084d27f7a7f523d672ebedf840426cbd22aef7e35b7851d25f824d784 3 | size 2875 4 | -------------------------------------------------------------------------------- /include/google/protobuf/wire_format.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8badcd7e5c0cb55b4ce6bc8d01bb2c4c6a58a89088b311d368d63f45de68e916 3 | size 56411 4 | -------------------------------------------------------------------------------- /include/google/protobuf/wire_format.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4648743d2f63c61c934951d7366dd68a09083249a5e3f4308f86330fceb7e3d7 3 | size 14208 4 | -------------------------------------------------------------------------------- /include/google/protobuf/wire_format_lite.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba02f1565afddc23edbd3ab0fbb2d3c7b5732cced734b4dbaa3966b848a444a9 3 | size 28065 4 | -------------------------------------------------------------------------------- /include/google/protobuf/wire_format_lite.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:151377a8316d660513bd42daa11bba96455f5c5bf99d59722b734c5c504be083 3 | size 41752 4 | -------------------------------------------------------------------------------- /include/google/protobuf/wire_format_lite_inl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83e5fc4c76f8ea7abeb6dd96b18cb52ab5324b99c86be2c76f34996465b8238d 3 | size 46435 4 | -------------------------------------------------------------------------------- /include/google/protobuf/wrappers.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c05514f0258ad6914c65ee2670d746e76c6b40492087b0e9a3cf658cfc834d60 3 | size 109608 4 | -------------------------------------------------------------------------------- /include/google/protobuf/wrappers.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a9eab14647bdd4495059827010d856e930f457a1e1052eb7ba3bf3d6637125f 3 | size 51202 4 | -------------------------------------------------------------------------------- /include/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc1453eb33c91da4228fdb73aa890aba9980bdc1274ad66a0477ef90bd79e73e 3 | size 3863 4 | -------------------------------------------------------------------------------- /include/libprotobuf-lite.map: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecd8b0a9ee629d2c44d2c931a0fa1dd973fbe614ab40a8779caff01c6ab552cf 3 | size 83 4 | -------------------------------------------------------------------------------- /include/libprotobuf.map: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecd8b0a9ee629d2c44d2c931a0fa1dd973fbe614ab40a8779caff01c6ab552cf 3 | size 83 4 | -------------------------------------------------------------------------------- /include/libprotoc.map: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecd8b0a9ee629d2c44d2c931a0fa1dd973fbe614ab40a8779caff01c6ab552cf 3 | size 83 4 | -------------------------------------------------------------------------------- /include/nsync.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7093279bb751ff3b023cc1017ade7e1db40319d40c94697968fc00f5c717f29 3 | size 894 4 | -------------------------------------------------------------------------------- /include/nsync_atomic.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:819de4e976d7f3eea425508a2db98207ca53d77dad542946c0314c9618576393 3 | size 2227 4 | -------------------------------------------------------------------------------- /include/nsync_counter.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dce3e6584be2930c268ab6f4d030baf55abbe0202cb6df5115a5563f476e5957 3 | size 2298 4 | -------------------------------------------------------------------------------- /include/nsync_cpp.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:28d5e698a0125373b759f169ee00d73122e7254623fc41f81391b0e886b9b0d2 3 | size 1610 4 | -------------------------------------------------------------------------------- /include/nsync_cv.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a327a545d0730639d1412dbfefb3e32fc698a5249fddda2155f825e0dc312c41 3 | size 6988 4 | -------------------------------------------------------------------------------- /include/nsync_debug.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6fa48012225c261522dc5dd7066c3d6b2842266e503de4410dc904433da6f60c 3 | size 2382 4 | -------------------------------------------------------------------------------- /include/nsync_mu.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:367a77bc76be47b0d4314446d43d761ef6edd41c33634dba7c80ae043ac3bb26 3 | size 4394 4 | -------------------------------------------------------------------------------- /include/nsync_mu_wait.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45baef4b971a05513bb15c4e0b2e7ba739aaf9c602de9c0e3c9c84934a6da163 3 | size 5710 4 | -------------------------------------------------------------------------------- /include/nsync_note.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f28df31abc9bb2cdde587a2585a42081f15b18d87608415bec37cec9b094023f 3 | size 2706 4 | -------------------------------------------------------------------------------- /include/nsync_once.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:317dc0b0da1c313508ce35954e08bfa9d735f1a758264a3cea7cfe3fd0e539d1 3 | size 2110 4 | -------------------------------------------------------------------------------- /include/nsync_time.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:932e69661c713309bb90e6567cc0b5c7922f5a9c755df0ef65e8de7c5a8304c7 3 | size 2316 4 | -------------------------------------------------------------------------------- /include/nsync_time_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5eb68d2d9f52dce637bd87e56ba6145598757d1411740a5cc2aa20fbc044647c 3 | size 6848 4 | -------------------------------------------------------------------------------- /include/nsync_waiter.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab449c7bc913a8801e865830532d0802f22758670ee91fdf642bb1075a7fe07f 3 | size 6004 4 | -------------------------------------------------------------------------------- /include/signature_of_eigen3_matrix_library: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53d918103d7e49332302666ecd19c69f413f94ac06f037f20e13dcf2160554bf 3 | size 216 4 | -------------------------------------------------------------------------------- /include/solaris/libstdc++.la: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4001ded95b213f9a331192e7098b017105ba8219426b9b9b3fe9efbafd2f3533 3 | size 1568 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/array_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e11c9085dc04d6b7b8f917c9381fff795ab2c30a148bbab4f475e494778c9b3a 3 | size 93899 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/array_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c4c283320a76fc83aa75aaeb998e90498f3965d812cfed518305cad0437da43b 3 | size 169723 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/array_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e43be1a173895a7a0ac2cff3825ca32ebda10ce692b03a8f32bcd0b21e36b9b 3 | size 3184 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/array_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef14ba554d0370d8e710f90fe1faa4df9068ad5f4f6dbdc42baf79f5cf264929 3 | size 3432 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/audio_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:552d36fbdbcf899280ea0cc55284f9ff632f6c04e4da5bf1759e8897ec979fa3 3 | size 5037 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/audio_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ea1cb32c044d27d74eeb374a48ab6bb1a99c2175dba4d4e8b1f0f6d032ccc27 3 | size 10734 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/audio_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:603aa4f6bbd77017a367c5e1d2d412efa2c03064ef20eab7b93b3309772cb65b 3 | size 459 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/audio_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b61faec2005b7924fd17ae84ec034c850910127d240b14d60b53248606e9cb9c 3 | size 1062 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/bitwise_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:433aa2793bcddb30c68cd791f21962fdb269fc140cb24cfce1d5425b60f88aff 3 | size 5256 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/bitwise_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f636a49775fb55dae931e3b3c8278df4c0e8078a3eee27585760c6ce237a83cd 3 | size 5537 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/checkpoint_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f882832e89f7d74f943eb3de226aeeaa6feaed926a723e0d117a81b442a8dcfc 3 | size 5434 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/checkpoint_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a5dcb42728c1083778725516165fc625cc94f5a8682e6b88b8c3c0c72e6290ab 3 | size 9765 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/control_flow_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58dc55b42924e47d51ea895e32da15ce409152a405472931f9f640abda4c8b0a 3 | size 7373 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/control_flow_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e7ca40ac4d9320c226634b3f8fb13d0f791423d8d1612fc92a8fdaee551f282 3 | size 7539 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/ctc_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d3ae3a71b8250154313485f8ff584392f5092b6ca7ee4bab211a7917a36286d 3 | size 6801 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/ctc_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba5073f8d21b1a083af93f915827b71612120bde2f71544577dcc2d3d9423cdf 3 | size 9519 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/ctc_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f881e3605873340dd21a0e51a97839cbf113b67a364deb2f3154d0c68cc61682 3 | size 457 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/ctc_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c40e21173b0734946bb889f9bf36c55f6034729d0c6d407792d928dc1958658 3 | size 1052 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/data_flow_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:62ee5f1aa0074f005d3e1213d47527071d6920b7f78f789feecb183ebd5b2039 3 | size 77475 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/data_flow_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e093a663c4f258ca906fa189a41418049e1cc888422b4acfd0ddcc08fbeb7da9 3 | size 117073 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/dataset_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:925f119cc3767448d892b6b02bf2c34cde0b8cab795e53ae4672a65630c62ad9 3 | size 61066 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/dataset_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e8dee6269ee8b6904cece65049e9aee262d317d848163200d247451615326760 3 | size 46075 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/functional_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af996cd550009f184a7efc7accb5b0cc9c87512c5ae41e7d45f5c33a3cae40f5 3 | size 2214 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/functional_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07aa1baecb77031492599475c126a6dc1e01eee685811e8e7774efb1ee4752de 3 | size 2988 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/image_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4c73c878726a4e4b012558a96d45d3eab36d5c4f77b3313c363fd92e8c8c1f6b 3 | size 37556 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/image_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f46b0762cf982f25a5ed7122c12b55ec4701cef6b9a397e0237b0ef40b1af8db 3 | size 72255 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/image_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:05005f464e4da92a3d6e08941cd9364ff7b173d19f4c078a3af7dffa7728e70d 3 | size 4731 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/image_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:76a563b86b173a83ee21171c8558368ff7cebb3f65ec1661865000e78514f44b 3 | size 6769 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/io_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a0b711fe4361ed5b94ab753b8218bc455223ab6be7576aceafc8dbcb5241dc3 3 | size 25453 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/io_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c6c188b26a64d9b7d984390e09bc6a305e975d3af28727d25c6b051b5f6698a 3 | size 33649 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/io_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:30e1af96821832d71a94dfb3ef09ad90e88bea44421d0d4c52753aa7d195229e 3 | size 456 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/io_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:405592e10fd5a2516c79236d16378ab1d1542d1762fedac8426e70887eb1e5dd 3 | size 1047 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/linalg_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73e6182af7e39de2c6ab641f1c28aae735084be349094bf55eeaff359980d748 3 | size 12559 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/linalg_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e71a1e77c23dc9d9801f5261c39c57d008fa960db9cb3dd4f1bd79729961de4 3 | size 22036 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/linalg_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f19b61ef2164c1689bc1cf41f893e4655834cdd92dd0b3520b250f4dccff59ec 3 | size 460 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/linalg_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecd30c05eed8e55a860550549fef542fd818aebf49a1f1dd691ed04be7a34243 3 | size 1067 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/logging_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa8e9f80914796338ae2312aac7d57d0fc524c7cea22aac3b0cc483997087d86 3 | size 9608 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/logging_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a623c1f82840dd540cefde47bb50d441cf21789a0903cb035fb84c8b87a62a6d 3 | size 15387 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/lookup_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed0ba7d57cb95b6f9fd269e9a8ac0111098ba7eb5770f37ea218ffd8ec37fd16 3 | size 14614 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/lookup_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2df899fcf558628f8dc2d586f75b1ce47642b024d80bdf4bd9008649e8553f28 3 | size 19624 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/lookup_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf86e42070f4bb6f48a64be6e190230ed5665f47be47beabe349641f51a43f55 3 | size 460 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/lookup_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c9b5589a2da4ad1c94a7c7179390650c0aaac1ff251a7c2cf467e0b0a5d3d13 3 | size 1067 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/math_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:912671c0c4efad1056ab4ec0aca6fc7f22250c4e31a7db24bc3033bdf2aeb989 3 | size 102610 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/math_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38e3f2146fa25c8684e74dd9bc9604cebd20e74d2c92751a5a8ef02a1b1402cf 3 | size 115790 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/math_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fbf7a8b84c8cab55a48da9055d374f66ce70b600dd7c90c0c3aa4dc41e87e834 3 | size 4218 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/math_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5590c9c2188be98dd99e8ebca6446fcbbcbe1a2c89f51b6224bc9188ce969846 3 | size 4074 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/nn_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:470fedd0879bd1facd85e44f23691e15558f82025316e009340043ee9e6852a4 3 | size 103913 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/nn_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:121e6de397e17c2698b76012735f57165711563a1aca027cb8461d76e35932e6 3 | size 142136 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/nn_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7500ec12de6c227f009b550b0903139a61cd2b4781897acea7e80b22177ab451 3 | size 17026 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/nn_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:119003bd445ae32d72fd4f642ef1b2b40d65df53590f5616e6d7feec317e1fb8 3 | size 19703 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/no_op.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:595af24c1cc0301d2f93a8c61fc1f4f4c83a5526fec166466dbeafac2bbaf3c3 3 | size 754 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/no_op.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4418067e95a9eb318f569976aab2aea31cf50e907d8650ac3cc74445e9bc565a 3 | size 1171 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/no_op_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4aaaafde58d051fb9a4dd60e3a884c350775a6c161c1ce0e487b04bd703f7524 3 | size 455 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/no_op_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:620abbe4f13bfa2144dfe9faaf01d4d02b30e03b159a5dfab6a5b9a475f295f7 3 | size 1042 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/parsing_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee36f91c5788cea17cbc10538ae661b03122738a2918fccf7cb898f6287936c3 3 | size 19079 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/parsing_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef798288a3566b4430954c64d5616c1d64b7ee260c8f702cd6f75664936ecb0c 3 | size 25573 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/random_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a77cb2d6ff0873da0d042ccdfdfe5c0a7bd524ee77b52c534e2ee00b7d26a697 3 | size 13141 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/random_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:62b2f7acc54106d3b551155131f34e745047ede64a235274d8f644fb2e4f8ac8 3 | size 21404 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/random_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf4d436c297a390704fb76548e9ff3d52650f920d6aa677d999da15eebb32da5 3 | size 460 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/random_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df7ad6168c8f58b71d5af12429bbd067edc34b6da232daec2186d4db0a32a3f7 3 | size 1067 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/script_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:64fbbb6b33a1fc4e3f72e7c70715259889be5daf954905ecd1c190acef696493 3 | size 1172 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/script_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46ce539c27ea9022c91b157884b6b65ebdf63a2644c6fec17bed1dca62be9e0c 3 | size 1440 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/script_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a98c0364a3577d1bf580b7d118637755dd6dd83759d56ae4b43afd4b13f21ada 3 | size 460 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/script_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06013f2ee3be521333b54b42a6815f8a08f3d1d9cc4a7818ed5654a60f1dfe65 3 | size 1067 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/sdca_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb6c16e43c7eb6d5f29c6116cbe10cbf04ae8e97f36feff7760aa68e3a6c3fbe 3 | size 6944 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/sdca_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27ac9e5d7e670d32ba59184d9e82ac4034f116adbadac227d7edb1f66b7af967 3 | size 7157 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/sdca_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07f768c3a7d256fc919db4e1360ead350657a38af44c7a02802869a206b0eee0 3 | size 458 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/sdca_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:445bc927942007bd3a3e88c34295f7d213921537ac05b67c72c814c17742e133 3 | size 1057 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/sendrecv_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6983f4ecfe00204962ed58be88706f77f9f5c6f1992da983ec985972b18f556b 3 | size 5940 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/sendrecv_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d1564788185e1e9ecbe7420b5af78a9295c5b7569dcc22dae9b1776ab9affd5f 3 | size 8785 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/set_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fe101a5d7689e72de2be60af9dc2f0dcf2be47a4d8a1db001a4db3a62da1ac3c 3 | size 11480 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/set_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06a21747b4c2634288ba5b14ef913e1010900f48cf9579bb3ba8f9c7c5112b46 3 | size 11886 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/set_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d2d8fa18562dba0203316a8690ccd65d8945b064385ec28eacf4602e5ae3ea6 3 | size 457 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/set_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa6d856a019e081cdf467c3d214509c3e1d2777ac340ddcf273888683d893c7b 3 | size 1052 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/sparse_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3774c660900ac22f7e55f039b9b227b689842401e01d618b5e19e48de0374d1 3 | size 53683 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/sparse_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31f4098cba3f7a3af04d14fa21bddc0628ddb1ce09f37bbef0adecd1c03719be 3 | size 63919 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/sparse_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd7983c7ad1182a20692d72bb3b1a0d501618e03e89690a3664a10d1981d1de1 3 | size 460 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/sparse_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ea69505c90059b097b030209ceceb5c495d4484f97c4fcbe4b59d27bdd40671 3 | size 1067 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/spectral_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7ee7dd776c1693f99cbb68bc0e8754679ede8bb7cb94d0c75f93b6c7af52f42 3 | size 8538 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/spectral_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34538c3c719ea94544acb60c5a6864b89e1e724dcb11898d2a50d9c77ab61161 3 | size 15412 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/state_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b27b3102274e8fca07d799adbaebe04eb902c9b393c2a57296c99f35444ca3e0 3 | size 21188 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/state_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f8a4fe8ecf705560b685a3aaaa0e30db2358172647d7999e4f7f213883b8e197 3 | size 39160 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/state_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3ac724d265b0633e5d313390a5e444bb2ba26d613508f03625562c2d50873ba 3 | size 459 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/state_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7d4788c5ffa3abb8c7cb10bf7195cb3f85a6f04da5c9b1b3b528589dd73ac851 3 | size 1062 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/string_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e3b9b7a937d4c0e43ffcf2ccc4e5b1d75d6c7569303926752c488d04c5654605 3 | size 10183 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/string_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d317bbaeff79e46ae64557f0fccb0cb08410f7d3367d02b5dd8414a4720cdee5 3 | size 19235 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/string_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98913c5225dc1f88fa5724ffe706f6c6ce33fed2719634fb6e61eaa4ad554350 3 | size 460 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/string_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c8456bf39ba39ea5129d1dd7a89cf19365d67ad38e75dffdabbd5481957632f5 3 | size 1067 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/summary_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae0933e40ca0acf8ff4a3a7db7ea739a8a1bf1fa0918da8251164ba7816a2e62 3 | size 15789 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/summary_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6ba7f72b91571c4dd03eca205804e040d4c4aeda1c0dde5d31bdb63db88f7ff 3 | size 14639 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/training_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b9639dcc063ba2ff498db05dab85929d5bdacb2f6ef87962f4c5af327febaabb 3 | size 149659 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/training_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2881c2182095b336cb17e114133afc499242149d50e175df3d7c4e4a15b9053f 3 | size 119353 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/user_ops.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1e422516ec5fd98a0619a280cc3c126605a32480980905708efec2ba9edc1a0 3 | size 742 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/user_ops.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f69cb66e8a2d471eb231730f051fe854b2f74f13f18954eb877d2b72bd766b7 3 | size 1272 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/user_ops_internal.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02c9a6c285ba67da00da540d964594efbc4f646773ab4ee815a306713c0d3c29 3 | size 458 4 | -------------------------------------------------------------------------------- /include/tensorflow/cc/ops/user_ops_internal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c767848859ca9a999f85f19ac2f5fde4e51e2301e6c9c035eed369331d775dab 3 | size 1057 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/example/example.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1833a6655e73e6511da974f82bbb33b83e0ac08e79ffbebd63c2ecd224bfbd04 3 | size 37825 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/example/example.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:765680d0ff202d640886ee50aeb9d6652b86db8bb55b34922d197ddd222a0213 3 | size 17928 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/example/feature.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:41d016ea38a79883a6cd113fdc3837369f6142dd7b2cc57094ee5a442b5ef1f6 3 | size 115506 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/example/feature.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d26a8435d74aec15b367018d6a65a9505aafe1b9564eb36808a5f5cd279dcb54 3 | size 55615 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/framework/api_def.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea3943c0901385d776c134a75a49af6c8cc2845cea86c5426d60bbf8ab52c3ae 3 | size 87069 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/framework/graph.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c9e96ad62a28186e540510a3ffd7c485ab5578911c62fd1d04e82ae01a94b29 3 | size 27997 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/framework/graph.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2219e861b6c05788e6161bb6fdd9c0d5ae1f237fb2cc668f0415aa9d44fb63b8 3 | size 13763 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/framework/op_def.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b59885fbdaeff39dce1f74dbfdf9db7a76f59fd08f623617169b58d56a2a4f05 3 | size 87937 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/framework/tensor.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0253be7f3a664bda78fc9065d019b2c0aae4173021ed0f339e0a124722792acb 3 | size 54406 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/framework/types.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:593f268272e0896278da41a4058c98962a26c01ca5b37be6d25c54d9c21e6d31 3 | size 6379 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/framework/types.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:016826054d34f52899499b550d5c26bf1a3e954a5383a0c8ec31865d4a7e9a4e 3 | size 4772 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/framework/versions.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a2d42506065f8a95a7d3490b2b25550d46e463c425e8a59d267e381b4dd56ba7 3 | size 9755 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/profiler/profile.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6eaa14dbf5b6b07f391ed8b403f6fd82e646d588d3aabad4a18b5930f4f1b93c 3 | size 73746 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/protobuf/cluster.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ca54bfcd6f1ccfce0599f4a29e71cf53b814ba3b0995e03edd386aaa16cfe5b 3 | size 38816 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/protobuf/cluster.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f9137731ab38a89e1f62caf053327ee85d30a320774a80c94e45916acd7a47c 3 | size 17919 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/protobuf/config.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed81f3260ee5bc0c712c632708b7e23fad5c03e6b2420391e6a768af399815bc 3 | size 277422 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/protobuf/config.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4d43189f754b3d6027b53849714b1f5bcd3b0324a5b0dd8c5281a4ed7e7a9607 3 | size 135469 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/protobuf/debug.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74dbd493b45ee9bef4ed164e7dc4b18c781cc3059854c8a648b3452ecc142ae5 3 | size 91438 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/protobuf/debug.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:042ee6e170d6ab72bf177943f8744d6958a2ca1d2818944e83e22c74f17442d6 3 | size 50607 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/protobuf/master.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ded01a5fb5ad68fb2a5347aad4b6a85f89dbbeece4231c481d1fbcc7cc4328d8 3 | size 286476 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/protobuf/master.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10c2d4fa9fec1360702f312615ea2d309d3f1b9bff94585941897601519d5000 3 | size 155695 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/protobuf/saver.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2dc24a396f42647a66561684f49e8dac5cf9f5d9e679a6df24a484d94832660d 3 | size 40058 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/protobuf/saver.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1406187376f2d13f9ce816000e5ceed0528b504ec0eb3af33b6b7ee4cc6df304 3 | size 25280 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/protobuf/saver.pb_text.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:665b470c62af2cc0d80fb9847d2496f30d441078e19fc759ed122cbadde9ffca 3 | size 925 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/protobuf/worker.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f1e5dbab2ba6604e76a35b704edcbc329a0a4d8ed4ae509564ed7edc42f2efd 3 | size 461200 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/protobuf/worker.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3de280b8513f4e88628766874613f6ead7ddbdfb61f4b271a7a013461a2624d3 3 | size 224655 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/util/event.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f74016ff3c614903f4dc1a066587cc6f319134ca68c925c4727cabe37b1e8a2 3 | size 117767 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/util/event.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6fe93e0e52dd42006c0b73fc011bb18533ec2b74c0511f67e078d5f87efebcdd 3 | size 79316 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/util/test_log.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cadf0e3e68c44c4d250aa6c9e3a1d8d471b5816676b77218691e011dbe629b57 3 | size 383594 4 | -------------------------------------------------------------------------------- /include/tensorflow/core/util/test_log.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad6b3baece4c52439b2048ce9ff4bd64c6a9643f119d8663bcd4ba542ec13c59 3 | size 210140 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/AdolcForward: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e7e6bec2627271c0cdc5549f889ddfa3139c758dff222ef0c55737d782f85db1 3 | size 4241 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/AlignedVector3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49aace5a52336dc5a717931d24372a59cc59be22c5ea421087a8cfedc6dae181 3 | size 6095 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/ArpackSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:703c7012fbbb75152ecd634b5ebbacfaa2c7d31a658c5fffadde6d2d246480aa 3 | size 905 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/AutoDiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45fef03d1967624c3c1a80ba430cc28553c370eda593fa76f7aec394cf6430e3 3 | size 1054 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/BVH: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:041690d6ae2e6583b80161c6a0f920c6b714fc9717b0f6688d663441e47d739a 3 | size 5505 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/CXX11/Tensor: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2de3ff7bb5703e17fb5bf6ff579e54bc2953ee4ec51f7c3de13552cb3a9a56f1 3 | size 4400 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/CXX11/TensorSymmetry: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e380c924cd377734d469d95912b343fed5b323129bf7ca243a4827471786cde 3 | size 1273 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/CXX11/ThreadPool: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7f4df517c5aba90de9a3151c6a633a4ebb59ca2d84541077497d12bb7d1a0f7 3 | size 2172 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/EulerAngles: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebd88456a130280626b78f675466cd6a47116796c5975de93f802d53ef202e89 3 | size 1102 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/FFT: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5b49954cab8bc8efd8465fdd467f1fcf38ae4026896bcdf2230f2069a74eb4d 3 | size 13916 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/IterativeSolvers: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fee228cff6a07e68ade91a24c6f58f5d524effc2b18d601bc16512771bda9b26 3 | size 1295 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/KroneckerProduct: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7cfc751e372b0a2921721503db7d6eff338aac067bbd0592b834cbb166718778 3 | size 944 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/LevenbergMarquardt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb10e4a1242d9c9324dcc25407c5ed35ee4dc0df819abc98c4e34f88ec29958c 3 | size 1102 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/MPRealSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4cb80a19695094c355315e126b02007f52c02124e1e57be96e8984cb0d265b1b 3 | size 7607 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/MatrixFunctions: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a4b8f87780200b23434801ed065657644e2de2d20b6a2ba87a4d6cc8d02cd3b5 3 | size 17794 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/MoreVectorization: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cbd94fef18c716a51706b61282d96a6bfe7eb4e8f0b9a451ca7abd1abb4ce247 3 | size 586 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/NonLinearOptimization: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06d6d856ec72ac382f3a8ef1b6df2fc0c97b0e49f112b4e45877159437ccfe27 3 | size 5776 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/NumericalDiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7827217849d190cc5f6c369ac8374889a87a67dbd2dfecce0df4c43241807a4 3 | size 1773 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/OpenGLSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8430bcc06ee13fa3448f5072e98ddf1952ee6e68bd18ce17f840cf85e0d1869e 3 | size 19058 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/Polynomials: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:229f7551c615b1db661bc1bc00f1e1b471b7c21fc8f244c79cf51455eab04e46 3 | size 4770 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/Skyline: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:632c8e38b53965aff67fbbe94659992da59d7874757d6ce467db46ae287c88bd 3 | size 912 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/SparseExtra: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a03b835a4ba19efe1f02c56eba2f806090a9c795af901ef3569c459faa6a304d 3 | size 1324 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/SpecialFunctions: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae96f521a97003040c904ec3496f8df98e7c16498ee73e020683e7091c2eeea1 3 | size 1574 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/Splines: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ef84b14bcb0d6cf6d9c5e918a870b670159bd0637e6aee0dd84e7093d81547e 3 | size 871 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/src/BVH/KdBVH.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f2bfdcce7d2a8def2336c4bf1768d97e719e1faed47b594a7fb5451712be4f6 3 | size 9126 4 | -------------------------------------------------------------------------------- /include/unsupported/Eigen/src/Splines/Spline.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:200fa8f501d39d16c2a65da65233552f6f3b305a8c0025cb7820a067a2a65f2e 3 | size 18548 4 | -------------------------------------------------------------------------------- /lib/farmhash.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55c67b16d74e21eeac8157cc659fc9baf56fada50ee25d7bdcbaec912b9866ba 3 | size 29074 4 | -------------------------------------------------------------------------------- /lib/fft2d.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79b1a0d14c161735aee9bbe3939741f4ea3d46a00d80ad1ef7cdaa19a9be14c1 3 | size 65174 4 | -------------------------------------------------------------------------------- /lib/giflib.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44773de66056086b10ef3c925b589c8bad1b5561148452ba6ccf81c0c0de2ffb 3 | size 88542 4 | -------------------------------------------------------------------------------- /lib/gpr.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7fe472eedbb4919a4a29718eb30fb6f022ccee3d62ca502366d0706202fd76f0 3 | size 166082 4 | -------------------------------------------------------------------------------- /lib/grpc++_unsecure.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60979554884064d0670128dbb72f066e08e8a430740b50c46ad3f24b16677673 3 | size 2298866 4 | -------------------------------------------------------------------------------- /lib/grpc_unsecure.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d963038f6ad23453102e14591d03104a34058410f5cd5f17ff6651dbacc1cd2 3 | size 3193958 4 | -------------------------------------------------------------------------------- /lib/highwayhash.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:068111265f39308c49b74574ca770f1bfa61b3de13bea19a1392171fc23a67f4 3 | size 10836 4 | -------------------------------------------------------------------------------- /lib/jsoncpp.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f1e8d8d01c35cb2667a42d479c54868949609c1501aa5bb938b1e1338643544b 3 | size 1114204 4 | -------------------------------------------------------------------------------- /lib/libjpeg.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4762480bf7bc8466b722eaefd6a924a9b10ccc6d920cc8bc24187e984e6178f5 3 | size 542270 4 | -------------------------------------------------------------------------------- /lib/libpng12_static.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:707b315f5da586b60e5cf9db40432ef65d22615b1297032328c7565ca3c819c3 3 | size 434598 4 | -------------------------------------------------------------------------------- /lib/libprotobuf.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f10cf8ca153d2ccf7ade53acc51586d4f5056144a9184de4581867ab3bd7b639 3 | size 18711374 4 | -------------------------------------------------------------------------------- /lib/lmdb.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:564611879b102ef0f9305b14a40c23aafe76083137e516dd315253ff7813ad2c 3 | size 165934 4 | -------------------------------------------------------------------------------- /lib/nsync.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e437e5849547e22d6786c6b63231511fe9cdb007c7790ec16d8a63abbcc270a 3 | size 199482 4 | -------------------------------------------------------------------------------- /lib/re2.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79dc694591afa325435cd2fae306236f9951005e8b00e1e0b12f502b883ea0f0 3 | size 3043478 4 | -------------------------------------------------------------------------------- /lib/snappy.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:487286d6f1d7f51600f82345b39accb54cf5c80443a497ab9981fb14c23a2809 3 | size 130078 4 | -------------------------------------------------------------------------------- /lib/sqlite.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df04641a8bd7bcbecee43bc7c51aeef55d0983ad06bfadf0915abc794013c352 3 | size 1953492 4 | -------------------------------------------------------------------------------- /lib/tf_cc.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:33d4fdef5e721eae6509abadee66c7c13c1615d8c3261fc405feec5ec4d3b124 3 | size 4328360 4 | -------------------------------------------------------------------------------- /lib/tf_cc_framework.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32e02a674bef116a10ec86f2d5dfd839c37184b15e2cb50fdee5b3244dc131e1 3 | size 902504 4 | -------------------------------------------------------------------------------- /lib/tf_cc_ops.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:331598504347cd0d55781e669da82e0fcc910844c6898c293453a4f88d24b2ca 3 | size 9434368 4 | -------------------------------------------------------------------------------- /lib/tf_cc_while_loop.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ebcc15d6caa17202956bc11c642f590c78b29e124b553e4926f8fed601c2da2 3 | size 240518 4 | -------------------------------------------------------------------------------- /lib/tf_core_cpu.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12eaff35fbea6c063846cadc1544879c4e97d7b0a75c6ebb5d872ccce137a14a 3 | size 42062018 4 | -------------------------------------------------------------------------------- /lib/tf_core_direct_session.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4bea138d602aec9581c4c9fc0787e74565bc2a06a494d6614a61f40a6763bfb7 3 | size 3087958 4 | -------------------------------------------------------------------------------- /lib/tf_core_framework.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d17198606be1b02c5377e8578079a3fe9bbd470bebb5e03f3f2c4bb64fba355 3 | size 28132288 4 | -------------------------------------------------------------------------------- /lib/tf_core_kernels.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5254bd6055aba68b46ed9d516801b8e5b88388b32a74ae7961315c8790435e65 3 | size 516809900 4 | -------------------------------------------------------------------------------- /lib/tf_core_lib.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55fd3883d228769b874779a1a20d08c2aeaf3a9b7bf421a4627a2ba9f754ac10 3 | size 4455186 4 | -------------------------------------------------------------------------------- /lib/tf_core_ops.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d14e2243f1386bb2f5fb0effecc940502f60c33dd986087c21a4766d4adc2baf 3 | size 9379730 4 | -------------------------------------------------------------------------------- /lib/tf_protos_cc.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b1b83a2804a693fe6ce4e9101673c2ce52c5a1038dbb8991fcfbe0fb5ca1837 3 | size 30459906 4 | -------------------------------------------------------------------------------- /lib/zlibstatic.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:39702d219fc8723522794c2788d1f5d273f2b7e62c3edb8ab5cf98b1a322b7b2 3 | size 172464 4 | --------------------------------------------------------------------------------