├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── tensorflow-yolo-ios ├── dependencies ├── eigen │ ├── CMakeLists.txt │ ├── COPYING.BSD │ ├── COPYING.GPL │ ├── COPYING.LGPL │ ├── COPYING.MINPACK │ ├── COPYING.MPL2 │ ├── COPYING.README │ ├── CTestConfig.cmake │ ├── CTestCustom.cmake.in │ ├── Eigen │ │ ├── CMakeLists.txt │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── LU │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src │ │ │ ├── Cholesky │ │ │ ├── LDLT.h │ │ │ ├── LLT.h │ │ │ └── LLT_LAPACKE.h │ │ │ ├── CholmodSupport │ │ │ └── CholmodSupport.h │ │ │ ├── Core │ │ │ ├── Array.h │ │ │ ├── ArrayBase.h │ │ │ ├── ArrayWrapper.h │ │ │ ├── Assign.h │ │ │ ├── AssignEvaluator.h │ │ │ ├── Assign_MKL.h │ │ │ ├── BandMatrix.h │ │ │ ├── Block.h │ │ │ ├── BooleanRedux.h │ │ │ ├── CommaInitializer.h │ │ │ ├── ConditionEstimator.h │ │ │ ├── CoreEvaluators.h │ │ │ ├── CoreIterators.h │ │ │ ├── CwiseBinaryOp.h │ │ │ ├── CwiseNullaryOp.h │ │ │ ├── CwiseTernaryOp.h │ │ │ ├── CwiseUnaryOp.h │ │ │ ├── CwiseUnaryView.h │ │ │ ├── DenseBase.h │ │ │ ├── DenseCoeffsBase.h │ │ │ ├── DenseStorage.h │ │ │ ├── Diagonal.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DiagonalProduct.h │ │ │ ├── Dot.h │ │ │ ├── EigenBase.h │ │ │ ├── ForceAlignedAccess.h │ │ │ ├── Fuzzy.h │ │ │ ├── GeneralProduct.h │ │ │ ├── GenericPacketMath.h │ │ │ ├── GlobalFunctions.h │ │ │ ├── IO.h │ │ │ ├── Inverse.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── MathFunctionsImpl.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── Product.h │ │ │ ├── ProductEvaluators.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── Solve.h │ │ │ ├── SolveTriangular.h │ │ │ ├── SolverBase.h │ │ │ ├── StableNorm.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch │ │ │ │ ├── AVX │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AltiVec │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── CUDA │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── Half.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── Default │ │ │ │ │ └── Settings.h │ │ │ │ ├── NEON │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── SSE │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ └── ZVector │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ ├── functors │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ ├── BinaryFunctors.h │ │ │ │ ├── NullaryFunctors.h │ │ │ │ ├── StlFunctors.h │ │ │ │ ├── TernaryFunctors.h │ │ │ │ └── UnaryFunctors.h │ │ │ ├── products │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── StaticAssert.h │ │ │ │ └── XprHelper.h │ │ │ ├── Eigenvalues │ │ │ ├── ComplexEigenSolver.h │ │ │ ├── ComplexSchur.h │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ ├── EigenSolver.h │ │ │ ├── GeneralizedEigenSolver.h │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ ├── HessenbergDecomposition.h │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ ├── RealQZ.h │ │ │ ├── RealSchur.h │ │ │ ├── RealSchur_LAPACKE.h │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ └── Tridiagonalization.h │ │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── AngleAxis.h │ │ │ ├── EulerAngles.h │ │ │ ├── Homogeneous.h │ │ │ ├── Hyperplane.h │ │ │ ├── OrthoMethods.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ ├── Translation.h │ │ │ ├── Umeyama.h │ │ │ └── arch │ │ │ │ └── Geometry_SSE.h │ │ │ ├── Householder │ │ │ ├── BlockHouseholder.h │ │ │ ├── Householder.h │ │ │ └── HouseholderSequence.h │ │ │ ├── IterativeLinearSolvers │ │ │ ├── BasicPreconditioners.h │ │ │ ├── BiCGSTAB.h │ │ │ ├── ConjugateGradient.h │ │ │ ├── IncompleteCholesky.h │ │ │ ├── IncompleteLUT.h │ │ │ ├── IterativeSolverBase.h │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ └── SolveWithGuess.h │ │ │ ├── Jacobi │ │ │ └── Jacobi.h │ │ │ ├── LU │ │ │ ├── Determinant.h │ │ │ ├── FullPivLU.h │ │ │ ├── InverseImpl.h │ │ │ ├── PartialPivLU.h │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ └── arch │ │ │ │ └── Inverse_SSE.h │ │ │ ├── MetisSupport │ │ │ └── MetisSupport.h │ │ │ ├── OrderingMethods │ │ │ ├── Amd.h │ │ │ ├── Eigen_Colamd.h │ │ │ └── Ordering.h │ │ │ ├── PaStiXSupport │ │ │ └── PaStiXSupport.h │ │ │ ├── PardisoSupport │ │ │ └── PardisoSupport.h │ │ │ ├── QR │ │ │ ├── ColPivHouseholderQR.h │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ ├── FullPivHouseholderQR.h │ │ │ ├── HouseholderQR.h │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ ├── SPQRSupport │ │ │ └── SuiteSparseQRSupport.h │ │ │ ├── SVD │ │ │ ├── BDCSVD.h │ │ │ ├── JacobiSVD.h │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ ├── SVDBase.h │ │ │ └── UpperBidiagonalization.h │ │ │ ├── SparseCholesky │ │ │ ├── SimplicialCholesky.h │ │ │ └── SimplicialCholesky_impl.h │ │ │ ├── SparseCore │ │ │ ├── AmbiVector.h │ │ │ ├── CompressedStorage.h │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ ├── MappedSparseMatrix.h │ │ │ ├── SparseAssign.h │ │ │ ├── SparseBlock.h │ │ │ ├── SparseColEtree.h │ │ │ ├── SparseCompressedBase.h │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ ├── SparseDenseProduct.h │ │ │ ├── SparseDiagonalProduct.h │ │ │ ├── SparseDot.h │ │ │ ├── SparseFuzzy.h │ │ │ ├── SparseMap.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseMatrixBase.h │ │ │ ├── SparsePermutation.h │ │ │ ├── SparseProduct.h │ │ │ ├── SparseRedux.h │ │ │ ├── SparseRef.h │ │ │ ├── SparseSelfAdjointView.h │ │ │ ├── SparseSolverBase.h │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ ├── SparseTranspose.h │ │ │ ├── SparseTriangularView.h │ │ │ ├── SparseUtil.h │ │ │ ├── SparseVector.h │ │ │ ├── SparseView.h │ │ │ └── TriangularSolver.h │ │ │ ├── SparseLU │ │ │ ├── SparseLU.h │ │ │ ├── SparseLUImpl.h │ │ │ ├── SparseLU_Memory.h │ │ │ ├── SparseLU_Structs.h │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ ├── SparseLU_Utils.h │ │ │ ├── SparseLU_column_bmod.h │ │ │ ├── SparseLU_column_dfs.h │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ ├── SparseLU_panel_bmod.h │ │ │ ├── SparseLU_panel_dfs.h │ │ │ ├── SparseLU_pivotL.h │ │ │ ├── SparseLU_pruneL.h │ │ │ └── SparseLU_relax_snode.h │ │ │ ├── SparseQR │ │ │ └── SparseQR.h │ │ │ ├── StlSupport │ │ │ ├── StdDeque.h │ │ │ ├── StdList.h │ │ │ ├── StdVector.h │ │ │ └── details.h │ │ │ ├── SuperLUSupport │ │ │ └── SuperLUSupport.h │ │ │ ├── UmfPackSupport │ │ │ └── UmfPackSupport.h │ │ │ ├── misc │ │ │ ├── Image.h │ │ │ ├── Kernel.h │ │ │ ├── RealSvd2x2.h │ │ │ ├── blas.h │ │ │ ├── lapack.h │ │ │ ├── lapacke.h │ │ │ └── lapacke_mangling.h │ │ │ └── plugins │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ └── MatrixCwiseUnaryOps.h │ ├── INSTALL │ ├── README.md │ ├── _hg_archival.txt │ ├── _hgeol │ ├── _hgignore │ ├── _hgtags │ ├── bench │ │ ├── BenchSparseUtil.h │ │ ├── BenchTimer.h │ │ ├── BenchUtil.h │ │ ├── README.txt │ │ ├── analyze-blocking-sizes.cpp │ │ ├── basicbench.cxxlist │ │ ├── basicbenchmark.cpp │ │ ├── basicbenchmark.h │ │ ├── benchBlasGemm.cpp │ │ ├── benchCholesky.cpp │ │ ├── benchEigenSolver.cpp │ │ ├── benchFFT.cpp │ │ ├── benchGeometry.cpp │ │ ├── benchVecAdd.cpp │ │ ├── bench_gemm.cpp │ │ ├── bench_multi_compilers.sh │ │ ├── bench_norm.cpp │ │ ├── bench_reverse.cpp │ │ ├── bench_sum.cpp │ │ ├── bench_unrolling │ │ ├── benchmark-blocking-sizes.cpp │ │ ├── benchmark.cpp │ │ ├── benchmarkSlice.cpp │ │ ├── benchmarkX.cpp │ │ ├── benchmarkXcwise.cpp │ │ ├── benchmark_suite │ │ ├── btl │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── actions │ │ │ │ ├── action_aat_product.hh │ │ │ │ ├── action_ata_product.hh │ │ │ │ ├── action_atv_product.hh │ │ │ │ ├── action_axpby.hh │ │ │ │ ├── action_axpy.hh │ │ │ │ ├── action_cholesky.hh │ │ │ │ ├── action_ger.hh │ │ │ │ ├── action_hessenberg.hh │ │ │ │ ├── action_lu_decomp.hh │ │ │ │ ├── action_lu_solve.hh │ │ │ │ ├── action_matrix_matrix_product.hh │ │ │ │ ├── action_matrix_matrix_product_bis.hh │ │ │ │ ├── action_matrix_vector_product.hh │ │ │ │ ├── action_partial_lu.hh │ │ │ │ ├── action_rot.hh │ │ │ │ ├── action_symv.hh │ │ │ │ ├── action_syr2.hh │ │ │ │ ├── action_trisolve.hh │ │ │ │ ├── action_trisolve_matrix.hh │ │ │ │ ├── action_trmm.hh │ │ │ │ └── basic_actions.hh │ │ │ ├── cmake │ │ │ │ ├── FindACML.cmake │ │ │ │ ├── FindATLAS.cmake │ │ │ │ ├── FindBLAZE.cmake │ │ │ │ ├── FindBlitz.cmake │ │ │ │ ├── FindCBLAS.cmake │ │ │ │ ├── FindGMM.cmake │ │ │ │ ├── FindMKL.cmake │ │ │ │ ├── FindMTL4.cmake │ │ │ │ ├── FindOPENBLAS.cmake │ │ │ │ ├── FindPackageHandleStandardArgs.cmake │ │ │ │ ├── FindTvmet.cmake │ │ │ │ └── MacroOptionalAddSubdirectory.cmake │ │ │ ├── data │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── action_settings.txt │ │ │ │ ├── gnuplot_common_settings.hh │ │ │ │ ├── go_mean │ │ │ │ ├── mean.cxx │ │ │ │ ├── mk_gnuplot_script.sh │ │ │ │ ├── mk_mean_script.sh │ │ │ │ ├── mk_new_gnuplot.sh │ │ │ │ ├── perlib_plot_settings.txt │ │ │ │ ├── regularize.cxx │ │ │ │ ├── smooth.cxx │ │ │ │ └── smooth_all.sh │ │ │ ├── generic_bench │ │ │ │ ├── bench.hh │ │ │ │ ├── bench_parameter.hh │ │ │ │ ├── btl.hh │ │ │ │ ├── init │ │ │ │ │ ├── init_function.hh │ │ │ │ │ ├── init_matrix.hh │ │ │ │ │ └── init_vector.hh │ │ │ │ ├── static │ │ │ │ │ ├── bench_static.hh │ │ │ │ │ ├── intel_bench_fixed_size.hh │ │ │ │ │ └── static_size_generator.hh │ │ │ │ ├── timers │ │ │ │ │ ├── STL_perf_analyzer.hh │ │ │ │ │ ├── STL_timer.hh │ │ │ │ │ ├── mixed_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer_old.hh │ │ │ │ │ ├── portable_timer.hh │ │ │ │ │ ├── x86_perf_analyzer.hh │ │ │ │ │ └── x86_timer.hh │ │ │ │ └── utils │ │ │ │ │ ├── size_lin_log.hh │ │ │ │ │ ├── size_log.hh │ │ │ │ │ ├── utilities.h │ │ │ │ │ └── xy_file.hh │ │ │ └── libs │ │ │ │ ├── BLAS │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blas.h │ │ │ │ ├── blas_interface.hh │ │ │ │ ├── blas_interface_impl.hh │ │ │ │ ├── c_interface_base.h │ │ │ │ └── main.cpp │ │ │ │ ├── STL │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── STL_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── blaze │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blaze_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── blitz │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blitz_LU_solve_interface.hh │ │ │ │ ├── blitz_interface.hh │ │ │ │ ├── btl_blitz.cpp │ │ │ │ ├── btl_tiny_blitz.cpp │ │ │ │ └── tiny_blitz_interface.hh │ │ │ │ ├── eigen2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen2.cpp │ │ │ │ ├── eigen2_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── eigen3 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen3.cpp │ │ │ │ ├── eigen3_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── gmm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gmm_LU_solve_interface.hh │ │ │ │ ├── gmm_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── mtl4 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── _kdbgrc.main │ │ │ │ ├── main.cpp │ │ │ │ ├── mtl4_LU_solve_interface.hh │ │ │ │ └── mtl4_interface.hh │ │ │ │ ├── tensors │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ ├── main_vecmat.cpp │ │ │ │ └── tensor_interface.hh │ │ │ │ ├── tvmet │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── tvmet_interface.hh │ │ │ │ └── ublas │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── ublas_interface.hh │ │ ├── check_cache_queries.cpp │ │ ├── dense_solvers.cpp │ │ ├── eig33.cpp │ │ ├── geometry.cpp │ │ ├── perf_monitoring │ │ │ └── gemm │ │ │ │ ├── changesets.txt │ │ │ │ ├── gemm.cpp │ │ │ │ ├── gemm_settings.txt │ │ │ │ ├── lazy_gemm.cpp │ │ │ │ ├── lazy_gemm_settings.txt │ │ │ │ ├── make_plot.sh │ │ │ │ └── run.sh │ │ ├── product_threshold.cpp │ │ ├── quat_slerp.cpp │ │ ├── quatmul.cpp │ │ ├── sparse_cholesky.cpp │ │ ├── sparse_dense_product.cpp │ │ ├── sparse_lu.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_randomsetter.cpp │ │ ├── sparse_setter.cpp │ │ ├── sparse_transpose.cpp │ │ ├── sparse_trisolver.cpp │ │ ├── spbench │ │ │ ├── CMakeLists.txt │ │ │ ├── sp_solver.cpp │ │ │ ├── spbench.dtd │ │ │ ├── spbenchsolver.cpp │ │ │ ├── spbenchsolver.h │ │ │ ├── spbenchstyle.h │ │ │ └── test_sparseLU.cpp │ │ ├── spmv.cpp │ │ ├── tensors │ │ │ ├── README │ │ │ ├── benchmark.h │ │ │ ├── benchmark_main.cc │ │ │ ├── contraction_benchmarks_cpu.cc │ │ │ ├── tensor_benchmarks.h │ │ │ ├── tensor_benchmarks_cpu.cc │ │ │ ├── tensor_benchmarks_fp16_gpu.cu │ │ │ └── tensor_benchmarks_gpu.cu │ │ └── vdw_new.cpp │ ├── blas │ │ ├── BandTriangularSolver.h │ │ ├── CMakeLists.txt │ │ ├── GeneralRank1Update.h │ │ ├── PackedSelfadjointProduct.h │ │ ├── PackedTriangularMatrixVector.h │ │ ├── PackedTriangularSolverVector.h │ │ ├── README.txt │ │ ├── Rank2Update.h │ │ ├── common.h │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── double.cpp │ │ ├── f2c │ │ │ ├── chbmv.c │ │ │ ├── chpmv.c │ │ │ ├── complexdots.c │ │ │ ├── ctbmv.c │ │ │ ├── d_cnjg.c │ │ │ ├── datatypes.h │ │ │ ├── drotm.c │ │ │ ├── drotmg.c │ │ │ ├── dsbmv.c │ │ │ ├── dspmv.c │ │ │ ├── dtbmv.c │ │ │ ├── lsame.c │ │ │ ├── r_cnjg.c │ │ │ ├── srotm.c │ │ │ ├── srotmg.c │ │ │ ├── ssbmv.c │ │ │ ├── sspmv.c │ │ │ ├── stbmv.c │ │ │ ├── zhbmv.c │ │ │ ├── zhpmv.c │ │ │ └── ztbmv.c │ │ ├── fortran │ │ │ └── complexdots.f │ │ ├── level1_cplx_impl.h │ │ ├── level1_impl.h │ │ ├── level1_real_impl.h │ │ ├── level2_cplx_impl.h │ │ ├── level2_impl.h │ │ ├── level2_real_impl.h │ │ ├── level3_impl.h │ │ ├── single.cpp │ │ ├── testing │ │ │ ├── CMakeLists.txt │ │ │ ├── cblat1.f │ │ │ ├── cblat2.dat │ │ │ ├── cblat2.f │ │ │ ├── cblat3.dat │ │ │ ├── cblat3.f │ │ │ ├── dblat1.f │ │ │ ├── dblat2.dat │ │ │ ├── dblat2.f │ │ │ ├── dblat3.dat │ │ │ ├── dblat3.f │ │ │ ├── runblastest.sh │ │ │ ├── sblat1.f │ │ │ ├── sblat2.dat │ │ │ ├── sblat2.f │ │ │ ├── sblat3.dat │ │ │ ├── sblat3.f │ │ │ ├── zblat1.f │ │ │ ├── zblat2.dat │ │ │ ├── zblat2.f │ │ │ ├── zblat3.dat │ │ │ └── zblat3.f │ │ └── xerbla.cpp │ ├── cmake │ │ ├── Eigen3Config.cmake.in │ │ ├── EigenConfigureTesting.cmake │ │ ├── EigenDetermineOSVersion.cmake │ │ ├── EigenDetermineVSServicePack.cmake │ │ ├── EigenTesting.cmake │ │ ├── EigenUninstall.cmake │ │ ├── FindAdolc.cmake │ │ ├── FindBLAS.cmake │ │ ├── FindCholmod.cmake │ │ ├── FindEigen2.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindFFTW.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGMP.cmake │ │ ├── FindGSL.cmake │ │ ├── FindGoogleHash.cmake │ │ ├── FindLAPACK.cmake │ │ ├── FindMPFR.cmake │ │ ├── FindMetis.cmake │ │ ├── FindPastix.cmake │ │ ├── FindSPQR.cmake │ │ ├── FindScotch.cmake │ │ ├── FindStandardMathLibrary.cmake │ │ ├── FindSuperLU.cmake │ │ ├── FindUmfpack.cmake │ │ ├── RegexUtils.cmake │ │ ├── UseEigen3.cmake │ │ └── language_support.cmake │ ├── debug │ │ ├── gdb │ │ │ ├── __init__.py │ │ │ └── printers.py │ │ └── msvc │ │ │ ├── eigen.natvis │ │ │ └── eigen_autoexp_part.dat │ ├── demos │ │ ├── CMakeLists.txt │ │ ├── mandelbrot │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── mandelbrot.cpp │ │ │ └── mandelbrot.h │ │ ├── mix_eigen_and_c │ │ │ ├── README │ │ │ ├── binary_library.cpp │ │ │ ├── binary_library.h │ │ │ └── example.c │ │ └── opengl │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── gpuhelper.cpp │ │ │ ├── gpuhelper.h │ │ │ ├── icosphere.cpp │ │ │ ├── icosphere.h │ │ │ ├── quaternion_demo.cpp │ │ │ ├── quaternion_demo.h │ │ │ ├── trackball.cpp │ │ │ └── trackball.h │ ├── doc │ │ ├── A05_PortingFrom2To3.dox │ │ ├── AsciiQuickReference.txt │ │ ├── B01_Experimental.dox │ │ ├── CMakeLists.txt │ │ ├── ClassHierarchy.dox │ │ ├── CoeffwiseMathFunctionsTable.dox │ │ ├── CustomizingEigen_CustomScalar.dox │ │ ├── CustomizingEigen_InheritingMatrix.dox │ │ ├── CustomizingEigen_NullaryExpr.dox │ │ ├── CustomizingEigen_Plugins.dox │ │ ├── DenseDecompositionBenchmark.dox │ │ ├── Doxyfile.in │ │ ├── Eigen_Silly_Professor_64x64.png │ │ ├── FixedSizeVectorizable.dox │ │ ├── FunctionsTakingEigenTypes.dox │ │ ├── HiPerformance.dox │ │ ├── InplaceDecomposition.dox │ │ ├── InsideEigenExample.dox │ │ ├── LeastSquares.dox │ │ ├── Manual.dox │ │ ├── MatrixfreeSolverExample.dox │ │ ├── NewExpressionType.dox │ │ ├── Overview.dox │ │ ├── PassingByValue.dox │ │ ├── Pitfalls.dox │ │ ├── PreprocessorDirectives.dox │ │ ├── QuickReference.dox │ │ ├── QuickStartGuide.dox │ │ ├── SparseLinearSystems.dox │ │ ├── SparseQuickReference.dox │ │ ├── StlContainers.dox │ │ ├── StorageOrders.dox │ │ ├── StructHavingEigenMembers.dox │ │ ├── TemplateKeyword.dox │ │ ├── TopicAliasing.dox │ │ ├── TopicAssertions.dox │ │ ├── TopicEigenExpressionTemplates.dox │ │ ├── TopicLazyEvaluation.dox │ │ ├── TopicLinearAlgebraDecompositions.dox │ │ ├── TopicMultithreading.dox │ │ ├── TopicResizing.dox │ │ ├── TopicScalarTypes.dox │ │ ├── TopicVectorization.dox │ │ ├── TutorialAdvancedInitialization.dox │ │ ├── TutorialArrayClass.dox │ │ ├── TutorialBlockOperations.dox │ │ ├── TutorialGeometry.dox │ │ ├── TutorialLinearAlgebra.dox │ │ ├── TutorialMapClass.dox │ │ ├── TutorialMatrixArithmetic.dox │ │ ├── TutorialMatrixClass.dox │ │ ├── TutorialReductionsVisitorsBroadcasting.dox │ │ ├── TutorialReshapeSlicing.dox │ │ ├── TutorialSparse.dox │ │ ├── TutorialSparse_example_details.dox │ │ ├── UnalignedArrayAssert.dox │ │ ├── UsingBlasLapackBackends.dox │ │ ├── UsingIntelMKL.dox │ │ ├── UsingNVCC.dox │ │ ├── WrongStackAlignment.dox │ │ ├── eigen_navtree_hacks.js │ │ ├── eigendoxy.css │ │ ├── eigendoxy_footer.html.in │ │ ├── eigendoxy_header.html.in │ │ ├── eigendoxy_layout.xml.in │ │ ├── eigendoxy_tabs.css │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── CustomizingEigen_Inheritance.cpp │ │ │ ├── Cwise_erf.cpp │ │ │ ├── Cwise_erfc.cpp │ │ │ ├── Cwise_lgamma.cpp │ │ │ ├── DenseBase_middleCols_int.cpp │ │ │ ├── DenseBase_middleRows_int.cpp │ │ │ ├── DenseBase_template_int_middleCols.cpp │ │ │ ├── DenseBase_template_int_middleRows.cpp │ │ │ ├── QuickStart_example.cpp │ │ │ ├── QuickStart_example2_dynamic.cpp │ │ │ ├── QuickStart_example2_fixed.cpp │ │ │ ├── TemplateKeyword_flexible.cpp │ │ │ ├── TemplateKeyword_simple.cpp │ │ │ ├── TutorialInplaceLU.cpp │ │ │ ├── TutorialLinAlgComputeTwice.cpp │ │ │ ├── TutorialLinAlgExComputeSolveError.cpp │ │ │ ├── TutorialLinAlgExSolveColPivHouseholderQR.cpp │ │ │ ├── TutorialLinAlgExSolveLDLT.cpp │ │ │ ├── TutorialLinAlgInverseDeterminant.cpp │ │ │ ├── TutorialLinAlgRankRevealing.cpp │ │ │ ├── TutorialLinAlgSVDSolve.cpp │ │ │ ├── TutorialLinAlgSelfAdjointEigenSolver.cpp │ │ │ ├── TutorialLinAlgSetThreshold.cpp │ │ │ ├── Tutorial_ArrayClass_accessors.cpp │ │ │ ├── Tutorial_ArrayClass_addition.cpp │ │ │ ├── Tutorial_ArrayClass_cwise_other.cpp │ │ │ ├── Tutorial_ArrayClass_interop.cpp │ │ │ ├── Tutorial_ArrayClass_interop_matrix.cpp │ │ │ ├── Tutorial_ArrayClass_mult.cpp │ │ │ ├── Tutorial_BlockOperations_block_assignment.cpp │ │ │ ├── Tutorial_BlockOperations_colrow.cpp │ │ │ ├── Tutorial_BlockOperations_corner.cpp │ │ │ ├── Tutorial_BlockOperations_print_block.cpp │ │ │ ├── Tutorial_BlockOperations_vector.cpp │ │ │ ├── Tutorial_PartialLU_solve.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp │ │ │ ├── Tutorial_simple_example_dynamic_size.cpp │ │ │ ├── Tutorial_simple_example_fixed_size.cpp │ │ │ ├── _krazy │ │ │ ├── class_Block.cpp │ │ │ ├── class_CwiseBinaryOp.cpp │ │ │ ├── class_CwiseUnaryOp.cpp │ │ │ ├── class_CwiseUnaryOp_ptrfun.cpp │ │ │ ├── class_FixedBlock.cpp │ │ │ ├── class_FixedVectorBlock.cpp │ │ │ ├── class_VectorBlock.cpp │ │ │ ├── function_taking_eigenbase.cpp │ │ │ ├── function_taking_ref.cpp │ │ │ ├── make_circulant.cpp │ │ │ ├── make_circulant.cpp.entry │ │ │ ├── make_circulant.cpp.evaluator │ │ │ ├── make_circulant.cpp.expression │ │ │ ├── make_circulant.cpp.main │ │ │ ├── make_circulant.cpp.preamble │ │ │ ├── make_circulant.cpp.traits │ │ │ ├── make_circulant2.cpp │ │ │ ├── matrixfree_cg.cpp │ │ │ ├── nullary_indexing.cpp │ │ │ ├── tut_arithmetic_add_sub.cpp │ │ │ ├── tut_arithmetic_dot_cross.cpp │ │ │ ├── tut_arithmetic_matrix_mul.cpp │ │ │ ├── tut_arithmetic_redux_basic.cpp │ │ │ ├── tut_arithmetic_scalar_mul_div.cpp │ │ │ ├── tut_matrix_coefficient_accessors.cpp │ │ │ ├── tut_matrix_resize.cpp │ │ │ └── tut_matrix_resize_fixed_size.cpp │ │ ├── ftv2node.png │ │ ├── ftv2pnode.png │ │ ├── snippets │ │ │ ├── AngleAxis_mimic_euler.cpp │ │ │ ├── BiCGSTAB_simple.cpp │ │ │ ├── BiCGSTAB_step_by_step.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ColPivHouseholderQR_solve.cpp │ │ │ ├── ComplexEigenSolver_compute.cpp │ │ │ ├── ComplexEigenSolver_eigenvalues.cpp │ │ │ ├── ComplexEigenSolver_eigenvectors.cpp │ │ │ ├── ComplexSchur_compute.cpp │ │ │ ├── ComplexSchur_matrixT.cpp │ │ │ ├── ComplexSchur_matrixU.cpp │ │ │ ├── Cwise_abs.cpp │ │ │ ├── Cwise_abs2.cpp │ │ │ ├── Cwise_acos.cpp │ │ │ ├── Cwise_arg.cpp │ │ │ ├── Cwise_array_power_array.cpp │ │ │ ├── Cwise_asin.cpp │ │ │ ├── Cwise_atan.cpp │ │ │ ├── Cwise_boolean_and.cpp │ │ │ ├── Cwise_boolean_not.cpp │ │ │ ├── Cwise_boolean_or.cpp │ │ │ ├── Cwise_ceil.cpp │ │ │ ├── Cwise_cos.cpp │ │ │ ├── Cwise_cosh.cpp │ │ │ ├── Cwise_cube.cpp │ │ │ ├── Cwise_equal_equal.cpp │ │ │ ├── Cwise_exp.cpp │ │ │ ├── Cwise_floor.cpp │ │ │ ├── Cwise_greater.cpp │ │ │ ├── Cwise_greater_equal.cpp │ │ │ ├── Cwise_inverse.cpp │ │ │ ├── Cwise_isFinite.cpp │ │ │ ├── Cwise_isInf.cpp │ │ │ ├── Cwise_isNaN.cpp │ │ │ ├── Cwise_less.cpp │ │ │ ├── Cwise_less_equal.cpp │ │ │ ├── Cwise_log.cpp │ │ │ ├── Cwise_log10.cpp │ │ │ ├── Cwise_max.cpp │ │ │ ├── Cwise_min.cpp │ │ │ ├── Cwise_minus.cpp │ │ │ ├── Cwise_minus_equal.cpp │ │ │ ├── Cwise_not_equal.cpp │ │ │ ├── Cwise_plus.cpp │ │ │ ├── Cwise_plus_equal.cpp │ │ │ ├── Cwise_pow.cpp │ │ │ ├── Cwise_product.cpp │ │ │ ├── Cwise_quotient.cpp │ │ │ ├── Cwise_round.cpp │ │ │ ├── Cwise_scalar_power_array.cpp │ │ │ ├── Cwise_sign.cpp │ │ │ ├── Cwise_sin.cpp │ │ │ ├── Cwise_sinh.cpp │ │ │ ├── Cwise_slash_equal.cpp │ │ │ ├── Cwise_sqrt.cpp │ │ │ ├── Cwise_square.cpp │ │ │ ├── Cwise_tan.cpp │ │ │ ├── Cwise_tanh.cpp │ │ │ ├── Cwise_times_equal.cpp │ │ │ ├── DenseBase_LinSpaced.cpp │ │ │ ├── DenseBase_LinSpaced_seq.cpp │ │ │ ├── DenseBase_setLinSpaced.cpp │ │ │ ├── DirectionWise_hnormalized.cpp │ │ │ ├── DirectionWise_replicate.cpp │ │ │ ├── DirectionWise_replicate_int.cpp │ │ │ ├── EigenSolver_EigenSolver_MatrixType.cpp │ │ │ ├── EigenSolver_compute.cpp │ │ │ ├── EigenSolver_eigenvalues.cpp │ │ │ ├── EigenSolver_eigenvectors.cpp │ │ │ ├── EigenSolver_pseudoEigenvectors.cpp │ │ │ ├── FullPivHouseholderQR_solve.cpp │ │ │ ├── FullPivLU_image.cpp │ │ │ ├── FullPivLU_kernel.cpp │ │ │ ├── FullPivLU_solve.cpp │ │ │ ├── GeneralizedEigenSolver.cpp │ │ │ ├── HessenbergDecomposition_compute.cpp │ │ │ ├── HessenbergDecomposition_matrixH.cpp │ │ │ ├── HessenbergDecomposition_packedMatrix.cpp │ │ │ ├── HouseholderQR_householderQ.cpp │ │ │ ├── HouseholderQR_solve.cpp │ │ │ ├── HouseholderSequence_HouseholderSequence.cpp │ │ │ ├── IOFormat.cpp │ │ │ ├── JacobiSVD_basic.cpp │ │ │ ├── Jacobi_makeGivens.cpp │ │ │ ├── Jacobi_makeJacobi.cpp │ │ │ ├── LLT_example.cpp │ │ │ ├── LLT_solve.cpp │ │ │ ├── LeastSquaresNormalEquations.cpp │ │ │ ├── LeastSquaresQR.cpp │ │ │ ├── Map_general_stride.cpp │ │ │ ├── Map_inner_stride.cpp │ │ │ ├── Map_outer_stride.cpp │ │ │ ├── Map_placement_new.cpp │ │ │ ├── Map_simple.cpp │ │ │ ├── MatrixBase_adjoint.cpp │ │ │ ├── MatrixBase_all.cpp │ │ │ ├── MatrixBase_applyOnTheLeft.cpp │ │ │ ├── MatrixBase_applyOnTheRight.cpp │ │ │ ├── MatrixBase_array.cpp │ │ │ ├── MatrixBase_array_const.cpp │ │ │ ├── MatrixBase_asDiagonal.cpp │ │ │ ├── MatrixBase_block_int_int.cpp │ │ │ ├── MatrixBase_block_int_int_int_int.cpp │ │ │ ├── MatrixBase_bottomLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_bottomRightCorner_int_int.cpp │ │ │ ├── MatrixBase_bottomRows_int.cpp │ │ │ ├── MatrixBase_cast.cpp │ │ │ ├── MatrixBase_col.cpp │ │ │ ├── MatrixBase_colwise.cpp │ │ │ ├── MatrixBase_computeInverseAndDetWithCheck.cpp │ │ │ ├── MatrixBase_computeInverseWithCheck.cpp │ │ │ ├── MatrixBase_cwiseAbs.cpp │ │ │ ├── MatrixBase_cwiseAbs2.cpp │ │ │ ├── MatrixBase_cwiseEqual.cpp │ │ │ ├── MatrixBase_cwiseInverse.cpp │ │ │ ├── MatrixBase_cwiseMax.cpp │ │ │ ├── MatrixBase_cwiseMin.cpp │ │ │ ├── MatrixBase_cwiseNotEqual.cpp │ │ │ ├── MatrixBase_cwiseProduct.cpp │ │ │ ├── MatrixBase_cwiseQuotient.cpp │ │ │ ├── MatrixBase_cwiseSign.cpp │ │ │ ├── MatrixBase_cwiseSqrt.cpp │ │ │ ├── MatrixBase_diagonal.cpp │ │ │ ├── MatrixBase_diagonal_int.cpp │ │ │ ├── MatrixBase_diagonal_template_int.cpp │ │ │ ├── MatrixBase_eigenvalues.cpp │ │ │ ├── MatrixBase_end_int.cpp │ │ │ ├── MatrixBase_eval.cpp │ │ │ ├── MatrixBase_fixedBlock_int_int.cpp │ │ │ ├── MatrixBase_hnormalized.cpp │ │ │ ├── MatrixBase_homogeneous.cpp │ │ │ ├── MatrixBase_identity.cpp │ │ │ ├── MatrixBase_identity_int_int.cpp │ │ │ ├── MatrixBase_inverse.cpp │ │ │ ├── MatrixBase_isDiagonal.cpp │ │ │ ├── MatrixBase_isIdentity.cpp │ │ │ ├── MatrixBase_isOnes.cpp │ │ │ ├── MatrixBase_isOrthogonal.cpp │ │ │ ├── MatrixBase_isUnitary.cpp │ │ │ ├── MatrixBase_isZero.cpp │ │ │ ├── MatrixBase_leftCols_int.cpp │ │ │ ├── MatrixBase_noalias.cpp │ │ │ ├── MatrixBase_ones.cpp │ │ │ ├── MatrixBase_ones_int.cpp │ │ │ ├── MatrixBase_ones_int_int.cpp │ │ │ ├── MatrixBase_operatorNorm.cpp │ │ │ ├── MatrixBase_prod.cpp │ │ │ ├── MatrixBase_random.cpp │ │ │ ├── MatrixBase_random_int.cpp │ │ │ ├── MatrixBase_random_int_int.cpp │ │ │ ├── MatrixBase_replicate.cpp │ │ │ ├── MatrixBase_replicate_int_int.cpp │ │ │ ├── MatrixBase_reverse.cpp │ │ │ ├── MatrixBase_rightCols_int.cpp │ │ │ ├── MatrixBase_row.cpp │ │ │ ├── MatrixBase_rowwise.cpp │ │ │ ├── MatrixBase_segment_int_int.cpp │ │ │ ├── MatrixBase_select.cpp │ │ │ ├── MatrixBase_set.cpp │ │ │ ├── MatrixBase_setIdentity.cpp │ │ │ ├── MatrixBase_setOnes.cpp │ │ │ ├── MatrixBase_setRandom.cpp │ │ │ ├── MatrixBase_setZero.cpp │ │ │ ├── MatrixBase_start_int.cpp │ │ │ ├── MatrixBase_template_int_bottomRows.cpp │ │ │ ├── MatrixBase_template_int_end.cpp │ │ │ ├── MatrixBase_template_int_int_block_int_int_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner.cpp │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner.cpp │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_topLeftCorner.cpp │ │ │ ├── MatrixBase_template_int_int_topLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_topRightCorner.cpp │ │ │ ├── MatrixBase_template_int_int_topRightCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_leftCols.cpp │ │ │ ├── MatrixBase_template_int_rightCols.cpp │ │ │ ├── MatrixBase_template_int_segment.cpp │ │ │ ├── MatrixBase_template_int_start.cpp │ │ │ ├── MatrixBase_template_int_topRows.cpp │ │ │ ├── MatrixBase_topLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_topRightCorner_int_int.cpp │ │ │ ├── MatrixBase_topRows_int.cpp │ │ │ ├── MatrixBase_transpose.cpp │ │ │ ├── MatrixBase_triangularView.cpp │ │ │ ├── MatrixBase_zero.cpp │ │ │ ├── MatrixBase_zero_int.cpp │ │ │ ├── MatrixBase_zero_int_int.cpp │ │ │ ├── Matrix_resize_NoChange_int.cpp │ │ │ ├── Matrix_resize_int.cpp │ │ │ ├── Matrix_resize_int_NoChange.cpp │ │ │ ├── Matrix_resize_int_int.cpp │ │ │ ├── Matrix_setConstant_int.cpp │ │ │ ├── Matrix_setConstant_int_int.cpp │ │ │ ├── Matrix_setIdentity_int_int.cpp │ │ │ ├── Matrix_setOnes_int.cpp │ │ │ ├── Matrix_setOnes_int_int.cpp │ │ │ ├── Matrix_setRandom_int.cpp │ │ │ ├── Matrix_setRandom_int_int.cpp │ │ │ ├── Matrix_setZero_int.cpp │ │ │ ├── Matrix_setZero_int_int.cpp │ │ │ ├── PartialPivLU_solve.cpp │ │ │ ├── PartialRedux_count.cpp │ │ │ ├── PartialRedux_maxCoeff.cpp │ │ │ ├── PartialRedux_minCoeff.cpp │ │ │ ├── PartialRedux_norm.cpp │ │ │ ├── PartialRedux_prod.cpp │ │ │ ├── PartialRedux_squaredNorm.cpp │ │ │ ├── PartialRedux_sum.cpp │ │ │ ├── RealQZ_compute.cpp │ │ │ ├── RealSchur_RealSchur_MatrixType.cpp │ │ │ ├── RealSchur_compute.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType.cpp │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType2.cpp │ │ │ ├── SelfAdjointEigenSolver_eigenvalues.cpp │ │ │ ├── SelfAdjointEigenSolver_eigenvectors.cpp │ │ │ ├── SelfAdjointEigenSolver_operatorInverseSqrt.cpp │ │ │ ├── SelfAdjointEigenSolver_operatorSqrt.cpp │ │ │ ├── SelfAdjointView_eigenvalues.cpp │ │ │ ├── SelfAdjointView_operatorNorm.cpp │ │ │ ├── SparseMatrix_coeffs.cpp │ │ │ ├── TopicAliasing_block.cpp │ │ │ ├── TopicAliasing_block_correct.cpp │ │ │ ├── TopicAliasing_cwise.cpp │ │ │ ├── TopicAliasing_mult1.cpp │ │ │ ├── TopicAliasing_mult2.cpp │ │ │ ├── TopicAliasing_mult3.cpp │ │ │ ├── TopicAliasing_mult4.cpp │ │ │ ├── TopicAliasing_mult5.cpp │ │ │ ├── TopicStorageOrders_example.cpp │ │ │ ├── Triangular_solve.cpp │ │ │ ├── Tridiagonalization_Tridiagonalization_MatrixType.cpp │ │ │ ├── Tridiagonalization_compute.cpp │ │ │ ├── Tridiagonalization_decomposeInPlace.cpp │ │ │ ├── Tridiagonalization_diagonal.cpp │ │ │ ├── Tridiagonalization_householderCoefficients.cpp │ │ │ ├── Tridiagonalization_packedMatrix.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Block.cpp │ │ │ ├── Tutorial_AdvancedInitialization_CommaTemporary.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Join.cpp │ │ │ ├── Tutorial_AdvancedInitialization_LinSpaced.cpp │ │ │ ├── Tutorial_AdvancedInitialization_ThreeWays.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Zero.cpp │ │ │ ├── Tutorial_Map_rowmajor.cpp │ │ │ ├── Tutorial_Map_using.cpp │ │ │ ├── Tutorial_ReshapeMat2Mat.cpp │ │ │ ├── Tutorial_ReshapeMat2Vec.cpp │ │ │ ├── Tutorial_SlicingCol.cpp │ │ │ ├── Tutorial_SlicingVec.cpp │ │ │ ├── Tutorial_commainit_01.cpp │ │ │ ├── Tutorial_commainit_01b.cpp │ │ │ ├── Tutorial_commainit_02.cpp │ │ │ ├── Tutorial_solve_matrix_inverse.cpp │ │ │ ├── Tutorial_solve_multiple_rhs.cpp │ │ │ ├── Tutorial_solve_reuse_decomposition.cpp │ │ │ ├── Tutorial_solve_singular.cpp │ │ │ ├── Tutorial_solve_triangular.cpp │ │ │ ├── Tutorial_solve_triangular_inplace.cpp │ │ │ ├── VectorwiseOp_homogeneous.cpp │ │ │ ├── Vectorwise_reverse.cpp │ │ │ ├── _krazy │ │ │ ├── class_FullPivLU.cpp │ │ │ ├── compile_snippet.cpp.in │ │ │ ├── tut_arithmetic_redux_minmax.cpp │ │ │ ├── tut_arithmetic_transpose_aliasing.cpp │ │ │ ├── tut_arithmetic_transpose_conjugate.cpp │ │ │ ├── tut_arithmetic_transpose_inplace.cpp │ │ │ └── tut_matrix_assignment_resizing.cpp │ │ ├── special_examples │ │ │ ├── CMakeLists.txt │ │ │ ├── Tutorial_sparse_example.cpp │ │ │ ├── Tutorial_sparse_example_details.cpp │ │ │ └── random_cpp11.cpp │ │ └── tutorial.cpp │ ├── eigen3.pc.in │ ├── failtest │ │ ├── CMakeLists.txt │ │ ├── bdcsvd_int.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_0.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_1.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_2.cpp │ │ ├── block_on_const_type_actually_const_0.cpp │ │ ├── block_on_const_type_actually_const_1.cpp │ │ ├── colpivqr_int.cpp │ │ ├── const_qualified_block_method_retval_0.cpp │ │ ├── const_qualified_block_method_retval_1.cpp │ │ ├── const_qualified_diagonal_method_retval.cpp │ │ ├── const_qualified_transpose_method_retval.cpp │ │ ├── cwiseunaryview_nonconst_ctor_on_const_xpr.cpp │ │ ├── cwiseunaryview_on_const_type_actually_const.cpp │ │ ├── diagonal_nonconst_ctor_on_const_xpr.cpp │ │ ├── diagonal_on_const_type_actually_const.cpp │ │ ├── eigensolver_cplx.cpp │ │ ├── eigensolver_int.cpp │ │ ├── failtest_sanity_check.cpp │ │ ├── fullpivlu_int.cpp │ │ ├── fullpivqr_int.cpp │ │ ├── jacobisvd_int.cpp │ │ ├── ldlt_int.cpp │ │ ├── llt_int.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_0.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_1.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_2.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_3.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_4.cpp │ │ ├── map_on_const_type_actually_const_0.cpp │ │ ├── map_on_const_type_actually_const_1.cpp │ │ ├── partialpivlu_int.cpp │ │ ├── qr_int.cpp │ │ ├── ref_1.cpp │ │ ├── ref_2.cpp │ │ ├── ref_3.cpp │ │ ├── ref_4.cpp │ │ ├── ref_5.cpp │ │ ├── selfadjointview_nonconst_ctor_on_const_xpr.cpp │ │ ├── selfadjointview_on_const_type_actually_const.cpp │ │ ├── sparse_ref_1.cpp │ │ ├── sparse_ref_2.cpp │ │ ├── sparse_ref_3.cpp │ │ ├── sparse_ref_4.cpp │ │ ├── sparse_ref_5.cpp │ │ ├── sparse_storage_mismatch.cpp │ │ ├── swap_1.cpp │ │ ├── swap_2.cpp │ │ ├── ternary_1.cpp │ │ ├── ternary_2.cpp │ │ ├── transpose_nonconst_ctor_on_const_xpr.cpp │ │ ├── transpose_on_const_type_actually_const.cpp │ │ ├── triangularview_nonconst_ctor_on_const_xpr.cpp │ │ └── triangularview_on_const_type_actually_const.cpp │ ├── lapack │ │ ├── CMakeLists.txt │ │ ├── cholesky.cpp │ │ ├── clacgv.f │ │ ├── cladiv.f │ │ ├── clarf.f │ │ ├── clarfb.f │ │ ├── clarfg.f │ │ ├── clarft.f │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── dladiv.f │ │ ├── dlamch.f │ │ ├── dlapy2.f │ │ ├── dlapy3.f │ │ ├── dlarf.f │ │ ├── dlarfb.f │ │ ├── dlarfg.f │ │ ├── dlarft.f │ │ ├── double.cpp │ │ ├── dsecnd_NONE.f │ │ ├── eigenvalues.cpp │ │ ├── ilaclc.f │ │ ├── ilaclr.f │ │ ├── iladlc.f │ │ ├── iladlr.f │ │ ├── ilaslc.f │ │ ├── ilaslr.f │ │ ├── ilazlc.f │ │ ├── ilazlr.f │ │ ├── lapack_common.h │ │ ├── lu.cpp │ │ ├── second_NONE.f │ │ ├── single.cpp │ │ ├── sladiv.f │ │ ├── slamch.f │ │ ├── slapy2.f │ │ ├── slapy3.f │ │ ├── slarf.f │ │ ├── slarfb.f │ │ ├── slarfg.f │ │ ├── slarft.f │ │ ├── svd.cpp │ │ ├── zlacgv.f │ │ ├── zladiv.f │ │ ├── zlarf.f │ │ ├── zlarfb.f │ │ ├── zlarfg.f │ │ └── zlarft.f │ ├── scripts │ │ ├── CMakeLists.txt │ │ ├── buildtests.in │ │ ├── cdashtesting.cmake.in │ │ ├── check.in │ │ ├── debug.in │ │ ├── eigen_gen_credits.cpp │ │ ├── eigen_gen_docs │ │ ├── release.in │ │ └── relicense.py │ ├── signature_of_eigen3_matrix_library │ ├── test │ │ ├── CMakeLists.txt │ │ ├── adjoint.cpp │ │ ├── array.cpp │ │ ├── array_for_matrix.cpp │ │ ├── array_of_string.cpp │ │ ├── array_replicate.cpp │ │ ├── array_reverse.cpp │ │ ├── bandmatrix.cpp │ │ ├── basicstuff.cpp │ │ ├── bdcsvd.cpp │ │ ├── bicgstab.cpp │ │ ├── block.cpp │ │ ├── boostmultiprec.cpp │ │ ├── bug1213.cpp │ │ ├── bug1213.h │ │ ├── bug1213_main.cpp │ │ ├── cholesky.cpp │ │ ├── cholmod_support.cpp │ │ ├── commainitializer.cpp │ │ ├── conjugate_gradient.cpp │ │ ├── conservative_resize.cpp │ │ ├── corners.cpp │ │ ├── ctorleak.cpp │ │ ├── cuda_basic.cu │ │ ├── cuda_common.h │ │ ├── denseLM.cpp │ │ ├── dense_storage.cpp │ │ ├── determinant.cpp │ │ ├── diagonal.cpp │ │ ├── diagonalmatrices.cpp │ │ ├── dontalign.cpp │ │ ├── dynalloc.cpp │ │ ├── eigen2support.cpp │ │ ├── eigensolver_complex.cpp │ │ ├── eigensolver_generalized_real.cpp │ │ ├── eigensolver_generic.cpp │ │ ├── eigensolver_selfadjoint.cpp │ │ ├── evaluator_common.h │ │ ├── evaluators.cpp │ │ ├── exceptions.cpp │ │ ├── fastmath.cpp │ │ ├── first_aligned.cpp │ │ ├── geo_alignedbox.cpp │ │ ├── geo_eulerangles.cpp │ │ ├── geo_homogeneous.cpp │ │ ├── geo_hyperplane.cpp │ │ ├── geo_orthomethods.cpp │ │ ├── geo_parametrizedline.cpp │ │ ├── geo_quaternion.cpp │ │ ├── geo_transformations.cpp │ │ ├── half_float.cpp │ │ ├── hessenberg.cpp │ │ ├── householder.cpp │ │ ├── incomplete_cholesky.cpp │ │ ├── inplace_decomposition.cpp │ │ ├── integer_types.cpp │ │ ├── inverse.cpp │ │ ├── is_same_dense.cpp │ │ ├── jacobi.cpp │ │ ├── jacobisvd.cpp │ │ ├── linearstructure.cpp │ │ ├── lscg.cpp │ │ ├── lu.cpp │ │ ├── main.h │ │ ├── mapped_matrix.cpp │ │ ├── mapstaticmethods.cpp │ │ ├── mapstride.cpp │ │ ├── meta.cpp │ │ ├── metis_support.cpp │ │ ├── miscmatrices.cpp │ │ ├── mixingtypes.cpp │ │ ├── mpl2only.cpp │ │ ├── nesting_ops.cpp │ │ ├── nomalloc.cpp │ │ ├── nullary.cpp │ │ ├── packetmath.cpp │ │ ├── pardiso_support.cpp │ │ ├── pastix_support.cpp │ │ ├── permutationmatrices.cpp │ │ ├── prec_inverse_4x4.cpp │ │ ├── product.h │ │ ├── product_extra.cpp │ │ ├── product_large.cpp │ │ ├── product_mmtr.cpp │ │ ├── product_notemporary.cpp │ │ ├── product_selfadjoint.cpp │ │ ├── product_small.cpp │ │ ├── product_symm.cpp │ │ ├── product_syrk.cpp │ │ ├── product_trmm.cpp │ │ ├── product_trmv.cpp │ │ ├── product_trsolve.cpp │ │ ├── qr.cpp │ │ ├── qr_colpivoting.cpp │ │ ├── qr_fullpivoting.cpp │ │ ├── qtvector.cpp │ │ ├── rand.cpp │ │ ├── real_qz.cpp │ │ ├── redux.cpp │ │ ├── ref.cpp │ │ ├── resize.cpp │ │ ├── rvalue_types.cpp │ │ ├── schur_complex.cpp │ │ ├── schur_real.cpp │ │ ├── selfadjoint.cpp │ │ ├── simplicial_cholesky.cpp │ │ ├── sizeof.cpp │ │ ├── sizeoverflow.cpp │ │ ├── smallvectors.cpp │ │ ├── sparse.h │ │ ├── sparseLM.cpp │ │ ├── sparse_basic.cpp │ │ ├── sparse_block.cpp │ │ ├── sparse_permutations.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_ref.cpp │ │ ├── sparse_solver.h │ │ ├── sparse_solvers.cpp │ │ ├── sparse_vector.cpp │ │ ├── sparselu.cpp │ │ ├── sparseqr.cpp │ │ ├── special_numbers.cpp │ │ ├── spqr_support.cpp │ │ ├── stable_norm.cpp │ │ ├── stddeque.cpp │ │ ├── stddeque_overload.cpp │ │ ├── stdlist.cpp │ │ ├── stdlist_overload.cpp │ │ ├── stdvector.cpp │ │ ├── stdvector_overload.cpp │ │ ├── superlu_support.cpp │ │ ├── svd_common.h │ │ ├── svd_fill.h │ │ ├── swap.cpp │ │ ├── triangular.cpp │ │ ├── umeyama.cpp │ │ ├── umfpack_support.cpp │ │ ├── unalignedassert.cpp │ │ ├── unalignedcount.cpp │ │ ├── upperbidiagonalization.cpp │ │ ├── vectorization_logic.cpp │ │ ├── vectorwiseop.cpp │ │ ├── visitor.cpp │ │ └── zerosized.cpp │ └── unsupported │ │ ├── CMakeLists.txt │ │ ├── Eigen │ │ ├── AdolcForward │ │ ├── AlignedVector3 │ │ ├── ArpackSupport │ │ ├── AutoDiff │ │ ├── BVH │ │ ├── CMakeLists.txt │ │ ├── CXX11 │ │ │ ├── CMakeLists.txt │ │ │ ├── Tensor │ │ │ ├── TensorSymmetry │ │ │ ├── ThreadPool │ │ │ └── src │ │ │ │ ├── Tensor │ │ │ │ ├── README.md │ │ │ │ ├── Tensor.h │ │ │ │ ├── TensorArgMax.h │ │ │ │ ├── TensorAssign.h │ │ │ │ ├── TensorBase.h │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ ├── TensorChipping.h │ │ │ │ ├── TensorConcatenation.h │ │ │ │ ├── TensorContraction.h │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ ├── TensorConversion.h │ │ │ │ ├── TensorConvolution.h │ │ │ │ ├── TensorCostModel.h │ │ │ │ ├── TensorCustomOp.h │ │ │ │ ├── TensorDevice.h │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ ├── TensorDeviceDefault.h │ │ │ │ ├── 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 │ │ │ │ ├── TensorReduction.h │ │ │ │ ├── TensorReductionCuda.h │ │ │ │ ├── TensorRef.h │ │ │ │ ├── TensorReverse.h │ │ │ │ ├── TensorScan.h │ │ │ │ ├── TensorShuffling.h │ │ │ │ ├── TensorStorage.h │ │ │ │ ├── TensorStriding.h │ │ │ │ ├── TensorTraits.h │ │ │ │ ├── TensorUInt128.h │ │ │ │ └── TensorVolumePatch.h │ │ │ │ ├── TensorSymmetry │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ ├── StaticSymmetry.h │ │ │ │ ├── Symmetry.h │ │ │ │ └── util │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ ├── ThreadPool │ │ │ │ ├── EventCount.h │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ ├── RunQueue.h │ │ │ │ ├── SimpleThreadPool.h │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ ├── ThreadLocal.h │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ └── ThreadYield.h │ │ │ │ └── util │ │ │ │ ├── CXX11Meta.h │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ ├── EmulateArray.h │ │ │ │ ├── EmulateCXX11Meta.h │ │ │ │ └── MaxSizeVector.h │ │ ├── EulerAngles │ │ ├── FFT │ │ ├── IterativeSolvers │ │ ├── KroneckerProduct │ │ ├── LevenbergMarquardt │ │ ├── MPRealSupport │ │ ├── MatrixFunctions │ │ ├── MoreVectorization │ │ ├── NonLinearOptimization │ │ ├── NumericalDiff │ │ ├── OpenGLSupport │ │ ├── Polynomials │ │ ├── Skyline │ │ ├── SparseExtra │ │ ├── SpecialFunctions │ │ ├── Splines │ │ ├── _DS_Store │ │ └── src │ │ │ ├── AutoDiff │ │ │ ├── AutoDiffJacobian.h │ │ │ ├── AutoDiffScalar.h │ │ │ └── AutoDiffVector.h │ │ │ ├── BVH │ │ │ ├── BVAlgorithms.h │ │ │ └── KdBVH.h │ │ │ ├── Eigenvalues │ │ │ └── ArpackSelfAdjointEigenSolver.h │ │ │ ├── EulerAngles │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.h │ │ │ └── EulerSystem.h │ │ │ ├── FFT │ │ │ ├── ei_fftw_impl.h │ │ │ └── ei_kissfft_impl.h │ │ │ ├── IterativeSolvers │ │ │ ├── ConstrainedConjGrad.h │ │ │ ├── DGMRES.h │ │ │ ├── GMRES.h │ │ │ ├── IncompleteLU.h │ │ │ ├── IterationController.h │ │ │ ├── MINRES.h │ │ │ └── Scaling.h │ │ │ ├── KroneckerProduct │ │ │ └── KroneckerTensorProduct.h │ │ │ ├── LevenbergMarquardt │ │ │ ├── CopyrightMINPACK.txt │ │ │ ├── LMcovar.h │ │ │ ├── LMonestep.h │ │ │ ├── LMpar.h │ │ │ ├── LMqrsolv.h │ │ │ └── LevenbergMarquardt.h │ │ │ ├── MatrixFunctions │ │ │ ├── MatrixExponential.h │ │ │ ├── MatrixFunction.h │ │ │ ├── MatrixLogarithm.h │ │ │ ├── MatrixPower.h │ │ │ ├── MatrixSquareRoot.h │ │ │ └── StemFunction.h │ │ │ ├── MoreVectorization │ │ │ └── MathFunctions.h │ │ │ ├── NonLinearOptimization │ │ │ ├── HybridNonLinearSolver.h │ │ │ ├── LevenbergMarquardt.h │ │ │ ├── chkder.h │ │ │ ├── covar.h │ │ │ ├── dogleg.h │ │ │ ├── fdjac1.h │ │ │ ├── lmpar.h │ │ │ ├── qrsolv.h │ │ │ ├── r1mpyq.h │ │ │ ├── r1updt.h │ │ │ └── rwupdt.h │ │ │ ├── NumericalDiff │ │ │ └── NumericalDiff.h │ │ │ ├── Polynomials │ │ │ ├── Companion.h │ │ │ ├── PolynomialSolver.h │ │ │ └── PolynomialUtils.h │ │ │ ├── Skyline │ │ │ ├── SkylineInplaceLU.h │ │ │ ├── SkylineMatrix.h │ │ │ ├── SkylineMatrixBase.h │ │ │ ├── SkylineProduct.h │ │ │ ├── SkylineStorage.h │ │ │ └── SkylineUtil.h │ │ │ ├── SparseExtra │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ ├── BlockSparseMatrix.h │ │ │ ├── DynamicSparseMatrix.h │ │ │ ├── MarketIO.h │ │ │ ├── MatrixMarketIterator.h │ │ │ └── RandomSetter.h │ │ │ ├── SpecialFunctions │ │ │ ├── SpecialFunctionsArrayAPI.h │ │ │ ├── SpecialFunctionsFunctors.h │ │ │ ├── SpecialFunctionsHalf.h │ │ │ ├── SpecialFunctionsImpl.h │ │ │ ├── SpecialFunctionsPacketMath.h │ │ │ └── arch │ │ │ │ └── CUDA │ │ │ │ └── CudaSpecialFunctions.h │ │ │ └── Splines │ │ │ ├── Spline.h │ │ │ ├── SplineFitting.h │ │ │ └── SplineFwd.h │ │ ├── README.txt │ │ ├── _DS_Store │ │ ├── bench │ │ └── bench_svd.cpp │ │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Overview.dox │ │ ├── eigendoxy_layout.xml.in │ │ ├── examples │ │ │ ├── BVH_Example.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.cpp │ │ │ ├── FFT.cpp │ │ │ ├── MatrixExponential.cpp │ │ │ ├── MatrixFunction.cpp │ │ │ ├── MatrixLogarithm.cpp │ │ │ ├── MatrixPower.cpp │ │ │ ├── MatrixPower_optimal.cpp │ │ │ ├── MatrixSine.cpp │ │ │ ├── MatrixSinh.cpp │ │ │ ├── MatrixSquareRoot.cpp │ │ │ ├── PolynomialSolver1.cpp │ │ │ └── PolynomialUtils1.cpp │ │ └── snippets │ │ │ └── CMakeLists.txt │ │ └── test │ │ ├── BVH.cpp │ │ ├── CMakeLists.txt │ │ ├── EulerAngles.cpp │ │ ├── FFT.cpp │ │ ├── FFTW.cpp │ │ ├── NonLinearOptimization.cpp │ │ ├── NumericalDiff.cpp │ │ ├── alignedvector3.cpp │ │ ├── autodiff.cpp │ │ ├── autodiff_scalar.cpp │ │ ├── cxx11_eventcount.cpp │ │ ├── cxx11_meta.cpp │ │ ├── cxx11_non_blocking_thread_pool.cpp │ │ ├── cxx11_runqueue.cpp │ │ ├── cxx11_tensor_argmax.cpp │ │ ├── cxx11_tensor_argmax_cuda.cu │ │ ├── cxx11_tensor_assign.cpp │ │ ├── cxx11_tensor_broadcasting.cpp │ │ ├── cxx11_tensor_cast_float16_cuda.cu │ │ ├── cxx11_tensor_casts.cpp │ │ ├── cxx11_tensor_chipping.cpp │ │ ├── cxx11_tensor_comparisons.cpp │ │ ├── cxx11_tensor_complex_cuda.cu │ │ ├── cxx11_tensor_complex_cwise_ops_cuda.cu │ │ ├── cxx11_tensor_concatenation.cpp │ │ ├── cxx11_tensor_const.cpp │ │ ├── cxx11_tensor_contract_cuda.cu │ │ ├── cxx11_tensor_contraction.cpp │ │ ├── cxx11_tensor_convolution.cpp │ │ ├── cxx11_tensor_cuda.cu │ │ ├── cxx11_tensor_custom_index.cpp │ │ ├── cxx11_tensor_custom_op.cpp │ │ ├── cxx11_tensor_device.cu │ │ ├── cxx11_tensor_dimension.cpp │ │ ├── cxx11_tensor_empty.cpp │ │ ├── cxx11_tensor_expr.cpp │ │ ├── cxx11_tensor_fft.cpp │ │ ├── cxx11_tensor_fixed_size.cpp │ │ ├── cxx11_tensor_forced_eval.cpp │ │ ├── cxx11_tensor_generator.cpp │ │ ├── cxx11_tensor_ifft.cpp │ │ ├── cxx11_tensor_image_patch.cpp │ │ ├── cxx11_tensor_index_list.cpp │ │ ├── cxx11_tensor_inflation.cpp │ │ ├── cxx11_tensor_intdiv.cpp │ │ ├── cxx11_tensor_io.cpp │ │ ├── cxx11_tensor_layout_swap.cpp │ │ ├── cxx11_tensor_lvalue.cpp │ │ ├── cxx11_tensor_map.cpp │ │ ├── cxx11_tensor_math.cpp │ │ ├── cxx11_tensor_mixed_indices.cpp │ │ ├── cxx11_tensor_morphing.cpp │ │ ├── cxx11_tensor_notification.cpp │ │ ├── cxx11_tensor_of_complex.cpp │ │ ├── cxx11_tensor_of_const_values.cpp │ │ ├── cxx11_tensor_of_float16_cuda.cu │ │ ├── cxx11_tensor_of_strings.cpp │ │ ├── cxx11_tensor_padding.cpp │ │ ├── cxx11_tensor_patch.cpp │ │ ├── cxx11_tensor_random.cpp │ │ ├── cxx11_tensor_random_cuda.cu │ │ ├── cxx11_tensor_reduction.cpp │ │ ├── cxx11_tensor_reduction_cuda.cu │ │ ├── cxx11_tensor_ref.cpp │ │ ├── cxx11_tensor_reverse.cpp │ │ ├── cxx11_tensor_roundings.cpp │ │ ├── cxx11_tensor_scan.cpp │ │ ├── cxx11_tensor_scan_cuda.cu │ │ ├── cxx11_tensor_shuffling.cpp │ │ ├── cxx11_tensor_simple.cpp │ │ ├── cxx11_tensor_striding.cpp │ │ ├── cxx11_tensor_sugar.cpp │ │ ├── cxx11_tensor_symmetry.cpp │ │ ├── cxx11_tensor_thread_pool.cpp │ │ ├── cxx11_tensor_uint128.cpp │ │ ├── cxx11_tensor_volume_patch.cpp │ │ ├── dgmres.cpp │ │ ├── forward_adolc.cpp │ │ ├── gmres.cpp │ │ ├── kronecker_product.cpp │ │ ├── levenberg_marquardt.cpp │ │ ├── matrix_exponential.cpp │ │ ├── matrix_function.cpp │ │ ├── matrix_functions.h │ │ ├── matrix_power.cpp │ │ ├── matrix_square_root.cpp │ │ ├── minres.cpp │ │ ├── mpreal │ │ └── mpreal.h │ │ ├── mpreal_support.cpp │ │ ├── openglsupport.cpp │ │ ├── polynomialsolver.cpp │ │ ├── polynomialutils.cpp │ │ ├── sparse_extra.cpp │ │ ├── special_functions.cpp │ │ └── splines.cpp ├── google │ └── protobuf │ │ ├── .deps │ │ ├── .dirstamp │ │ ├── any.Plo │ │ ├── any.pb.Plo │ │ ├── api.pb.Plo │ │ ├── arena.Plo │ │ ├── arenastring.Plo │ │ ├── descriptor.Plo │ │ ├── descriptor.pb.Plo │ │ ├── descriptor_database.Plo │ │ ├── duration.pb.Plo │ │ ├── dynamic_message.Plo │ │ ├── empty.pb.Plo │ │ ├── extension_set.Plo │ │ ├── extension_set_heavy.Plo │ │ ├── field_mask.pb.Plo │ │ ├── generated_message_reflection.Plo │ │ ├── generated_message_util.Plo │ │ ├── map_field.Plo │ │ ├── message.Plo │ │ ├── message_lite.Plo │ │ ├── no_warning_test-any_test.pb.Po │ │ ├── no_warning_test-map_lite_unittest.pb.Po │ │ ├── no_warning_test-map_proto2_unittest.pb.Po │ │ ├── no_warning_test-map_unittest.pb.Po │ │ ├── no_warning_test-unittest.pb.Po │ │ ├── no_warning_test-unittest_arena.pb.Po │ │ ├── no_warning_test-unittest_custom_options.pb.Po │ │ ├── no_warning_test-unittest_drop_unknown_fields.pb.Po │ │ ├── no_warning_test-unittest_embed_optimize_for.pb.Po │ │ ├── no_warning_test-unittest_empty.pb.Po │ │ ├── no_warning_test-unittest_enormous_descriptor.pb.Po │ │ ├── no_warning_test-unittest_import.pb.Po │ │ ├── no_warning_test-unittest_import_lite.pb.Po │ │ ├── no_warning_test-unittest_import_public.pb.Po │ │ ├── no_warning_test-unittest_import_public_lite.pb.Po │ │ ├── no_warning_test-unittest_lite.pb.Po │ │ ├── no_warning_test-unittest_lite_imports_nonlite.pb.Po │ │ ├── no_warning_test-unittest_mset.pb.Po │ │ ├── no_warning_test-unittest_mset_wire_format.pb.Po │ │ ├── no_warning_test-unittest_no_arena.pb.Po │ │ ├── no_warning_test-unittest_no_arena_import.pb.Po │ │ ├── no_warning_test-unittest_no_arena_lite.pb.Po │ │ ├── no_warning_test-unittest_no_field_presence.pb.Po │ │ ├── no_warning_test-unittest_no_generic_services.pb.Po │ │ ├── no_warning_test-unittest_optimize_for.pb.Po │ │ ├── no_warning_test-unittest_preserve_unknown_enum.pb.Po │ │ ├── no_warning_test-unittest_preserve_unknown_enum2.pb.Po │ │ ├── no_warning_test-unittest_proto3_arena.pb.Po │ │ ├── no_warning_test-unittest_proto3_arena_lite.pb.Po │ │ ├── no_warning_test-unittest_proto3_lite.pb.Po │ │ ├── no_warning_test-unittest_well_known_types.pb.Po │ │ ├── protobuf_lazy_descriptor_test-any_test.pb.Po │ │ ├── protobuf_lazy_descriptor_test-arena_test_util.Po │ │ ├── protobuf_lazy_descriptor_test-map_lite_unittest.pb.Po │ │ ├── protobuf_lazy_descriptor_test-map_proto2_unittest.pb.Po │ │ ├── protobuf_lazy_descriptor_test-map_test_util.Po │ │ ├── protobuf_lazy_descriptor_test-map_unittest.pb.Po │ │ ├── protobuf_lazy_descriptor_test-test_util.Po │ │ ├── protobuf_lazy_descriptor_test-unittest.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_arena.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_custom_options.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_drop_unknown_fields.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_embed_optimize_for.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_empty.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_enormous_descriptor.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_import.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_import_lite.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_import_public.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_import_public_lite.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_lite.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_lite_imports_nonlite.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_mset.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_mset_wire_format.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_no_arena.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_no_arena_import.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_no_arena_lite.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_no_field_presence.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_no_generic_services.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_optimize_for.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_preserve_unknown_enum.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_preserve_unknown_enum2.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_proto3_arena.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_proto3_arena_lite.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_proto3_lite.pb.Po │ │ ├── protobuf_lazy_descriptor_test-unittest_well_known_types.pb.Po │ │ ├── protobuf_lite_arena_test-arena_test_util.Po │ │ ├── protobuf_lite_arena_test-lite_arena_unittest.Po │ │ ├── protobuf_lite_arena_test-map_lite_test_util.Po │ │ ├── protobuf_lite_arena_test-map_lite_unittest.pb.Po │ │ ├── protobuf_lite_arena_test-test_util_lite.Po │ │ ├── protobuf_lite_arena_test-unittest_import_lite.pb.Po │ │ ├── protobuf_lite_arena_test-unittest_import_public_lite.pb.Po │ │ ├── protobuf_lite_arena_test-unittest_lite.pb.Po │ │ ├── protobuf_lite_arena_test-unittest_no_arena_lite.pb.Po │ │ ├── protobuf_lite_test-arena_test_util.Po │ │ ├── protobuf_lite_test-lite_unittest.Po │ │ ├── protobuf_lite_test-map_lite_test_util.Po │ │ ├── protobuf_lite_test-map_lite_unittest.pb.Po │ │ ├── protobuf_lite_test-test_util_lite.Po │ │ ├── protobuf_lite_test-unittest_import_lite.pb.Po │ │ ├── protobuf_lite_test-unittest_import_public_lite.pb.Po │ │ ├── protobuf_lite_test-unittest_lite.pb.Po │ │ ├── protobuf_lite_test-unittest_no_arena_lite.pb.Po │ │ ├── protobuf_test-any_test.Po │ │ ├── protobuf_test-any_test.pb.Po │ │ ├── protobuf_test-arena_test_util.Po │ │ ├── protobuf_test-arena_unittest.Po │ │ ├── protobuf_test-arenastring_unittest.Po │ │ ├── protobuf_test-descriptor_database_unittest.Po │ │ ├── protobuf_test-descriptor_unittest.Po │ │ ├── protobuf_test-drop_unknown_fields_test.Po │ │ ├── protobuf_test-dynamic_message_unittest.Po │ │ ├── protobuf_test-extension_set_unittest.Po │ │ ├── protobuf_test-generated_message_reflection_unittest.Po │ │ ├── protobuf_test-map_field_test.Po │ │ ├── protobuf_test-map_lite_unittest.pb.Po │ │ ├── protobuf_test-map_proto2_unittest.pb.Po │ │ ├── protobuf_test-map_test.Po │ │ ├── protobuf_test-map_test_util.Po │ │ ├── protobuf_test-map_unittest.pb.Po │ │ ├── protobuf_test-message_unittest.Po │ │ ├── protobuf_test-no_field_presence_test.Po │ │ ├── protobuf_test-preserve_unknown_enum_test.Po │ │ ├── protobuf_test-proto3_arena_lite_unittest.Po │ │ ├── protobuf_test-proto3_arena_unittest.Po │ │ ├── protobuf_test-proto3_lite_unittest.Po │ │ ├── protobuf_test-reflection_ops_unittest.Po │ │ ├── protobuf_test-repeated_field_reflection_unittest.Po │ │ ├── protobuf_test-repeated_field_unittest.Po │ │ ├── protobuf_test-test_util.Po │ │ ├── protobuf_test-text_format_unittest.Po │ │ ├── protobuf_test-unittest.pb.Po │ │ ├── protobuf_test-unittest_arena.pb.Po │ │ ├── protobuf_test-unittest_custom_options.pb.Po │ │ ├── protobuf_test-unittest_drop_unknown_fields.pb.Po │ │ ├── protobuf_test-unittest_embed_optimize_for.pb.Po │ │ ├── protobuf_test-unittest_empty.pb.Po │ │ ├── protobuf_test-unittest_enormous_descriptor.pb.Po │ │ ├── protobuf_test-unittest_import.pb.Po │ │ ├── protobuf_test-unittest_import_lite.pb.Po │ │ ├── protobuf_test-unittest_import_public.pb.Po │ │ ├── protobuf_test-unittest_import_public_lite.pb.Po │ │ ├── protobuf_test-unittest_lite.pb.Po │ │ ├── protobuf_test-unittest_lite_imports_nonlite.pb.Po │ │ ├── protobuf_test-unittest_mset.pb.Po │ │ ├── protobuf_test-unittest_mset_wire_format.pb.Po │ │ ├── protobuf_test-unittest_no_arena.pb.Po │ │ ├── protobuf_test-unittest_no_arena_import.pb.Po │ │ ├── protobuf_test-unittest_no_arena_lite.pb.Po │ │ ├── protobuf_test-unittest_no_field_presence.pb.Po │ │ ├── protobuf_test-unittest_no_generic_services.pb.Po │ │ ├── protobuf_test-unittest_optimize_for.pb.Po │ │ ├── protobuf_test-unittest_preserve_unknown_enum.pb.Po │ │ ├── protobuf_test-unittest_preserve_unknown_enum2.pb.Po │ │ ├── protobuf_test-unittest_proto3_arena.pb.Po │ │ ├── protobuf_test-unittest_proto3_arena_lite.pb.Po │ │ ├── protobuf_test-unittest_proto3_lite.pb.Po │ │ ├── protobuf_test-unittest_well_known_types.pb.Po │ │ ├── protobuf_test-unknown_field_set_unittest.Po │ │ ├── protobuf_test-well_known_types_unittest.Po │ │ ├── protobuf_test-wire_format_unittest.Po │ │ ├── reflection_ops.Plo │ │ ├── repeated_field.Plo │ │ ├── service.Plo │ │ ├── source_context.pb.Plo │ │ ├── struct.pb.Plo │ │ ├── text_format.Plo │ │ ├── timestamp.pb.Plo │ │ ├── type.pb.Plo │ │ ├── unknown_field_set.Plo │ │ ├── wire_format.Plo │ │ ├── wire_format_lite.Plo │ │ └── wrappers.pb.Plo │ │ ├── .dirstamp │ │ ├── any.cc │ │ ├── any.h │ │ ├── any.lo │ │ ├── any.o │ │ ├── any.pb.cc │ │ ├── any.pb.h │ │ ├── any.pb.lo │ │ ├── any.pb.o │ │ ├── any.proto │ │ ├── any_test.cc │ │ ├── any_test.pb.cc │ │ ├── any_test.pb.h │ │ ├── any_test.proto │ │ ├── api.pb.cc │ │ ├── api.pb.h │ │ ├── api.pb.lo │ │ ├── api.pb.o │ │ ├── api.proto │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── arena.lo │ │ ├── arena.o │ │ ├── arena_test_util.cc │ │ ├── arena_test_util.h │ │ ├── arena_unittest.cc │ │ ├── arenastring.cc │ │ ├── arenastring.h │ │ ├── arenastring.lo │ │ ├── arenastring.o │ │ ├── arenastring_unittest.cc │ │ ├── compiler │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── code_generator.Plo │ │ │ ├── command_line_interface.Plo │ │ │ ├── importer.Plo │ │ │ ├── main.Po │ │ │ ├── parser.Plo │ │ │ ├── plugin.Plo │ │ │ ├── plugin.pb.Plo │ │ │ ├── protobuf_test-command_line_interface_unittest.Po │ │ │ ├── protobuf_test-importer_unittest.Po │ │ │ ├── protobuf_test-mock_code_generator.Po │ │ │ ├── protobuf_test-parser_unittest.Po │ │ │ ├── subprocess.Plo │ │ │ ├── test_plugin-mock_code_generator.Po │ │ │ ├── test_plugin-test_plugin.Po │ │ │ └── zip_writer.Plo │ │ ├── .dirstamp │ │ ├── code_generator.cc │ │ ├── code_generator.h │ │ ├── code_generator.lo │ │ ├── code_generator.o │ │ ├── command_line_interface.cc │ │ ├── command_line_interface.h │ │ ├── command_line_interface.lo │ │ ├── command_line_interface.o │ │ ├── command_line_interface_unittest.cc │ │ ├── cpp │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── cpp_enum.Plo │ │ │ │ ├── cpp_enum_field.Plo │ │ │ │ ├── cpp_extension.Plo │ │ │ │ ├── cpp_field.Plo │ │ │ │ ├── cpp_file.Plo │ │ │ │ ├── cpp_generator.Plo │ │ │ │ ├── cpp_helpers.Plo │ │ │ │ ├── cpp_map_field.Plo │ │ │ │ ├── cpp_message.Plo │ │ │ │ ├── cpp_message_field.Plo │ │ │ │ ├── cpp_primitive_field.Plo │ │ │ │ ├── cpp_service.Plo │ │ │ │ ├── cpp_string_field.Plo │ │ │ │ ├── no_warning_test-cpp_test_bad_identifiers.pb.Po │ │ │ │ ├── no_warning_test-cpp_test_large_enum_value.pb.Po │ │ │ │ ├── protobuf_lazy_descriptor_test-cpp_test_bad_identifiers.pb.Po │ │ │ │ ├── protobuf_lazy_descriptor_test-cpp_test_large_enum_value.pb.Po │ │ │ │ ├── protobuf_lazy_descriptor_test-cpp_unittest.Po │ │ │ │ ├── protobuf_test-cpp_bootstrap_unittest.Po │ │ │ │ ├── protobuf_test-cpp_plugin_unittest.Po │ │ │ │ ├── protobuf_test-cpp_test_bad_identifiers.pb.Po │ │ │ │ ├── protobuf_test-cpp_test_large_enum_value.pb.Po │ │ │ │ ├── protobuf_test-cpp_unittest.Po │ │ │ │ └── protobuf_test-metadata_test.Po │ │ │ ├── .dirstamp │ │ │ ├── cpp_bootstrap_unittest.cc │ │ │ ├── cpp_enum.cc │ │ │ ├── cpp_enum.h │ │ │ ├── cpp_enum.lo │ │ │ ├── cpp_enum.o │ │ │ ├── cpp_enum_field.cc │ │ │ ├── cpp_enum_field.h │ │ │ ├── cpp_enum_field.lo │ │ │ ├── cpp_enum_field.o │ │ │ ├── cpp_extension.cc │ │ │ ├── cpp_extension.h │ │ │ ├── cpp_extension.lo │ │ │ ├── cpp_extension.o │ │ │ ├── cpp_field.cc │ │ │ ├── cpp_field.h │ │ │ ├── cpp_field.lo │ │ │ ├── cpp_field.o │ │ │ ├── cpp_file.cc │ │ │ ├── cpp_file.h │ │ │ ├── cpp_file.lo │ │ │ ├── cpp_file.o │ │ │ ├── cpp_generator.cc │ │ │ ├── cpp_generator.h │ │ │ ├── cpp_generator.lo │ │ │ ├── cpp_generator.o │ │ │ ├── cpp_helpers.cc │ │ │ ├── cpp_helpers.h │ │ │ ├── cpp_helpers.lo │ │ │ ├── cpp_helpers.o │ │ │ ├── cpp_map_field.cc │ │ │ ├── cpp_map_field.h │ │ │ ├── cpp_map_field.lo │ │ │ ├── cpp_map_field.o │ │ │ ├── cpp_message.cc │ │ │ ├── cpp_message.h │ │ │ ├── cpp_message.lo │ │ │ ├── cpp_message.o │ │ │ ├── cpp_message_field.cc │ │ │ ├── cpp_message_field.h │ │ │ ├── cpp_message_field.lo │ │ │ ├── cpp_message_field.o │ │ │ ├── cpp_options.h │ │ │ ├── cpp_plugin_unittest.cc │ │ │ ├── cpp_primitive_field.cc │ │ │ ├── cpp_primitive_field.h │ │ │ ├── cpp_primitive_field.lo │ │ │ ├── cpp_primitive_field.o │ │ │ ├── cpp_service.cc │ │ │ ├── cpp_service.h │ │ │ ├── cpp_service.lo │ │ │ ├── cpp_service.o │ │ │ ├── cpp_string_field.cc │ │ │ ├── cpp_string_field.h │ │ │ ├── cpp_string_field.lo │ │ │ ├── cpp_string_field.o │ │ │ ├── cpp_test_bad_identifiers.pb.cc │ │ │ ├── cpp_test_bad_identifiers.pb.h │ │ │ ├── cpp_test_bad_identifiers.proto │ │ │ ├── cpp_test_large_enum_value.pb.cc │ │ │ ├── cpp_test_large_enum_value.pb.h │ │ │ ├── cpp_test_large_enum_value.proto │ │ │ ├── cpp_unittest.cc │ │ │ ├── cpp_unittest.h │ │ │ └── metadata_test.cc │ │ ├── csharp │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── csharp_doc_comment.Plo │ │ │ │ ├── csharp_enum.Plo │ │ │ │ ├── csharp_enum_field.Plo │ │ │ │ ├── csharp_field_base.Plo │ │ │ │ ├── csharp_generator.Plo │ │ │ │ ├── csharp_helpers.Plo │ │ │ │ ├── csharp_map_field.Plo │ │ │ │ ├── csharp_message.Plo │ │ │ │ ├── csharp_message_field.Plo │ │ │ │ ├── csharp_primitive_field.Plo │ │ │ │ ├── csharp_reflection_class.Plo │ │ │ │ ├── csharp_repeated_enum_field.Plo │ │ │ │ ├── csharp_repeated_message_field.Plo │ │ │ │ ├── csharp_repeated_primitive_field.Plo │ │ │ │ ├── csharp_source_generator_base.Plo │ │ │ │ ├── csharp_wrapper_field.Plo │ │ │ │ ├── protobuf_test-csharp_bootstrap_unittest.Po │ │ │ │ └── protobuf_test-csharp_generator_unittest.Po │ │ │ ├── .dirstamp │ │ │ ├── csharp_bootstrap_unittest.cc │ │ │ ├── csharp_doc_comment.cc │ │ │ ├── csharp_doc_comment.h │ │ │ ├── csharp_doc_comment.lo │ │ │ ├── csharp_doc_comment.o │ │ │ ├── csharp_enum.cc │ │ │ ├── csharp_enum.h │ │ │ ├── csharp_enum.lo │ │ │ ├── csharp_enum.o │ │ │ ├── csharp_enum_field.cc │ │ │ ├── csharp_enum_field.h │ │ │ ├── csharp_enum_field.lo │ │ │ ├── csharp_enum_field.o │ │ │ ├── csharp_field_base.cc │ │ │ ├── csharp_field_base.h │ │ │ ├── csharp_field_base.lo │ │ │ ├── csharp_field_base.o │ │ │ ├── csharp_generator.cc │ │ │ ├── csharp_generator.h │ │ │ ├── csharp_generator.lo │ │ │ ├── csharp_generator.o │ │ │ ├── csharp_generator_unittest.cc │ │ │ ├── csharp_helpers.cc │ │ │ ├── csharp_helpers.h │ │ │ ├── csharp_helpers.lo │ │ │ ├── csharp_helpers.o │ │ │ ├── csharp_map_field.cc │ │ │ ├── csharp_map_field.h │ │ │ ├── csharp_map_field.lo │ │ │ ├── csharp_map_field.o │ │ │ ├── csharp_message.cc │ │ │ ├── csharp_message.h │ │ │ ├── csharp_message.lo │ │ │ ├── csharp_message.o │ │ │ ├── csharp_message_field.cc │ │ │ ├── csharp_message_field.h │ │ │ ├── csharp_message_field.lo │ │ │ ├── csharp_message_field.o │ │ │ ├── csharp_names.h │ │ │ ├── csharp_options.h │ │ │ ├── csharp_primitive_field.cc │ │ │ ├── csharp_primitive_field.h │ │ │ ├── csharp_primitive_field.lo │ │ │ ├── csharp_primitive_field.o │ │ │ ├── csharp_reflection_class.cc │ │ │ ├── csharp_reflection_class.h │ │ │ ├── csharp_reflection_class.lo │ │ │ ├── csharp_reflection_class.o │ │ │ ├── csharp_repeated_enum_field.cc │ │ │ ├── csharp_repeated_enum_field.h │ │ │ ├── csharp_repeated_enum_field.lo │ │ │ ├── csharp_repeated_enum_field.o │ │ │ ├── csharp_repeated_message_field.cc │ │ │ ├── csharp_repeated_message_field.h │ │ │ ├── csharp_repeated_message_field.lo │ │ │ ├── csharp_repeated_message_field.o │ │ │ ├── csharp_repeated_primitive_field.cc │ │ │ ├── csharp_repeated_primitive_field.h │ │ │ ├── csharp_repeated_primitive_field.lo │ │ │ ├── csharp_repeated_primitive_field.o │ │ │ ├── csharp_source_generator_base.cc │ │ │ ├── csharp_source_generator_base.h │ │ │ ├── csharp_source_generator_base.lo │ │ │ ├── csharp_source_generator_base.o │ │ │ ├── csharp_wrapper_field.cc │ │ │ ├── csharp_wrapper_field.h │ │ │ ├── csharp_wrapper_field.lo │ │ │ └── csharp_wrapper_field.o │ │ ├── importer.cc │ │ ├── importer.h │ │ ├── importer.lo │ │ ├── importer.o │ │ ├── importer_unittest.cc │ │ ├── java │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── java_context.Plo │ │ │ │ ├── java_doc_comment.Plo │ │ │ │ ├── java_enum.Plo │ │ │ │ ├── java_enum_field.Plo │ │ │ │ ├── java_enum_field_lite.Plo │ │ │ │ ├── java_enum_lite.Plo │ │ │ │ ├── java_extension.Plo │ │ │ │ ├── java_extension_lite.Plo │ │ │ │ ├── java_field.Plo │ │ │ │ ├── java_file.Plo │ │ │ │ ├── java_generator.Plo │ │ │ │ ├── java_generator_factory.Plo │ │ │ │ ├── java_helpers.Plo │ │ │ │ ├── java_lazy_message_field.Plo │ │ │ │ ├── java_lazy_message_field_lite.Plo │ │ │ │ ├── java_map_field.Plo │ │ │ │ ├── java_map_field_lite.Plo │ │ │ │ ├── java_message.Plo │ │ │ │ ├── java_message_builder.Plo │ │ │ │ ├── java_message_builder_lite.Plo │ │ │ │ ├── java_message_field.Plo │ │ │ │ ├── java_message_field_lite.Plo │ │ │ │ ├── java_message_lite.Plo │ │ │ │ ├── java_name_resolver.Plo │ │ │ │ ├── java_primitive_field.Plo │ │ │ │ ├── java_primitive_field_lite.Plo │ │ │ │ ├── java_service.Plo │ │ │ │ ├── java_shared_code_generator.Plo │ │ │ │ ├── java_string_field.Plo │ │ │ │ ├── java_string_field_lite.Plo │ │ │ │ ├── protobuf_test-java_doc_comment_unittest.Po │ │ │ │ └── protobuf_test-java_plugin_unittest.Po │ │ │ ├── .dirstamp │ │ │ ├── java_context.cc │ │ │ ├── java_context.h │ │ │ ├── java_context.lo │ │ │ ├── java_context.o │ │ │ ├── java_doc_comment.cc │ │ │ ├── java_doc_comment.h │ │ │ ├── java_doc_comment.lo │ │ │ ├── java_doc_comment.o │ │ │ ├── java_doc_comment_unittest.cc │ │ │ ├── java_enum.cc │ │ │ ├── java_enum.h │ │ │ ├── java_enum.lo │ │ │ ├── java_enum.o │ │ │ ├── java_enum_field.cc │ │ │ ├── java_enum_field.h │ │ │ ├── java_enum_field.lo │ │ │ ├── java_enum_field.o │ │ │ ├── java_enum_field_lite.cc │ │ │ ├── java_enum_field_lite.h │ │ │ ├── java_enum_field_lite.lo │ │ │ ├── java_enum_field_lite.o │ │ │ ├── java_enum_lite.cc │ │ │ ├── java_enum_lite.h │ │ │ ├── java_enum_lite.lo │ │ │ ├── java_enum_lite.o │ │ │ ├── java_extension.cc │ │ │ ├── java_extension.h │ │ │ ├── java_extension.lo │ │ │ ├── java_extension.o │ │ │ ├── java_extension_lite.cc │ │ │ ├── java_extension_lite.h │ │ │ ├── java_extension_lite.lo │ │ │ ├── java_extension_lite.o │ │ │ ├── java_field.cc │ │ │ ├── java_field.h │ │ │ ├── java_field.lo │ │ │ ├── java_field.o │ │ │ ├── java_file.cc │ │ │ ├── java_file.h │ │ │ ├── java_file.lo │ │ │ ├── java_file.o │ │ │ ├── java_generator.cc │ │ │ ├── java_generator.h │ │ │ ├── java_generator.lo │ │ │ ├── java_generator.o │ │ │ ├── java_generator_factory.cc │ │ │ ├── java_generator_factory.h │ │ │ ├── java_generator_factory.lo │ │ │ ├── java_generator_factory.o │ │ │ ├── java_helpers.cc │ │ │ ├── java_helpers.h │ │ │ ├── java_helpers.lo │ │ │ ├── java_helpers.o │ │ │ ├── java_lazy_message_field.cc │ │ │ ├── java_lazy_message_field.h │ │ │ ├── java_lazy_message_field.lo │ │ │ ├── java_lazy_message_field.o │ │ │ ├── java_lazy_message_field_lite.cc │ │ │ ├── java_lazy_message_field_lite.h │ │ │ ├── java_lazy_message_field_lite.lo │ │ │ ├── java_lazy_message_field_lite.o │ │ │ ├── java_map_field.cc │ │ │ ├── java_map_field.h │ │ │ ├── java_map_field.lo │ │ │ ├── java_map_field.o │ │ │ ├── java_map_field_lite.cc │ │ │ ├── java_map_field_lite.h │ │ │ ├── java_map_field_lite.lo │ │ │ ├── java_map_field_lite.o │ │ │ ├── java_message.cc │ │ │ ├── java_message.h │ │ │ ├── java_message.lo │ │ │ ├── java_message.o │ │ │ ├── java_message_builder.cc │ │ │ ├── java_message_builder.h │ │ │ ├── java_message_builder.lo │ │ │ ├── java_message_builder.o │ │ │ ├── java_message_builder_lite.cc │ │ │ ├── java_message_builder_lite.h │ │ │ ├── java_message_builder_lite.lo │ │ │ ├── java_message_builder_lite.o │ │ │ ├── java_message_field.cc │ │ │ ├── java_message_field.h │ │ │ ├── java_message_field.lo │ │ │ ├── java_message_field.o │ │ │ ├── java_message_field_lite.cc │ │ │ ├── java_message_field_lite.h │ │ │ ├── java_message_field_lite.lo │ │ │ ├── java_message_field_lite.o │ │ │ ├── java_message_lite.cc │ │ │ ├── java_message_lite.h │ │ │ ├── java_message_lite.lo │ │ │ ├── java_message_lite.o │ │ │ ├── java_name_resolver.cc │ │ │ ├── java_name_resolver.h │ │ │ ├── java_name_resolver.lo │ │ │ ├── java_name_resolver.o │ │ │ ├── java_names.h │ │ │ ├── java_options.h │ │ │ ├── java_plugin_unittest.cc │ │ │ ├── java_primitive_field.cc │ │ │ ├── java_primitive_field.h │ │ │ ├── java_primitive_field.lo │ │ │ ├── java_primitive_field.o │ │ │ ├── java_primitive_field_lite.cc │ │ │ ├── java_primitive_field_lite.h │ │ │ ├── java_primitive_field_lite.lo │ │ │ ├── java_primitive_field_lite.o │ │ │ ├── java_service.cc │ │ │ ├── java_service.h │ │ │ ├── java_service.lo │ │ │ ├── java_service.o │ │ │ ├── java_shared_code_generator.cc │ │ │ ├── java_shared_code_generator.h │ │ │ ├── java_shared_code_generator.lo │ │ │ ├── java_shared_code_generator.o │ │ │ ├── java_string_field.cc │ │ │ ├── java_string_field.h │ │ │ ├── java_string_field.lo │ │ │ ├── java_string_field.o │ │ │ ├── java_string_field_lite.cc │ │ │ ├── java_string_field_lite.h │ │ │ ├── java_string_field_lite.lo │ │ │ └── java_string_field_lite.o │ │ ├── javanano │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── javanano_enum.Plo │ │ │ │ ├── javanano_enum_field.Plo │ │ │ │ ├── javanano_extension.Plo │ │ │ │ ├── javanano_field.Plo │ │ │ │ ├── javanano_file.Plo │ │ │ │ ├── javanano_generator.Plo │ │ │ │ ├── javanano_helpers.Plo │ │ │ │ ├── javanano_map_field.Plo │ │ │ │ ├── javanano_message.Plo │ │ │ │ ├── javanano_message_field.Plo │ │ │ │ └── javanano_primitive_field.Plo │ │ │ ├── .dirstamp │ │ │ ├── javanano_enum.cc │ │ │ ├── javanano_enum.h │ │ │ ├── javanano_enum.lo │ │ │ ├── javanano_enum.o │ │ │ ├── javanano_enum_field.cc │ │ │ ├── javanano_enum_field.h │ │ │ ├── javanano_enum_field.lo │ │ │ ├── javanano_enum_field.o │ │ │ ├── javanano_extension.cc │ │ │ ├── javanano_extension.h │ │ │ ├── javanano_extension.lo │ │ │ ├── javanano_extension.o │ │ │ ├── javanano_field.cc │ │ │ ├── javanano_field.h │ │ │ ├── javanano_field.lo │ │ │ ├── javanano_field.o │ │ │ ├── javanano_file.cc │ │ │ ├── javanano_file.h │ │ │ ├── javanano_file.lo │ │ │ ├── javanano_file.o │ │ │ ├── javanano_generator.cc │ │ │ ├── javanano_generator.h │ │ │ ├── javanano_generator.lo │ │ │ ├── javanano_generator.o │ │ │ ├── javanano_helpers.cc │ │ │ ├── javanano_helpers.h │ │ │ ├── javanano_helpers.lo │ │ │ ├── javanano_helpers.o │ │ │ ├── javanano_map_field.cc │ │ │ ├── javanano_map_field.h │ │ │ ├── javanano_map_field.lo │ │ │ ├── javanano_map_field.o │ │ │ ├── javanano_message.cc │ │ │ ├── javanano_message.h │ │ │ ├── javanano_message.lo │ │ │ ├── javanano_message.o │ │ │ ├── javanano_message_field.cc │ │ │ ├── javanano_message_field.h │ │ │ ├── javanano_message_field.lo │ │ │ ├── javanano_message_field.o │ │ │ ├── javanano_params.h │ │ │ ├── javanano_primitive_field.cc │ │ │ ├── javanano_primitive_field.h │ │ │ ├── javanano_primitive_field.lo │ │ │ └── javanano_primitive_field.o │ │ ├── js │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── js_generator.Plo │ │ │ │ └── well_known_types_embed.Plo │ │ │ ├── .dirstamp │ │ │ ├── embed.cc │ │ │ ├── js_generator.cc │ │ │ ├── js_generator.h │ │ │ ├── js_generator.lo │ │ │ ├── js_generator.o │ │ │ ├── well_known_types │ │ │ │ ├── any.js │ │ │ │ ├── struct.js │ │ │ │ └── timestamp.js │ │ │ ├── well_known_types_embed.cc │ │ │ ├── well_known_types_embed.h │ │ │ ├── well_known_types_embed.lo │ │ │ └── well_known_types_embed.o │ │ ├── main.cc │ │ ├── main.o │ │ ├── mock_code_generator.cc │ │ ├── mock_code_generator.h │ │ ├── objectivec │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── objectivec_enum.Plo │ │ │ │ ├── objectivec_enum_field.Plo │ │ │ │ ├── objectivec_extension.Plo │ │ │ │ ├── objectivec_field.Plo │ │ │ │ ├── objectivec_file.Plo │ │ │ │ ├── objectivec_generator.Plo │ │ │ │ ├── objectivec_helpers.Plo │ │ │ │ ├── objectivec_map_field.Plo │ │ │ │ ├── objectivec_message.Plo │ │ │ │ ├── objectivec_message_field.Plo │ │ │ │ ├── objectivec_oneof.Plo │ │ │ │ ├── objectivec_primitive_field.Plo │ │ │ │ └── protobuf_test-objectivec_helpers_unittest.Po │ │ │ ├── .dirstamp │ │ │ ├── objectivec_enum.cc │ │ │ ├── objectivec_enum.h │ │ │ ├── objectivec_enum.lo │ │ │ ├── objectivec_enum.o │ │ │ ├── objectivec_enum_field.cc │ │ │ ├── objectivec_enum_field.h │ │ │ ├── objectivec_enum_field.lo │ │ │ ├── objectivec_enum_field.o │ │ │ ├── objectivec_extension.cc │ │ │ ├── objectivec_extension.h │ │ │ ├── objectivec_extension.lo │ │ │ ├── objectivec_extension.o │ │ │ ├── objectivec_field.cc │ │ │ ├── objectivec_field.h │ │ │ ├── objectivec_field.lo │ │ │ ├── objectivec_field.o │ │ │ ├── objectivec_file.cc │ │ │ ├── objectivec_file.h │ │ │ ├── objectivec_file.lo │ │ │ ├── objectivec_file.o │ │ │ ├── objectivec_generator.cc │ │ │ ├── objectivec_generator.h │ │ │ ├── objectivec_generator.lo │ │ │ ├── objectivec_generator.o │ │ │ ├── objectivec_helpers.cc │ │ │ ├── objectivec_helpers.h │ │ │ ├── objectivec_helpers.lo │ │ │ ├── objectivec_helpers.o │ │ │ ├── objectivec_helpers_unittest.cc │ │ │ ├── objectivec_map_field.cc │ │ │ ├── objectivec_map_field.h │ │ │ ├── objectivec_map_field.lo │ │ │ ├── objectivec_map_field.o │ │ │ ├── objectivec_message.cc │ │ │ ├── objectivec_message.h │ │ │ ├── objectivec_message.lo │ │ │ ├── objectivec_message.o │ │ │ ├── objectivec_message_field.cc │ │ │ ├── objectivec_message_field.h │ │ │ ├── objectivec_message_field.lo │ │ │ ├── objectivec_message_field.o │ │ │ ├── objectivec_oneof.cc │ │ │ ├── objectivec_oneof.h │ │ │ ├── objectivec_oneof.lo │ │ │ ├── objectivec_oneof.o │ │ │ ├── objectivec_primitive_field.cc │ │ │ ├── objectivec_primitive_field.h │ │ │ ├── objectivec_primitive_field.lo │ │ │ └── objectivec_primitive_field.o │ │ ├── package_info.h │ │ ├── parser.cc │ │ ├── parser.h │ │ ├── parser.lo │ │ ├── parser.o │ │ ├── parser_unittest.cc │ │ ├── php │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ └── php_generator.Plo │ │ │ ├── .dirstamp │ │ │ ├── php_generator.cc │ │ │ ├── php_generator.h │ │ │ ├── php_generator.lo │ │ │ └── php_generator.o │ │ ├── plugin.cc │ │ ├── plugin.h │ │ ├── plugin.lo │ │ ├── plugin.o │ │ ├── plugin.pb.cc │ │ ├── plugin.pb.h │ │ ├── plugin.pb.lo │ │ ├── plugin.pb.o │ │ ├── plugin.proto │ │ ├── python │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── protobuf_test-python_plugin_unittest.Po │ │ │ │ └── python_generator.Plo │ │ │ ├── .dirstamp │ │ │ ├── python_generator.cc │ │ │ ├── python_generator.h │ │ │ ├── python_generator.lo │ │ │ ├── python_generator.o │ │ │ └── python_plugin_unittest.cc │ │ ├── ruby │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── protobuf_test-ruby_generator_unittest.Po │ │ │ │ └── ruby_generator.Plo │ │ │ ├── .dirstamp │ │ │ ├── ruby_generated_code.proto │ │ │ ├── ruby_generated_code_pb.rb │ │ │ ├── ruby_generator.cc │ │ │ ├── ruby_generator.h │ │ │ ├── ruby_generator.lo │ │ │ ├── ruby_generator.o │ │ │ └── ruby_generator_unittest.cc │ │ ├── subprocess.cc │ │ ├── subprocess.h │ │ ├── subprocess.lo │ │ ├── subprocess.o │ │ ├── test_plugin.cc │ │ ├── zip_output_unittest.sh │ │ ├── zip_writer.cc │ │ ├── zip_writer.h │ │ ├── zip_writer.lo │ │ └── zip_writer.o │ │ ├── descriptor.cc │ │ ├── descriptor.h │ │ ├── descriptor.lo │ │ ├── descriptor.o │ │ ├── descriptor.pb.cc │ │ ├── descriptor.pb.h │ │ ├── descriptor.pb.lo │ │ ├── descriptor.pb.o │ │ ├── descriptor.proto │ │ ├── descriptor_database.cc │ │ ├── descriptor_database.h │ │ ├── descriptor_database.lo │ │ ├── descriptor_database.o │ │ ├── descriptor_database_unittest.cc │ │ ├── descriptor_unittest.cc │ │ ├── drop_unknown_fields_test.cc │ │ ├── duration.pb.cc │ │ ├── duration.pb.h │ │ ├── duration.pb.lo │ │ ├── duration.pb.o │ │ ├── duration.proto │ │ ├── dynamic_message.cc │ │ ├── dynamic_message.h │ │ ├── dynamic_message.lo │ │ ├── dynamic_message.o │ │ ├── dynamic_message_unittest.cc │ │ ├── empty.pb.cc │ │ ├── empty.pb.h │ │ ├── empty.pb.lo │ │ ├── empty.pb.o │ │ ├── empty.proto │ │ ├── extension_set.cc │ │ ├── extension_set.h │ │ ├── extension_set.lo │ │ ├── extension_set.o │ │ ├── extension_set_heavy.cc │ │ ├── extension_set_heavy.lo │ │ ├── extension_set_heavy.o │ │ ├── extension_set_unittest.cc │ │ ├── field_mask.pb.cc │ │ ├── field_mask.pb.h │ │ ├── field_mask.pb.lo │ │ ├── field_mask.pb.o │ │ ├── field_mask.proto │ │ ├── generated_enum_reflection.h │ │ ├── generated_enum_util.h │ │ ├── generated_message_reflection.cc │ │ ├── generated_message_reflection.h │ │ ├── generated_message_reflection.lo │ │ ├── generated_message_reflection.o │ │ ├── generated_message_reflection_unittest.cc │ │ ├── generated_message_util.cc │ │ ├── generated_message_util.h │ │ ├── generated_message_util.lo │ │ ├── generated_message_util.o │ │ ├── has_bits.h │ │ ├── io │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── coded_stream.Plo │ │ │ ├── gzip_stream.Plo │ │ │ ├── printer.Plo │ │ │ ├── protobuf_test-coded_stream_unittest.Po │ │ │ ├── protobuf_test-printer_unittest.Po │ │ │ ├── protobuf_test-tokenizer_unittest.Po │ │ │ ├── protobuf_test-zero_copy_stream_unittest.Po │ │ │ ├── strtod.Plo │ │ │ ├── tokenizer.Plo │ │ │ ├── zero_copy_stream.Plo │ │ │ ├── zero_copy_stream_impl.Plo │ │ │ └── zero_copy_stream_impl_lite.Plo │ │ ├── .dirstamp │ │ ├── coded_stream.cc │ │ ├── coded_stream.h │ │ ├── coded_stream.lo │ │ ├── coded_stream.o │ │ ├── coded_stream_inl.h │ │ ├── coded_stream_unittest.cc │ │ ├── gzip_stream.cc │ │ ├── gzip_stream.h │ │ ├── gzip_stream.lo │ │ ├── gzip_stream.o │ │ ├── gzip_stream_unittest.sh │ │ ├── package_info.h │ │ ├── printer.cc │ │ ├── printer.h │ │ ├── printer.lo │ │ ├── printer.o │ │ ├── printer_unittest.cc │ │ ├── strtod.cc │ │ ├── strtod.h │ │ ├── strtod.lo │ │ ├── strtod.o │ │ ├── tokenizer.cc │ │ ├── tokenizer.h │ │ ├── tokenizer.lo │ │ ├── tokenizer.o │ │ ├── tokenizer_unittest.cc │ │ ├── zero_copy_stream.cc │ │ ├── zero_copy_stream.h │ │ ├── zero_copy_stream.lo │ │ ├── zero_copy_stream.o │ │ ├── zero_copy_stream_impl.cc │ │ ├── zero_copy_stream_impl.h │ │ ├── zero_copy_stream_impl.lo │ │ ├── zero_copy_stream_impl.o │ │ ├── zero_copy_stream_impl_lite.cc │ │ ├── zero_copy_stream_impl_lite.h │ │ ├── zero_copy_stream_impl_lite.lo │ │ ├── zero_copy_stream_impl_lite.o │ │ └── 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.lo │ │ ├── map_field.o │ │ ├── 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.pb.cc │ │ ├── map_lite_unittest.pb.h │ │ ├── map_lite_unittest.proto │ │ ├── map_proto2_unittest.pb.cc │ │ ├── map_proto2_unittest.pb.h │ │ ├── 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.pb.cc │ │ ├── map_unittest.pb.h │ │ ├── map_unittest.proto │ │ ├── map_unittest_proto3.proto │ │ ├── message.cc │ │ ├── message.h │ │ ├── message.lo │ │ ├── message.o │ │ ├── message_lite.cc │ │ ├── message_lite.h │ │ ├── message_lite.lo │ │ ├── message_lite.o │ │ ├── message_unittest.cc │ │ ├── metadata.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.lo │ │ ├── reflection_ops.o │ │ ├── reflection_ops_unittest.cc │ │ ├── repeated_field.cc │ │ ├── repeated_field.h │ │ ├── repeated_field.lo │ │ ├── repeated_field.o │ │ ├── repeated_field_reflection_unittest.cc │ │ ├── repeated_field_unittest.cc │ │ ├── service.cc │ │ ├── service.h │ │ ├── service.lo │ │ ├── service.o │ │ ├── source_context.pb.cc │ │ ├── source_context.pb.h │ │ ├── source_context.pb.lo │ │ ├── source_context.pb.o │ │ ├── source_context.proto │ │ ├── struct.pb.cc │ │ ├── struct.pb.h │ │ ├── struct.pb.lo │ │ ├── struct.pb.o │ │ ├── struct.proto │ │ ├── stubs │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── atomicops_internals_x86_gcc.Plo │ │ │ ├── atomicops_internals_x86_msvc.Plo │ │ │ ├── bytestream.Plo │ │ │ ├── common.Plo │ │ │ ├── int128.Plo │ │ │ ├── mathlimits.Plo │ │ │ ├── once.Plo │ │ │ ├── protobuf_test-bytestream_unittest.Po │ │ │ ├── protobuf_test-common_unittest.Po │ │ │ ├── protobuf_test-int128_unittest.Po │ │ │ ├── protobuf_test-once_unittest.Po │ │ │ ├── protobuf_test-status_test.Po │ │ │ ├── protobuf_test-statusor_test.Po │ │ │ ├── protobuf_test-stringpiece_unittest.Po │ │ │ ├── protobuf_test-stringprintf_unittest.Po │ │ │ ├── protobuf_test-structurally_valid_unittest.Po │ │ │ ├── protobuf_test-strutil_unittest.Po │ │ │ ├── protobuf_test-template_util_unittest.Po │ │ │ ├── protobuf_test-time_test.Po │ │ │ ├── protobuf_test-type_traits_unittest.Po │ │ │ ├── status.Plo │ │ │ ├── statusor.Plo │ │ │ ├── stringpiece.Plo │ │ │ ├── stringprintf.Plo │ │ │ ├── structurally_valid.Plo │ │ │ ├── strutil.Plo │ │ │ ├── substitute.Plo │ │ │ └── time.Plo │ │ ├── .dirstamp │ │ ├── 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_gcc.lo │ │ ├── atomicops_internals_x86_gcc.o │ │ ├── atomicops_internals_x86_msvc.cc │ │ ├── atomicops_internals_x86_msvc.h │ │ ├── atomicops_internals_x86_msvc.lo │ │ ├── atomicops_internals_x86_msvc.o │ │ ├── bytestream.cc │ │ ├── bytestream.h │ │ ├── bytestream.lo │ │ ├── bytestream.o │ │ ├── bytestream_unittest.cc │ │ ├── callback.h │ │ ├── casts.h │ │ ├── common.cc │ │ ├── common.h │ │ ├── common.lo │ │ ├── common.o │ │ ├── common_unittest.cc │ │ ├── fastmem.h │ │ ├── hash.h │ │ ├── int128.cc │ │ ├── int128.h │ │ ├── int128.lo │ │ ├── int128.o │ │ ├── int128_unittest.cc │ │ ├── logging.h │ │ ├── macros.h │ │ ├── map_util.h │ │ ├── mathlimits.cc │ │ ├── mathlimits.h │ │ ├── mathlimits.lo │ │ ├── mathlimits.o │ │ ├── mathutil.h │ │ ├── mutex.h │ │ ├── once.cc │ │ ├── once.h │ │ ├── once.lo │ │ ├── once.o │ │ ├── once_unittest.cc │ │ ├── platform_macros.h │ │ ├── port.h │ │ ├── scoped_ptr.h │ │ ├── shared_ptr.h │ │ ├── singleton.h │ │ ├── status.cc │ │ ├── status.h │ │ ├── status.lo │ │ ├── status.o │ │ ├── status_macros.h │ │ ├── status_test.cc │ │ ├── statusor.cc │ │ ├── statusor.h │ │ ├── statusor.lo │ │ ├── statusor.o │ │ ├── statusor_test.cc │ │ ├── stl_util.h │ │ ├── stringpiece.cc │ │ ├── stringpiece.h │ │ ├── stringpiece.lo │ │ ├── stringpiece.o │ │ ├── stringpiece_unittest.cc │ │ ├── stringprintf.cc │ │ ├── stringprintf.h │ │ ├── stringprintf.lo │ │ ├── stringprintf.o │ │ ├── stringprintf_unittest.cc │ │ ├── structurally_valid.cc │ │ ├── structurally_valid.lo │ │ ├── structurally_valid.o │ │ ├── structurally_valid_unittest.cc │ │ ├── strutil.cc │ │ ├── strutil.h │ │ ├── strutil.lo │ │ ├── strutil.o │ │ ├── strutil_unittest.cc │ │ ├── substitute.cc │ │ ├── substitute.h │ │ ├── substitute.lo │ │ ├── substitute.o │ │ ├── template_util.h │ │ ├── template_util_unittest.cc │ │ ├── time.cc │ │ ├── time.h │ │ ├── time.lo │ │ ├── time.o │ │ ├── time_test.cc │ │ ├── type_traits.h │ │ └── type_traits_unittest.cc │ │ ├── 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 │ │ ├── .deps │ │ │ ├── protobuf_lazy_descriptor_test-file.Po │ │ │ ├── protobuf_lazy_descriptor_test-googletest.Po │ │ │ ├── protobuf_test-file.Po │ │ │ ├── protobuf_test-googletest.Po │ │ │ ├── test_plugin-file.Po │ │ │ ├── zcgunzip.Po │ │ │ └── zcgzip.Po │ │ ├── file.cc │ │ ├── file.h │ │ ├── googletest.cc │ │ ├── googletest.h │ │ ├── zcgunzip.cc │ │ └── zcgzip.cc │ │ ├── text_format.cc │ │ ├── text_format.h │ │ ├── text_format.lo │ │ ├── text_format.o │ │ ├── text_format_unittest.cc │ │ ├── timestamp.pb.cc │ │ ├── timestamp.pb.h │ │ ├── timestamp.pb.lo │ │ ├── timestamp.pb.o │ │ ├── timestamp.proto │ │ ├── type.pb.cc │ │ ├── type.pb.h │ │ ├── type.pb.lo │ │ ├── type.pb.o │ │ ├── type.proto │ │ ├── unittest.pb.cc │ │ ├── unittest.pb.h │ │ ├── unittest.proto │ │ ├── unittest_arena.pb.cc │ │ ├── unittest_arena.pb.h │ │ ├── unittest_arena.proto │ │ ├── unittest_custom_options.pb.cc │ │ ├── unittest_custom_options.pb.h │ │ ├── unittest_custom_options.proto │ │ ├── unittest_drop_unknown_fields.pb.cc │ │ ├── unittest_drop_unknown_fields.pb.h │ │ ├── unittest_drop_unknown_fields.proto │ │ ├── unittest_embed_optimize_for.pb.cc │ │ ├── unittest_embed_optimize_for.pb.h │ │ ├── unittest_embed_optimize_for.proto │ │ ├── unittest_empty.pb.cc │ │ ├── unittest_empty.pb.h │ │ ├── unittest_empty.proto │ │ ├── unittest_enormous_descriptor.pb.cc │ │ ├── unittest_enormous_descriptor.pb.h │ │ ├── unittest_enormous_descriptor.proto │ │ ├── unittest_import.pb.cc │ │ ├── unittest_import.pb.h │ │ ├── unittest_import.proto │ │ ├── unittest_import_lite.pb.cc │ │ ├── unittest_import_lite.pb.h │ │ ├── unittest_import_lite.proto │ │ ├── unittest_import_proto3.proto │ │ ├── unittest_import_public.pb.cc │ │ ├── unittest_import_public.pb.h │ │ ├── unittest_import_public.proto │ │ ├── unittest_import_public_lite.pb.cc │ │ ├── unittest_import_public_lite.pb.h │ │ ├── unittest_import_public_lite.proto │ │ ├── unittest_import_public_proto3.proto │ │ ├── unittest_lite.pb.cc │ │ ├── unittest_lite.pb.h │ │ ├── unittest_lite.proto │ │ ├── unittest_lite_imports_nonlite.pb.cc │ │ ├── unittest_lite_imports_nonlite.pb.h │ │ ├── unittest_lite_imports_nonlite.proto │ │ ├── unittest_mset.pb.cc │ │ ├── unittest_mset.pb.h │ │ ├── unittest_mset.proto │ │ ├── unittest_mset_wire_format.pb.cc │ │ ├── unittest_mset_wire_format.pb.h │ │ ├── unittest_mset_wire_format.proto │ │ ├── unittest_no_arena.pb.cc │ │ ├── unittest_no_arena.pb.h │ │ ├── unittest_no_arena.proto │ │ ├── unittest_no_arena_import.pb.cc │ │ ├── unittest_no_arena_import.pb.h │ │ ├── unittest_no_arena_import.proto │ │ ├── unittest_no_arena_lite.pb.cc │ │ ├── unittest_no_arena_lite.pb.h │ │ ├── unittest_no_arena_lite.proto │ │ ├── unittest_no_field_presence.pb.cc │ │ ├── unittest_no_field_presence.pb.h │ │ ├── unittest_no_field_presence.proto │ │ ├── unittest_no_generic_services.pb.cc │ │ ├── unittest_no_generic_services.pb.h │ │ ├── unittest_no_generic_services.proto │ │ ├── unittest_optimize_for.pb.cc │ │ ├── unittest_optimize_for.pb.h │ │ ├── unittest_optimize_for.proto │ │ ├── unittest_preserve_unknown_enum.pb.cc │ │ ├── unittest_preserve_unknown_enum.pb.h │ │ ├── unittest_preserve_unknown_enum.proto │ │ ├── unittest_preserve_unknown_enum2.pb.cc │ │ ├── unittest_preserve_unknown_enum2.pb.h │ │ ├── unittest_preserve_unknown_enum2.proto │ │ ├── unittest_proto3.proto │ │ ├── unittest_proto3_arena.pb.cc │ │ ├── unittest_proto3_arena.pb.h │ │ ├── unittest_proto3_arena.proto │ │ ├── unittest_proto3_arena_lite.pb.cc │ │ ├── unittest_proto3_arena_lite.pb.h │ │ ├── unittest_proto3_arena_lite.proto │ │ ├── unittest_proto3_lite.pb.cc │ │ ├── unittest_proto3_lite.pb.h │ │ ├── unittest_proto3_lite.proto │ │ ├── unittest_well_known_types.pb.cc │ │ ├── unittest_well_known_types.pb.h │ │ ├── unittest_well_known_types.proto │ │ ├── unknown_field_set.cc │ │ ├── unknown_field_set.h │ │ ├── unknown_field_set.lo │ │ ├── unknown_field_set.o │ │ ├── unknown_field_set_unittest.cc │ │ ├── util │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── field_comparator.Plo │ │ │ ├── field_mask_util.Plo │ │ │ ├── json_util.Plo │ │ │ ├── message_differencer.Plo │ │ │ ├── no_warning_test-json_format_proto3.pb.Po │ │ │ ├── no_warning_test-message_differencer_unittest.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-json_format_proto3.pb.Po │ │ │ ├── protobuf_lazy_descriptor_test-message_differencer_unittest.pb.Po │ │ │ ├── protobuf_test-field_comparator_test.Po │ │ │ ├── protobuf_test-field_mask_util_test.Po │ │ │ ├── protobuf_test-json_format_proto3.pb.Po │ │ │ ├── protobuf_test-json_util_test.Po │ │ │ ├── protobuf_test-message_differencer_unittest.Po │ │ │ ├── protobuf_test-message_differencer_unittest.pb.Po │ │ │ ├── protobuf_test-time_util_test.Po │ │ │ ├── protobuf_test-type_resolver_util_test.Po │ │ │ ├── time_util.Plo │ │ │ └── type_resolver_util.Plo │ │ ├── .dirstamp │ │ ├── field_comparator.cc │ │ ├── field_comparator.h │ │ ├── field_comparator.lo │ │ ├── field_comparator.o │ │ ├── field_comparator_test.cc │ │ ├── field_mask_util.cc │ │ ├── field_mask_util.h │ │ ├── field_mask_util.lo │ │ ├── field_mask_util.o │ │ ├── field_mask_util_test.cc │ │ ├── internal │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── datapiece.Plo │ │ │ │ ├── default_value_objectwriter.Plo │ │ │ │ ├── error_listener.Plo │ │ │ │ ├── field_mask_utility.Plo │ │ │ │ ├── json_escaping.Plo │ │ │ │ ├── json_objectwriter.Plo │ │ │ │ ├── json_stream_parser.Plo │ │ │ │ ├── object_writer.Plo │ │ │ │ ├── proto_writer.Plo │ │ │ │ ├── protobuf_test-default_value_objectwriter_test.Po │ │ │ │ ├── protobuf_test-json_objectwriter_test.Po │ │ │ │ ├── protobuf_test-json_stream_parser_test.Po │ │ │ │ ├── protobuf_test-protostream_objectsource_test.Po │ │ │ │ ├── protobuf_test-protostream_objectwriter_test.Po │ │ │ │ ├── protobuf_test-type_info_test_helper.Po │ │ │ │ ├── protostream_objectsource.Plo │ │ │ │ ├── protostream_objectwriter.Plo │ │ │ │ ├── type_info.Plo │ │ │ │ ├── type_info_test_helper.Plo │ │ │ │ └── utility.Plo │ │ │ ├── .dirstamp │ │ │ ├── constants.h │ │ │ ├── datapiece.cc │ │ │ ├── datapiece.h │ │ │ ├── datapiece.lo │ │ │ ├── datapiece.o │ │ │ ├── default_value_objectwriter.cc │ │ │ ├── default_value_objectwriter.h │ │ │ ├── default_value_objectwriter.lo │ │ │ ├── default_value_objectwriter.o │ │ │ ├── default_value_objectwriter_test.cc │ │ │ ├── error_listener.cc │ │ │ ├── error_listener.h │ │ │ ├── error_listener.lo │ │ │ ├── error_listener.o │ │ │ ├── expecting_objectwriter.h │ │ │ ├── field_mask_utility.cc │ │ │ ├── field_mask_utility.h │ │ │ ├── field_mask_utility.lo │ │ │ ├── field_mask_utility.o │ │ │ ├── json_escaping.cc │ │ │ ├── json_escaping.h │ │ │ ├── json_escaping.lo │ │ │ ├── json_escaping.o │ │ │ ├── json_objectwriter.cc │ │ │ ├── json_objectwriter.h │ │ │ ├── json_objectwriter.lo │ │ │ ├── json_objectwriter.o │ │ │ ├── json_objectwriter_test.cc │ │ │ ├── json_stream_parser.cc │ │ │ ├── json_stream_parser.h │ │ │ ├── json_stream_parser.lo │ │ │ ├── json_stream_parser.o │ │ │ ├── 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 │ │ │ ├── object_writer.lo │ │ │ ├── object_writer.o │ │ │ ├── proto_writer.cc │ │ │ ├── proto_writer.h │ │ │ ├── proto_writer.lo │ │ │ ├── proto_writer.o │ │ │ ├── protostream_objectsource.cc │ │ │ ├── protostream_objectsource.h │ │ │ ├── protostream_objectsource.lo │ │ │ ├── protostream_objectsource.o │ │ │ ├── protostream_objectsource_test.cc │ │ │ ├── protostream_objectwriter.cc │ │ │ ├── protostream_objectwriter.h │ │ │ ├── protostream_objectwriter.lo │ │ │ ├── protostream_objectwriter.o │ │ │ ├── protostream_objectwriter_test.cc │ │ │ ├── structured_objectwriter.h │ │ │ ├── testdata │ │ │ │ ├── .deps │ │ │ │ │ ├── no_warning_test-anys.pb.Po │ │ │ │ │ ├── no_warning_test-books.pb.Po │ │ │ │ │ ├── no_warning_test-default_value.pb.Po │ │ │ │ │ ├── no_warning_test-default_value_test.pb.Po │ │ │ │ │ ├── no_warning_test-field_mask.pb.Po │ │ │ │ │ ├── no_warning_test-maps.pb.Po │ │ │ │ │ ├── no_warning_test-oneofs.pb.Po │ │ │ │ │ ├── no_warning_test-proto3.pb.Po │ │ │ │ │ ├── no_warning_test-struct.pb.Po │ │ │ │ │ ├── no_warning_test-timestamp_duration.pb.Po │ │ │ │ │ ├── no_warning_test-wrappers.pb.Po │ │ │ │ │ ├── protobuf_lazy_descriptor_test-anys.pb.Po │ │ │ │ │ ├── protobuf_lazy_descriptor_test-books.pb.Po │ │ │ │ │ ├── protobuf_lazy_descriptor_test-default_value.pb.Po │ │ │ │ │ ├── protobuf_lazy_descriptor_test-default_value_test.pb.Po │ │ │ │ │ ├── protobuf_lazy_descriptor_test-field_mask.pb.Po │ │ │ │ │ ├── protobuf_lazy_descriptor_test-maps.pb.Po │ │ │ │ │ ├── protobuf_lazy_descriptor_test-oneofs.pb.Po │ │ │ │ │ ├── protobuf_lazy_descriptor_test-proto3.pb.Po │ │ │ │ │ ├── protobuf_lazy_descriptor_test-struct.pb.Po │ │ │ │ │ ├── protobuf_lazy_descriptor_test-timestamp_duration.pb.Po │ │ │ │ │ ├── protobuf_lazy_descriptor_test-wrappers.pb.Po │ │ │ │ │ ├── protobuf_test-anys.pb.Po │ │ │ │ │ ├── protobuf_test-books.pb.Po │ │ │ │ │ ├── protobuf_test-default_value.pb.Po │ │ │ │ │ ├── protobuf_test-default_value_test.pb.Po │ │ │ │ │ ├── protobuf_test-field_mask.pb.Po │ │ │ │ │ ├── protobuf_test-maps.pb.Po │ │ │ │ │ ├── protobuf_test-oneofs.pb.Po │ │ │ │ │ ├── protobuf_test-proto3.pb.Po │ │ │ │ │ ├── protobuf_test-struct.pb.Po │ │ │ │ │ ├── protobuf_test-timestamp_duration.pb.Po │ │ │ │ │ └── protobuf_test-wrappers.pb.Po │ │ │ │ ├── anys.pb.cc │ │ │ │ ├── anys.pb.h │ │ │ │ ├── anys.proto │ │ │ │ ├── books.pb.cc │ │ │ │ ├── books.pb.h │ │ │ │ ├── books.proto │ │ │ │ ├── default_value.pb.cc │ │ │ │ ├── default_value.pb.h │ │ │ │ ├── default_value.proto │ │ │ │ ├── default_value_test.pb.cc │ │ │ │ ├── default_value_test.pb.h │ │ │ │ ├── default_value_test.proto │ │ │ │ ├── field_mask.pb.cc │ │ │ │ ├── field_mask.pb.h │ │ │ │ ├── field_mask.proto │ │ │ │ ├── maps.pb.cc │ │ │ │ ├── maps.pb.h │ │ │ │ ├── maps.proto │ │ │ │ ├── oneofs.pb.cc │ │ │ │ ├── oneofs.pb.h │ │ │ │ ├── oneofs.proto │ │ │ │ ├── proto3.pb.cc │ │ │ │ ├── proto3.pb.h │ │ │ │ ├── proto3.proto │ │ │ │ ├── struct.pb.cc │ │ │ │ ├── struct.pb.h │ │ │ │ ├── struct.proto │ │ │ │ ├── timestamp_duration.pb.cc │ │ │ │ ├── timestamp_duration.pb.h │ │ │ │ ├── timestamp_duration.proto │ │ │ │ ├── wrappers.pb.cc │ │ │ │ ├── wrappers.pb.h │ │ │ │ └── wrappers.proto │ │ │ ├── type_info.cc │ │ │ ├── type_info.h │ │ │ ├── type_info.lo │ │ │ ├── type_info.o │ │ │ ├── type_info_test_helper.cc │ │ │ ├── type_info_test_helper.h │ │ │ ├── type_info_test_helper.lo │ │ │ ├── type_info_test_helper.o │ │ │ ├── utility.cc │ │ │ ├── utility.h │ │ │ ├── utility.lo │ │ │ └── utility.o │ │ ├── json_format_proto3.pb.cc │ │ ├── json_format_proto3.pb.h │ │ ├── json_format_proto3.proto │ │ ├── json_util.cc │ │ ├── json_util.h │ │ ├── json_util.lo │ │ ├── json_util.o │ │ ├── json_util_test.cc │ │ ├── message_differencer.cc │ │ ├── message_differencer.h │ │ ├── message_differencer.lo │ │ ├── message_differencer.o │ │ ├── message_differencer_unittest.cc │ │ ├── message_differencer_unittest.pb.cc │ │ ├── message_differencer_unittest.pb.h │ │ ├── message_differencer_unittest.proto │ │ ├── package_info.h │ │ ├── time_util.cc │ │ ├── time_util.h │ │ ├── time_util.lo │ │ ├── time_util.o │ │ ├── time_util_test.cc │ │ ├── type_resolver.h │ │ ├── type_resolver_util.cc │ │ ├── type_resolver_util.h │ │ ├── type_resolver_util.lo │ │ ├── type_resolver_util.o │ │ └── type_resolver_util_test.cc │ │ ├── well_known_types_unittest.cc │ │ ├── wire_format.cc │ │ ├── wire_format.h │ │ ├── wire_format.lo │ │ ├── wire_format.o │ │ ├── wire_format_lite.cc │ │ ├── wire_format_lite.h │ │ ├── wire_format_lite.lo │ │ ├── wire_format_lite.o │ │ ├── wire_format_lite_inl.h │ │ ├── wire_format_unittest.cc │ │ ├── wrappers.pb.cc │ │ ├── wrappers.pb.h │ │ ├── wrappers.pb.lo │ │ ├── wrappers.pb.o │ │ └── wrappers.proto ├── lib │ ├── DeepBelief.framework │ │ ├── DeepBelief │ │ ├── Headers │ │ └── Versions │ │ │ ├── A │ │ │ ├── DeepBelief │ │ │ └── Headers │ │ │ │ ├── DeepBelief.h │ │ │ │ └── libjpcnn.h │ │ │ └── Current │ ├── libprotobuf-lite.a │ ├── libprotobuf.a │ └── libtensorflow-core.a ├── models │ ├── jetpac.ntwk │ ├── tiny-yolo-voc.pb │ └── voc.txt ├── tensorflow │ └── core │ │ ├── BUILD │ │ ├── example │ │ ├── example.proto │ │ ├── example_parser_configuration.cc │ │ ├── example_parser_configuration.h │ │ ├── example_parser_configuration.proto │ │ ├── example_parser_configuration_test.cc │ │ ├── feature.proto │ │ ├── feature_util.cc │ │ ├── feature_util.h │ │ ├── feature_util_test.cc │ │ └── testdata │ │ │ └── parse_example_graph_def.pbtxt │ │ ├── framework │ │ ├── allocation_description.pb.cc │ │ ├── allocation_description.pb.h │ │ ├── allocation_description.proto │ │ ├── allocator.cc │ │ ├── allocator.h │ │ ├── allocator_registry.cc │ │ ├── allocator_registry.h │ │ ├── allocator_test.cc │ │ ├── attr_value.pb.cc │ │ ├── attr_value.pb.h │ │ ├── attr_value.proto │ │ ├── attr_value_util.cc │ │ ├── attr_value_util.h │ │ ├── attr_value_util_test.cc │ │ ├── bfloat16.cc │ │ ├── bfloat16.h │ │ ├── bfloat16_test.cc │ │ ├── cancellation.cc │ │ ├── cancellation.h │ │ ├── cancellation_test.cc │ │ ├── common_shape_fns.cc │ │ ├── common_shape_fns.h │ │ ├── common_shape_fns_test.cc │ │ ├── control_flow.h │ │ ├── cost_graph.pb.cc │ │ ├── cost_graph.pb.h │ │ ├── cost_graph.proto │ │ ├── device_attributes.pb.cc │ │ ├── device_attributes.pb.h │ │ ├── device_attributes.proto │ │ ├── device_base.cc │ │ ├── device_base.h │ │ ├── fake_input.cc │ │ ├── fake_input.h │ │ ├── function.cc │ │ ├── function.h │ │ ├── function.pb.cc │ │ ├── function.pb.h │ │ ├── function.proto │ │ ├── function_test.cc │ │ ├── function_testlib.cc │ │ ├── function_testlib.h │ │ ├── graph.pb.cc │ │ ├── graph.pb.h │ │ ├── graph.proto │ │ ├── graph_def_util.cc │ │ ├── graph_def_util.h │ │ ├── graph_def_util_test.cc │ │ ├── graph_transfer_info.pb.cc │ │ ├── graph_transfer_info.pb.h │ │ ├── graph_transfer_info.proto │ │ ├── kernel_def.pb.cc │ │ ├── kernel_def.pb.h │ │ ├── kernel_def.proto │ │ ├── kernel_def_builder.cc │ │ ├── kernel_def_builder.h │ │ ├── kernel_def_builder_test.cc │ │ ├── load_library.cc │ │ ├── log_memory.cc │ │ ├── log_memory.h │ │ ├── log_memory.pb.cc │ │ ├── log_memory.pb.h │ │ ├── log_memory.proto │ │ ├── lookup_interface.cc │ │ ├── lookup_interface.h │ │ ├── memory_types.cc │ │ ├── memory_types.h │ │ ├── memory_types_test.cc │ │ ├── node_def.pb.cc │ │ ├── node_def.pb.h │ │ ├── node_def.proto │ │ ├── node_def_builder.cc │ │ ├── node_def_builder.h │ │ ├── node_def_builder_test.cc │ │ ├── node_def_util.cc │ │ ├── node_def_util.h │ │ ├── node_def_util_test.cc │ │ ├── numeric_op.h │ │ ├── numeric_types.h │ │ ├── op.cc │ │ ├── op.h │ │ ├── op_compatibility_test.cc │ │ ├── op_def.pb.cc │ │ ├── op_def.pb.h │ │ ├── op_def.proto │ │ ├── op_def_builder.cc │ │ ├── op_def_builder.h │ │ ├── op_def_builder_test.cc │ │ ├── op_def_util.cc │ │ ├── op_def_util.h │ │ ├── op_def_util_test.cc │ │ ├── op_gen_lib.cc │ │ ├── op_gen_lib.h │ │ ├── op_gen_overrides.proto │ │ ├── op_kernel.cc │ │ ├── op_kernel.h │ │ ├── op_kernel_test.cc │ │ ├── op_registration_test.cc │ │ ├── op_segment.cc │ │ ├── op_segment.h │ │ ├── op_segment_test.cc │ │ ├── partial_tensor_shape.cc │ │ ├── partial_tensor_shape.h │ │ ├── partial_tensor_shape_test.cc │ │ ├── queue_interface.h │ │ ├── reader_base.cc │ │ ├── reader_base.h │ │ ├── reader_base.pb.cc │ │ ├── reader_base.pb.h │ │ ├── reader_base.proto │ │ ├── reader_interface.h │ │ ├── reader_op_kernel.h │ │ ├── register_types.h │ │ ├── register_types_traits.h │ │ ├── remote_fused_graph_execute_info.pb.cc │ │ ├── remote_fused_graph_execute_info.pb.h │ │ ├── remote_fused_graph_execute_info.proto │ │ ├── rendezvous.cc │ │ ├── rendezvous.h │ │ ├── rendezvous_test.cc │ │ ├── resource_handle.pb.cc │ │ ├── resource_handle.pb.h │ │ ├── resource_handle.proto │ │ ├── resource_mgr.cc │ │ ├── resource_mgr.h │ │ ├── resource_mgr_test.cc │ │ ├── resource_op_kernel.h │ │ ├── resource_op_kernel_test.cc │ │ ├── selective_registration.h │ │ ├── session_state.h │ │ ├── shape_inference.cc │ │ ├── shape_inference.h │ │ ├── shape_inference_test.cc │ │ ├── shape_inference_testutil.cc │ │ ├── shape_inference_testutil.h │ │ ├── shape_inference_testutil_test.cc │ │ ├── step_stats.pb.cc │ │ ├── step_stats.pb.h │ │ ├── step_stats.proto │ │ ├── summary.pb.cc │ │ ├── summary.pb.h │ │ ├── summary.proto │ │ ├── tensor.cc │ │ ├── tensor.h │ │ ├── tensor.pb.cc │ │ ├── tensor.pb.h │ │ ├── tensor.proto │ │ ├── tensor_description.pb.cc │ │ ├── tensor_description.pb.h │ │ ├── tensor_description.proto │ │ ├── tensor_reference.cc │ │ ├── tensor_reference.h │ │ ├── tensor_shape.cc │ │ ├── tensor_shape.h │ │ ├── tensor_shape.pb.cc │ │ ├── tensor_shape.pb.h │ │ ├── tensor_shape.proto │ │ ├── tensor_shape_test.cc │ │ ├── tensor_slice.cc │ │ ├── tensor_slice.h │ │ ├── tensor_slice.pb.cc │ │ ├── tensor_slice.pb.h │ │ ├── tensor_slice.proto │ │ ├── tensor_slice_test.cc │ │ ├── tensor_test.cc │ │ ├── tensor_testutil.cc │ │ ├── tensor_testutil.h │ │ ├── tensor_types.h │ │ ├── tensor_util.cc │ │ ├── tensor_util.h │ │ ├── tensor_util_test.cc │ │ ├── tracking_allocator.cc │ │ ├── tracking_allocator.h │ │ ├── tracking_allocator_test.cc │ │ ├── type_index.h │ │ ├── type_traits.h │ │ ├── types.cc │ │ ├── types.h │ │ ├── types.pb.cc │ │ ├── types.pb.h │ │ ├── types.proto │ │ ├── types_test.cc │ │ ├── unique_tensor_references.cc │ │ ├── unique_tensor_references.h │ │ ├── unique_tensor_references_test.cc │ │ ├── variable.pb.cc │ │ ├── variable.pb.h │ │ ├── variable.proto │ │ ├── versions.cc │ │ ├── versions.h │ │ ├── versions.pb.cc │ │ ├── versions.pb.h │ │ └── versions.proto │ │ ├── lib │ │ ├── core │ │ │ ├── arena.cc │ │ │ ├── arena.h │ │ │ ├── arena_test.cc │ │ │ ├── bit_cast_test.cc │ │ │ ├── bitmap.cc │ │ │ ├── bitmap.h │ │ │ ├── bitmap_test.cc │ │ │ ├── bits.h │ │ │ ├── blocking_counter.h │ │ │ ├── blocking_counter_test.cc │ │ │ ├── casts.h │ │ │ ├── coding.cc │ │ │ ├── coding.h │ │ │ ├── coding_test.cc │ │ │ ├── error_codes.pb.cc │ │ │ ├── error_codes.pb.h │ │ │ ├── error_codes.proto │ │ │ ├── errors.h │ │ │ ├── notification.h │ │ │ ├── notification_test.cc │ │ │ ├── raw_coding.h │ │ │ ├── refcount.h │ │ │ ├── refcount_test.cc │ │ │ ├── status.cc │ │ │ ├── status.h │ │ │ ├── status_test.cc │ │ │ ├── status_test_util.h │ │ │ ├── stringpiece.cc │ │ │ ├── stringpiece.h │ │ │ ├── stringpiece_test.cc │ │ │ ├── threadpool.cc │ │ │ ├── threadpool.h │ │ │ └── threadpool_test.cc │ │ ├── gif │ │ │ ├── gif_io.cc │ │ │ ├── gif_io.h │ │ │ └── testdata │ │ │ │ ├── optimized.gif │ │ │ │ └── scan.gif │ │ ├── gtl │ │ │ ├── array_slice.h │ │ │ ├── array_slice_internal.h │ │ │ ├── array_slice_test.cc │ │ │ ├── cleanup.h │ │ │ ├── cleanup_test.cc │ │ │ ├── edit_distance.h │ │ │ ├── edit_distance_test.cc │ │ │ ├── flatmap.h │ │ │ ├── flatmap_test.cc │ │ │ ├── flatrep.h │ │ │ ├── flatset.h │ │ │ ├── flatset_test.cc │ │ │ ├── inlined_vector.h │ │ │ ├── inlined_vector_test.cc │ │ │ ├── int_type.h │ │ │ ├── int_type_test.cc │ │ │ ├── iterator_range.h │ │ │ ├── iterator_range_test.cc │ │ │ ├── manual_constructor.h │ │ │ ├── manual_constructor_test.cc │ │ │ ├── map_util.h │ │ │ ├── map_util_test.cc │ │ │ ├── optional.h │ │ │ ├── optional_test.cc │ │ │ ├── priority_queue_util.h │ │ │ ├── stl_util.h │ │ │ ├── top_n.h │ │ │ └── top_n_test.cc │ │ ├── hash │ │ │ ├── crc32c.cc │ │ │ ├── crc32c.h │ │ │ ├── crc32c_accelerate.cc │ │ │ ├── crc32c_test.cc │ │ │ ├── hash.cc │ │ │ ├── hash.h │ │ │ └── hash_test.cc │ │ ├── histogram │ │ │ ├── histogram.cc │ │ │ ├── histogram.h │ │ │ └── histogram_test.cc │ │ ├── io │ │ │ ├── block.cc │ │ │ ├── block.h │ │ │ ├── block_builder.cc │ │ │ ├── block_builder.h │ │ │ ├── buffered_inputstream.cc │ │ │ ├── buffered_inputstream.h │ │ │ ├── buffered_inputstream_test.cc │ │ │ ├── compression.cc │ │ │ ├── compression.h │ │ │ ├── format.cc │ │ │ ├── format.h │ │ │ ├── inputbuffer.cc │ │ │ ├── inputbuffer.h │ │ │ ├── inputbuffer_test.cc │ │ │ ├── inputstream_interface.cc │ │ │ ├── inputstream_interface.h │ │ │ ├── inputstream_interface_test.cc │ │ │ ├── iterator.cc │ │ │ ├── iterator.h │ │ │ ├── path.cc │ │ │ ├── path.h │ │ │ ├── path_test.cc │ │ │ ├── proto_encode_helper.h │ │ │ ├── random_inputstream.cc │ │ │ ├── random_inputstream.h │ │ │ ├── random_inputstream_test.cc │ │ │ ├── record_reader.cc │ │ │ ├── record_reader.h │ │ │ ├── record_reader_writer_test.cc │ │ │ ├── record_writer.cc │ │ │ ├── record_writer.h │ │ │ ├── recordio_test.cc │ │ │ ├── snappy │ │ │ │ ├── snappy_buffers_test.cc │ │ │ │ ├── snappy_inputbuffer.cc │ │ │ │ ├── snappy_inputbuffer.h │ │ │ │ ├── snappy_outputbuffer.cc │ │ │ │ └── snappy_outputbuffer.h │ │ │ ├── table.cc │ │ │ ├── table.h │ │ │ ├── table_builder.cc │ │ │ ├── table_builder.h │ │ │ ├── table_format.txt │ │ │ ├── table_options.h │ │ │ ├── table_test.cc │ │ │ ├── two_level_iterator.cc │ │ │ ├── two_level_iterator.h │ │ │ ├── zlib_buffers_test.cc │ │ │ ├── zlib_compression_options.h │ │ │ ├── zlib_inputstream.cc │ │ │ ├── zlib_inputstream.h │ │ │ ├── zlib_outputbuffer.cc │ │ │ └── zlib_outputbuffer.h │ │ ├── jpeg │ │ │ ├── jpeg_handle.cc │ │ │ ├── jpeg_handle.h │ │ │ ├── jpeg_mem.cc │ │ │ ├── jpeg_mem.h │ │ │ ├── jpeg_mem_unittest.cc │ │ │ └── testdata │ │ │ │ ├── bad_huffman.jpg │ │ │ │ ├── corrupt.jpg │ │ │ │ ├── corrupt34_2.jpg │ │ │ │ ├── corrupt34_3.jpg │ │ │ │ ├── corrupt34_4.jpg │ │ │ │ ├── jpeg_merge_test1.jpg │ │ │ │ └── jpeg_merge_test1_cmyk.jpg │ │ ├── math │ │ │ ├── math_util.h │ │ │ └── math_util_test.cc │ │ ├── monitoring │ │ │ ├── collected_metrics.h │ │ │ ├── collection_registry.cc │ │ │ ├── collection_registry.h │ │ │ ├── collection_registry_test.cc │ │ │ ├── counter.h │ │ │ ├── counter_test.cc │ │ │ ├── metric_def.h │ │ │ ├── metric_def_test.cc │ │ │ ├── mobile_counter.h │ │ │ ├── mobile_sampler.h │ │ │ ├── sampler.h │ │ │ └── sampler_test.cc │ │ ├── png │ │ │ ├── png_io.cc │ │ │ ├── png_io.h │ │ │ └── testdata │ │ │ │ ├── lena_gray.png │ │ │ │ └── lena_rgba.png │ │ ├── random │ │ │ ├── distribution_sampler.cc │ │ │ ├── distribution_sampler.h │ │ │ ├── distribution_sampler_test.cc │ │ │ ├── exact_uniform_int.h │ │ │ ├── philox_random.h │ │ │ ├── philox_random_test.cc │ │ │ ├── philox_random_test_utils.h │ │ │ ├── random.cc │ │ │ ├── random.h │ │ │ ├── random_distributions.h │ │ │ ├── random_distributions_test.cc │ │ │ ├── random_test.cc │ │ │ ├── simple_philox.cc │ │ │ ├── simple_philox.h │ │ │ ├── simple_philox_test.cc │ │ │ ├── weighted_picker.cc │ │ │ ├── weighted_picker.h │ │ │ └── weighted_picker_test.cc │ │ ├── strings │ │ │ ├── base64.cc │ │ │ ├── base64.h │ │ │ ├── base64_test.cc │ │ │ ├── numbers.cc │ │ │ ├── numbers.h │ │ │ ├── numbers_test.cc │ │ │ ├── ordered_code.cc │ │ │ ├── ordered_code.h │ │ │ ├── ordered_code_test.cc │ │ │ ├── proto_text_util.cc │ │ │ ├── proto_text_util.h │ │ │ ├── scanner.cc │ │ │ ├── scanner.h │ │ │ ├── scanner_test.cc │ │ │ ├── str_util.cc │ │ │ ├── str_util.h │ │ │ ├── str_util_test.cc │ │ │ ├── strcat.cc │ │ │ ├── strcat.h │ │ │ ├── strcat_test.cc │ │ │ ├── stringprintf.cc │ │ │ ├── stringprintf.h │ │ │ └── stringprintf_test.cc │ │ └── wav │ │ │ ├── wav_io.cc │ │ │ ├── wav_io.h │ │ │ └── wav_io_test.cc │ │ ├── platform │ │ ├── cloud │ │ │ ├── BUILD │ │ │ ├── auth_provider.h │ │ │ ├── gcs_file_system.cc │ │ │ ├── gcs_file_system.h │ │ │ ├── gcs_file_system_test.cc │ │ │ ├── google_auth_provider.cc │ │ │ ├── google_auth_provider.h │ │ │ ├── google_auth_provider_test.cc │ │ │ ├── http_request.cc │ │ │ ├── http_request.h │ │ │ ├── http_request_fake.h │ │ │ ├── http_request_test.cc │ │ │ ├── oauth_client.cc │ │ │ ├── oauth_client.h │ │ │ ├── oauth_client_test.cc │ │ │ ├── retrying_file_system.cc │ │ │ ├── retrying_file_system.h │ │ │ ├── retrying_file_system_test.cc │ │ │ ├── retrying_utils.cc │ │ │ ├── retrying_utils.h │ │ │ ├── retrying_utils_test.cc │ │ │ ├── testdata │ │ │ │ ├── application_default_credentials.json │ │ │ │ ├── service_account_credentials.json │ │ │ │ └── service_account_public_key.txt │ │ │ ├── time_util.cc │ │ │ ├── time_util.h │ │ │ └── time_util_test.cc │ │ ├── context.h │ │ ├── cpu_feature_guard.cc │ │ ├── cpu_feature_guard.h │ │ ├── cpu_info.cc │ │ ├── cpu_info.h │ │ ├── cuda.h │ │ ├── cuda_libdevice_path.cc │ │ ├── cuda_libdevice_path.h │ │ ├── cuda_libdevice_path_test.cc │ │ ├── cupti_wrapper.h │ │ ├── default │ │ │ ├── build_config.bzl │ │ │ ├── build_config │ │ │ │ └── BUILD │ │ │ ├── build_config_root.bzl │ │ │ ├── context.h │ │ │ ├── cuda_libdevice_path.cc │ │ │ ├── dynamic_annotations.h │ │ │ ├── fingerprint.h │ │ │ ├── from_stream_executor_status.h │ │ │ ├── gpu │ │ │ │ ├── BUILD │ │ │ │ ├── cupti_wrapper.cc │ │ │ │ └── cupti_wrapper.h │ │ │ ├── integral_types.h │ │ │ ├── logging.cc │ │ │ ├── logging.h │ │ │ ├── mutex.h │ │ │ ├── notification.h │ │ │ ├── platform.bzl │ │ │ ├── protobuf.cc │ │ │ ├── protobuf.h │ │ │ ├── stacktrace.h │ │ │ ├── stream_executor.h │ │ │ ├── stream_executor_no_cuda.h │ │ │ ├── strong_hash.h │ │ │ ├── test_benchmark.cc │ │ │ ├── thread_annotations.h │ │ │ ├── tracing.cc │ │ │ └── tracing_impl.h │ │ ├── demangle.h │ │ ├── denormal.cc │ │ ├── denormal.h │ │ ├── dynamic_annotations.h │ │ ├── env.cc │ │ ├── env.h │ │ ├── env_test.cc │ │ ├── env_time.cc │ │ ├── env_time.h │ │ ├── file_statistics.h │ │ ├── file_system.cc │ │ ├── file_system.h │ │ ├── file_system_test.cc │ │ ├── fingerprint.h │ │ ├── fingerprint_test.cc │ │ ├── gif.h │ │ ├── hadoop │ │ │ ├── BUILD │ │ │ ├── hadoop_file_system.cc │ │ │ ├── hadoop_file_system.h │ │ │ └── hadoop_file_system_test.cc │ │ ├── hexagon │ │ │ └── soc_interface.h │ │ ├── host_info.h │ │ ├── init_main.h │ │ ├── integral_types_test.cc │ │ ├── jpeg.h │ │ ├── load_library.h │ │ ├── logging.h │ │ ├── logging_test.cc │ │ ├── macros.h │ │ ├── mem.h │ │ ├── mutex.h │ │ ├── net.h │ │ ├── net_test.cc │ │ ├── notification.h │ │ ├── platform.h │ │ ├── png.h │ │ ├── port_test.cc │ │ ├── posix │ │ │ ├── env.cc │ │ │ ├── env_time.cc │ │ │ ├── error.cc │ │ │ ├── error.h │ │ │ ├── load_library.cc │ │ │ ├── net.cc │ │ │ ├── port.cc │ │ │ ├── posix_file_system.cc │ │ │ ├── posix_file_system.h │ │ │ ├── subprocess.cc │ │ │ ├── subprocess.h │ │ │ ├── test.cc │ │ │ └── tracing.cc │ │ ├── prefetch.h │ │ ├── profile_utils │ │ │ ├── android_armv7a_cpu_utils_helper.cc │ │ │ ├── android_armv7a_cpu_utils_helper.h │ │ │ ├── clock_cycle_profiler.cc │ │ │ ├── clock_cycle_profiler.h │ │ │ ├── cpu_utils.cc │ │ │ ├── cpu_utils.h │ │ │ ├── cpu_utils_test.cc │ │ │ └── i_cpu_utils_helper.h │ │ ├── protobuf.h │ │ ├── protobuf_internal.h │ │ ├── protobuf_util.cc │ │ ├── regexp.h │ │ ├── setround.cc │ │ ├── setround.h │ │ ├── setround_test.cc │ │ ├── snappy.h │ │ ├── stacktrace.h │ │ ├── stream_executor.h │ │ ├── stream_executor_no_cuda.h │ │ ├── strong_hash.h │ │ ├── subprocess.h │ │ ├── subprocess_test.cc │ │ ├── tensor_coding.cc │ │ ├── tensor_coding.h │ │ ├── test.cc │ │ ├── test.h │ │ ├── test_benchmark.h │ │ ├── test_main.cc │ │ ├── thread_annotations.h │ │ ├── tracing.cc │ │ ├── tracing.h │ │ ├── types.h │ │ └── windows │ │ │ ├── cpu_info.h │ │ │ ├── env.cc │ │ │ ├── env_time.cc │ │ │ ├── error.cc │ │ │ ├── error.h │ │ │ ├── intrinsics_port.h │ │ │ ├── net.cc │ │ │ ├── port.cc │ │ │ ├── subprocess.h │ │ │ ├── test.cc │ │ │ ├── windows_file_system.cc │ │ │ └── windows_file_system.h │ │ ├── protobuf │ │ ├── config.pb.cc │ │ ├── config.pb.h │ │ ├── config.proto │ │ ├── control_flow.proto │ │ ├── debug.pb.cc │ │ ├── debug.pb.h │ │ ├── debug.proto │ │ ├── master.proto │ │ ├── master_service.proto │ │ ├── meta_graph.pb.cc │ │ ├── meta_graph.pb.h │ │ ├── meta_graph.proto │ │ ├── named_tensor.pb.cc │ │ ├── named_tensor.pb.h │ │ ├── named_tensor.proto │ │ ├── queue_runner.pb.cc │ │ ├── queue_runner.pb.h │ │ ├── queue_runner.proto │ │ ├── rewriter_config.pb.cc │ │ ├── rewriter_config.pb.h │ │ ├── rewriter_config.proto │ │ ├── saved_model.proto │ │ ├── saver.pb.cc │ │ ├── saver.pb.h │ │ ├── saver.proto │ │ ├── tensor_bundle.pb.cc │ │ ├── tensor_bundle.pb.h │ │ ├── tensor_bundle.proto │ │ ├── tensorflow_server.pb.cc │ │ ├── tensorflow_server.pb.h │ │ ├── tensorflow_server.proto │ │ ├── worker.proto │ │ └── worker_service.proto │ │ ├── public │ │ ├── README.md │ │ ├── session.h │ │ ├── session_options.h │ │ └── version.h │ │ └── util │ │ ├── bcast.cc │ │ ├── bcast.h │ │ ├── bcast_test.cc │ │ ├── command_line_flags.cc │ │ ├── command_line_flags.h │ │ ├── command_line_flags_test.cc │ │ ├── ctc │ │ ├── BUILD │ │ ├── ctc_beam_entry.h │ │ ├── ctc_beam_scorer.h │ │ ├── ctc_beam_search.h │ │ ├── ctc_beam_search_test.cc │ │ ├── ctc_decoder.h │ │ ├── ctc_loss_calculator.cc │ │ ├── ctc_loss_calculator.h │ │ └── ctc_loss_util.h │ │ ├── cuda_kernel_helper.h │ │ ├── device_name_utils.cc │ │ ├── device_name_utils.h │ │ ├── device_name_utils_test.cc │ │ ├── env_var.cc │ │ ├── env_var.h │ │ ├── event.proto │ │ ├── events_writer.cc │ │ ├── events_writer.h │ │ ├── events_writer_test.cc │ │ ├── example_proto_fast_parsing.cc │ │ ├── example_proto_fast_parsing.h │ │ ├── example_proto_fast_parsing_test.cc │ │ ├── example_proto_fast_parsing_test.proto │ │ ├── example_proto_helper.cc │ │ ├── example_proto_helper.h │ │ ├── example_proto_helper_test.cc │ │ ├── guarded_philox_random.cc │ │ ├── guarded_philox_random.h │ │ ├── memmapped_file_system.cc │ │ ├── memmapped_file_system.h │ │ ├── memmapped_file_system.proto │ │ ├── memmapped_file_system_test.cc │ │ ├── memmapped_file_system_writer.cc │ │ ├── memmapped_file_system_writer.h │ │ ├── mirror_pad_mode.cc │ │ ├── mirror_pad_mode.h │ │ ├── mkl_util.h │ │ ├── padding.cc │ │ ├── padding.h │ │ ├── port.cc │ │ ├── port.h │ │ ├── presized_cuckoo_map.h │ │ ├── presized_cuckoo_map_test.cc │ │ ├── reporter.cc │ │ ├── reporter.h │ │ ├── reporter_test.cc │ │ ├── saved_tensor_slice.proto │ │ ├── saved_tensor_slice_util.cc │ │ ├── saved_tensor_slice_util.h │ │ ├── saved_tensor_slice_util_test.cc │ │ ├── semver_test.cc │ │ ├── sparse │ │ ├── README.md │ │ ├── dim_comparator.h │ │ ├── group_iterator.cc │ │ ├── group_iterator.h │ │ ├── sparse_tensor.h │ │ └── sparse_tensor_test.cc │ │ ├── stat_summarizer.cc │ │ ├── stat_summarizer.h │ │ ├── stat_summarizer_test.cc │ │ ├── stream_executor_util.h │ │ ├── strided_slice_op.cc │ │ ├── strided_slice_op.h │ │ ├── tensor_bundle │ │ ├── BUILD │ │ ├── naming.cc │ │ ├── naming.h │ │ ├── tensor_bundle.cc │ │ ├── tensor_bundle.h │ │ └── tensor_bundle_test.cc │ │ ├── tensor_format.cc │ │ ├── tensor_format.h │ │ ├── tensor_slice_reader.cc │ │ ├── tensor_slice_reader.h │ │ ├── tensor_slice_reader_cache.cc │ │ ├── tensor_slice_reader_cache.h │ │ ├── tensor_slice_reader_test.cc │ │ ├── tensor_slice_set.cc │ │ ├── tensor_slice_set.h │ │ ├── tensor_slice_set_test.cc │ │ ├── tensor_slice_util.h │ │ ├── tensor_slice_util_test.cc │ │ ├── tensor_slice_writer.cc │ │ ├── tensor_slice_writer.h │ │ ├── tensor_slice_writer_test.cc │ │ ├── test_log.proto │ │ ├── use_cudnn.cc │ │ ├── use_cudnn.h │ │ ├── util.cc │ │ ├── util.h │ │ ├── version_info.cc │ │ ├── work_sharder.cc │ │ ├── work_sharder.h │ │ └── work_sharder_test.cc └── third_party │ ├── avro │ ├── BUILD │ └── build_defs.bzl │ ├── eigen3 │ ├── BUILD │ ├── Eigen │ │ ├── Cholesky │ │ ├── Core │ │ ├── Eigenvalues │ │ ├── LU │ │ ├── QR │ │ └── SVD │ ├── LICENSE │ ├── _DS_Store │ └── unsupported │ │ ├── Eigen │ │ ├── CXX11 │ │ │ ├── Core │ │ │ ├── FixedPoint │ │ │ ├── NeuralNetworks │ │ │ ├── Tensor │ │ │ └── src │ │ │ │ ├── FixedPoint │ │ │ │ ├── FixedPointTypes.h │ │ │ │ ├── MatMatProduct.h │ │ │ │ ├── MatMatProductAVX2.h │ │ │ │ ├── MatMatProductNEON.h │ │ │ │ ├── MatVecProduct.h │ │ │ │ ├── PacketMathAVX2.h │ │ │ │ └── TypeCastingAVX2.h │ │ │ │ └── NeuralNetworks │ │ │ │ ├── Activations.h │ │ │ │ ├── Attention.h │ │ │ │ ├── BackwardCuboidConvolutions.h │ │ │ │ ├── BackwardSpatialConvolutions.h │ │ │ │ ├── CuboidConvolution.h │ │ │ │ ├── Patch3d.h │ │ │ │ ├── Pooling.h │ │ │ │ ├── SoftMax.h │ │ │ │ ├── SpatialConvolutions.h │ │ │ │ └── TensorConvolutionByFFT.h │ │ ├── SpecialFunctions │ │ └── _DS_Store │ │ └── _DS_Store │ ├── gpus │ ├── BUILD │ ├── crosstool │ │ ├── BUILD │ │ ├── BUILD.tpl │ │ ├── CROSSTOOL.tpl │ │ ├── LICENSE │ │ └── clang │ │ │ └── bin │ │ │ └── crosstool_wrapper_driver_is_not_gcc.tpl │ ├── cuda │ │ ├── BUILD │ │ ├── BUILD.tpl │ │ ├── LICENSE │ │ ├── build_defs.bzl.tpl │ │ ├── cuda_config.h.tpl │ │ └── platform.bzl.tpl │ └── cuda_configure.bzl │ ├── hadoop │ ├── BUILD │ └── hdfs.h │ └── py │ └── numpy │ └── BUILD ├── tensorflow-yolo-ios.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── tensorflow-yolo-ios ├── AppDelegate.swift ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Camera.swift ├── Info.plist ├── Jetpac.swift ├── TypeExtensions.swift ├── ViewController.swift ├── Yolo.swift ├── tensorflow-yolo-ios-Bridging-Header.h ├── tensorflow_utils.h ├── tensorflow_utils.mm ├── tfWrap.h └── tfWrap.mm /.gitattributes: -------------------------------------------------------------------------------- 1 | tensorflow-yolo-ios/dependencies/** filter=lfs diff=lfs merge=lfs -text 2 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2906fa9536408f7fca6c203b704980829a5170d57cdac0361212c104354db0e5 3 | size 20155 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/COPYING.BSD: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f877e5ae4672568ef82cfd0023e2cef4a7cf55d867ab249efc9569a7eb9e5b1 3 | size 1516 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/COPYING.GPL: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 3 | size 35147 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/COPYING.LGPL: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 3 | size 26530 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/COPYING.MINPACK: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f5b330efdad110cdd84d585ec61220b0650461fa599e36b13e1726c9346dcfb9 3 | size 2246 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/COPYING.MPL2: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fab3dd6bdab226f1c08630b1dd917e11fcb4ec5e1e020e2c16f83a0a13863e85 3 | size 16726 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/COPYING.README: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c83230b770f17ef1386ea1fd3681271dd98aa93646bdbfb5bff3a1b7050fff9d 3 | size 779 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/CTestConfig.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6fd720f611ce2c370c6e2a4875e375e4554e651169674cdc1b56b0f297fe8b3e 3 | size 588 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/CTestCustom.cmake.in: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0fd7751807a26c70c29aa8a4a642e7a575ae4cb57c19614550d611fcf2f10673 3 | size 105 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e99debb6c24423664cf610d53fab092eeab1ec23076b966476ddfe73af120202 3 | size 694 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/Cholesky: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:acfe8307dc7a4732359166d24c39f3dec6a63f1534f010557851cf54b342fad8 3 | size 1129 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/CholmodSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:26f0d1bd0677785394f1f4eb2cddf763423f703c0941b3e58373e955b0130327 3 | size 1900 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/Core: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f1811268474f9701981791a0f899f5e1a4fdfc7cebcbb8aca212a86a443d6d5 3 | size 16348 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/Dense: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5325c9d4d693e504ee012c5275ad4b10b135a701cbd87c14466d2ea21ea22ee5 3 | size 122 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/Eigen: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0473b5d7c0cd9311d4a90548162e8cf160904476871f7fb749e9624e9b3dfd1 3 | size 35 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/Eigenvalues: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a4d5cac960365e774da86d73410c4091d982fdc7ff7e63360e19b19985f1c18b 3 | size 1763 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/Geometry: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31e95666fedc8e0a421f5c0e213d0916eae85ca4b427512ee124a0d717671a49 3 | size 2050 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/Householder: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fae2c45c354729a373934f5104602458dbb38b3b6e61f58ef5b156b7babab749 3 | size 874 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84ffa38ac1ef3be005bff500b78b529c1e164fc50637836ff8648fea127b74f7 3 | size 2083 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/Jacobi: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c48a6074e2e65b3648dd8671574a74cee253d8e2b94866f5410f124a55589232 3 | size 939 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/LU: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca8ab01c365777a73a7ca80de3f0a27a174d423ac5ae41e8f3face19ae38fc5f 3 | size 1374 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/MetisSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e46d51d3065962408a403480f2c9cad4e7d61fb509c1e4a695274751274969a2 3 | size 991 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/OrderingMethods: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a298753f1bc00c6591cf3d8faf2053ac9b0c8d362e71ba2136504ca8cbd8d9e 3 | size 2483 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11485398858b54ffc195cc51d31543fc65fea79a8cd901ef95da405ce790e370 3 | size 1676 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/PardisoSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50ec5003df399fabf518620e220f71c717ff3a03a7218b8650a974dc3ad06b15 3 | size 1116 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/QR: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a63a1d392e01ca8f1dda6573c37a4566ee10b39402df38a2463bc4415193d5ef 3 | size 1258 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6cc009bbe9571335e2d830f25e79dd7c7846fc7140273eed439043162992ec7d 3 | size 930 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/SPQRSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4fa2d73b998c0794682d63dffbfff795bea41a7d18665840b1c357e66ff1c89d 3 | size 1162 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/SVD: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e30c5ec54f305c75f16bb3f92204de44599126fd1d756baf94675a8f7a6b800 3 | size 1570 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/Sparse: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be351b6ee652a7a20e3953d0eae216d4d01c2c26ba7b6a464bf908db3449907b 3 | size 888 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/SparseCholesky: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7fefd6f6aa714052d1a67ef9f598d47bdfa2e21f237c820c4c0e37d013b49229 3 | size 1371 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/SparseCore: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2323c1e3179dfc6abf348161b78c1bf5ecd0caa8f452c70caca9a1cdfdd6a6ae 3 | size 2240 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/SparseLU: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf9296fbb3c7d68329013fdc7464e1d696d1aeae9c778d9e06d370d108fad9a2 3 | size 1713 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/SparseQR: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9756bad84167491b44d9990613ea2e889857eeb54ffca50d590410846f5c67d2 3 | size 1222 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/StdDeque: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb8e008f5e2d605f95d7f39777030d56bc385d91cf5564b01988f78440513b3e 3 | size 744 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/StdList: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f93fe38eeab82d491da15cf33d01451b17950f5d34411dc0649cf93b7cd44dd4 3 | size 677 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/StdVector: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:207773fd0ebc49b139cd669dcf02dd90462d0bd177d673bcb417f893f1620c10 3 | size 750 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8aa601f3fa1e6bfc03b799666bf39ebc42d44917a5fb2aaa489beafd63901f72 3 | size 2243 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:003d41fa08cde68b1c4698499fa9bf9c803cebb27ae748615851519f42dc56ac 3 | size 1382 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8747c66f7ea0535fa3a3944554ac1395499be9d63b1cd2341163e5a4de96fce5 3 | size 24254 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:26a437090ef5a8e6499e7cf2f628b88dc16a515d3b545c70b64208f2afe99af9 3 | size 17793 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9639ee6c3918b5dfacd9db51169972a9cfd654266ecb0ad6ff5159b69a785660 3 | size 11944 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b0df9645c11e3aa3479ea789f0ff8c34e993631c6b7bde6a130d98af30f6eb7 3 | size 8107 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3dfc6a05fef83bb7743f3d45e8028cccdff4010a5d516396c6087a45529e694e 3 | size 2720 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f965654d06dc2888bcb098b50eff171b0f3697cda6a432c1da7f6cc13ded862 3 | size 12221 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bcad8b0d59a56e9f3d4f39ee6396e27cf4143d24fbd24c91fab7e03c7415c564 3 | size 13910 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:551858019e0ae5a66ef5638036f18124c18033b3cfe04ba7c4c934d15ebbc747 3 | size 18064 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac448278585847ed6a71b6dc874f0371f73f95bb40cc25a808f0e237bb4af331 3 | size 27081 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed8772fe044514ee742bdb102b958b7dd475226bde4416d7544f1ea1b428efdf 3 | size 9502 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dec39a9b2b4047b651ee4298ff5a331551a71f4c0a87fe9f2e11657b8ac3c815 3 | size 11293 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a88d0ccb46e1c902a4fa66f4be3ad20aa76eb2a1b784a1b3e4c25dfdc85e1853 3 | size 5540 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9363e60d792c2c3db5c90c6237afd9f7eb482e6df68ee19d5aed1f545fd3812f 3 | size 5705 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e3e2372b2dd757745cda43fcdc0789bd01498fd55b9faabc72bdfe6b35ac77c9 3 | size 7443 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aaa78b1bd1d5d4e242de2e3d1b17d2fa0d427507f00b2b304eeb2257901778df 3 | size 3449 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:470ad322edb985e2bcd4ec39ee3b6a97f043a0e302dece16edcef05deaa7e2ba 3 | size 6655 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:005a99b916a5ef1647508c1d8a4fcc431a19ba47b1bfa39c0500c72f56083df0 3 | size 10621 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:263ee4b850c2f9b4ce53fb66532cccd31a638eaaa17796e8a8f8f93cb2fa30c6 3 | size 19170 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c47c5e3c41dec88cd073965a6a25c0a851ad561d41ce9c61038e90536e449d95 3 | size 22274 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c8647715e83f43877fb68ae3e92a56f1bd3080b3b16113ebb9ef3f1212a2e6e 3 | size 3400 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dfe76e0908276d20f3693ec87c3e8919ea57a742d0aae34b907cfabee8f8eaa7 3 | size 3582 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c5714d50472dd0a0472de19b55d5ffe1b627179c4d8948b670a9bf55da4af4c 3 | size 9160 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4704836fb3e5136233f64edd47aaf67534ac46648820710a34be916dc1c73fc8 3 | size 7149 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38b78ba788a7fdf72cd88bfa1613e0af2ffeddc6b07703a28cf2ba481ab1a43c 3 | size 6379 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:671d7a446fe91fa9c49240821afcb84a0bf7392da61c5fb0f5593f097302389b 3 | size 17832 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:478a43c901c68462a9ab0821d2c80b05443f41dfa1d13775d8bd4ceabe53aeeb 3 | size 12729 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8d810dfbf08ee5ae0d39fbc3f71f0059b3d95aac6fdb63b64c711839509c6305 3 | size 5595 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72ab4399c776921547cf13af74c3b13f412af9efc8f431293e1a0fa9a7319d64 3 | size 7073 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8739a2a3d23debd527816d961fda688e8dc3ec9be61da9b45f4d2cee0a048636 3 | size 6020 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6e8eb47a1ec2ae720875bb4161a3e311f4eeb1f36dbed8cc0acccbba0587a22 3 | size 6332 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffbb1e941695a300c65c4333df7966270fc8a1011356beeebfd4d780f28bf803 3 | size 4365 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8c6ceb9cfeda477c5f73429ae6a910664b7b07507f6f45162c4d0f697ebde91 3 | size 7632 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:523f6b45d8b0a0242963ad2a4d5a4fee910485bc7e7fc9ca442cca8282b3a961 3 | size 3865 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb3eebb8b252ee2aa5f97eb97675a14c1317b95a0ce6f83abc6dc6b556df4cd5 3 | size 2683 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:20c47465ac7098a94e3c4b624db88c9ff719cd7be183f28dfe7d964bb54d8462 3 | size 14669 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a45df905986d0f46db45bec6dc7bd5623926c4f85101eb15f52aa2fe3f7ebb18 3 | size 3462 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5773e7befca709ab19d7038019cb2b63547d5731912e0a737ce33377f3f3816a 3 | size 7916 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9abb8effc1a5f1f3f184923c33633bcab7c561a4522fe6a51f24d065d33c9bd 3 | size 18478 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45e90a0556a27623a911bf6c9bc81cb3dfcbc9ec82dce28e4af7f8255ea5dad7 3 | size 85 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1008b6f7b52050b6f58456adbbb364c4ac1eabb0f458ae0d023510b847648d6 3 | size 6366 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:666d793d75de858bf496e698d6e23d1363e4c9707c370a9279f504c3a500a9ad 3 | size 6191 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d81fa2e1093a9d5028b032787f99cd0cf7d2d25a07506e6fab2ac3b665df9879 3 | size 14483 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9add6beffdfda8d5547a571d713a63f790d19c78ab2b17aa3d5c7ffe159f116 3 | size 3057 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:341a76ad63072dceef85132886647ad08b0e1da024d18ce1b51f3bba4c052fdc 3 | size 32803 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5ae98a8b5e081b2ccc1c23cea07aa3c44f71e4c0144a7777c6fb12f68d3b00f 3 | size 14947 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47975ed4891b4a9bca254954de9cfe34cad7e538442ade20a18778402175f89c 3 | size 21478 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b647b5388fc919b768a2f6b23920dedb132dcf949f32e687062baf68961eb752 3 | size 47248 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:853b67b83ab57e202cf100809f4de44877098bd9ac17e48685b4111b7dd5cf2e 3 | size 32607 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:716244ce3fd3935a46e7b4a1fb7c12f914b058e46d31ac921f7ce2a049203a28 3 | size 12650 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f8f9fb664c1462056175f956d9377bedd150e8c45fb89a39ef4463b63686c4a1 3 | size 2913 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2088910ed3d2fd24df3d2f7cd3164bc8457c782a8e0058b7f4adf228a1d3eeba 3 | size 2742 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5fe0795f45cd92a09b48c02259ef743bacbbe86f890cb0c0725c0c03fb56886a 3 | size 1748 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74e5a8752672edadd93637f6dc7feb8a50427ea94f9ac5d1ed56dc2dae0fad67 3 | size 30560 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffdfe0aa46cb3221202a9f2582e39ecf6d5ad66626cdfd70f409859521d68346 3 | size 7834 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7300eca7804860fc8679f26f68001bfb2803fe519c3c1cd2f1e37787be965415 3 | size 1058368 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/INSTALL: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fea6de66ae7d99fb68b1d3e3e1da9a4438133047c2ad1c92ef56ee357e9212c3 3 | size 1145 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/README.md: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b3ddaec87aa7d4cd66c201fab4f1f66d15aec57004513e24e82628599907c2f 3 | size 178 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/_hg_archival.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9f2d6dcbc7f733d8eea9e9271b049237b49ae843f38c8ad0f3f2eb32c55bf9d 3 | size 177 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/_hgeol: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b14d3574dc66a37518273a53ab0950e479fd65f0bddd7c7c75dc0c53e18ae232 3 | size 180 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/_hgignore: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:239b5e6020795cf7aa6be5e484d3cbcf4b2cfc575c75e54e112b0b123efdb48f 3 | size 243 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/_hgtags: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9eed750c2ffa8b8e7409ec0bc8df32a64fb2280b7dcd0673fbd50d8b5e1d041b 3 | size 1466 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/BenchSparseUtil.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66c61d33953616ee3cb537dda2ce4e9edf2412f356925d1803d2f4bfce57cc4c 3 | size 3932 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/BenchTimer.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:245b6c4935603f6ad7ff71e7dc5724aed950ec2a92a6682b5cd1a09febe8dad5 3 | size 4392 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/BenchUtil.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae7a52d70851285a5ae0fda4fcd51fa9fabfa50109a5896d7a539e68e5b3a07e 3 | size 2529 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/README.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebf8c1a177ec249c3cc3796c24ea0e19d56766183027a4c066fe2066b11b8572 3 | size 2008 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/basicbench.cxxlist: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c6f534c997f2d03d114b88b24942a0dbc41988ba97b52e7fc466503e2ea62e6 3 | size 1421 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/basicbenchmark.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ddd830a1fcea1d31c55528e9fb2ef7b0f4f7569ed35afe11ab3f19a9b796a07 3 | size 1107 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/basicbenchmark.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:64f3dbf84240e1903c7a81c5f50193e1eb417af808cd5dab24821e0d0d665904 3 | size 1669 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/benchBlasGemm.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dca3e576e189e1d1424078f0efde8e53f7345cef90debc59315cbf7954847a5f 3 | size 6313 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/benchCholesky.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2a853823faac28d686c3fcb3631011d9acefb18b6e8ad2dcd132234bcbe2240 3 | size 3534 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/benchEigenSolver.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dae7dbdf5a71e3065b6a4a57e2983497ea66cf7c6fb202168ded689dce0052fa 3 | size 5788 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/benchFFT.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa14f9501b5122757aed87a7f310a625ed93a49b93dee41d6c348cdd8cd9eff7 3 | size 2806 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/benchGeometry.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fa007e37d732d02f9d8bdde12821fd950d136651cdba4c062debd855186c960 3 | size 3598 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/benchVecAdd.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e85f2417ca0d41bb0fdb3a59e1e4b21e7e382f217757a01ef1224cca66cc40bd 3 | size 5193 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/bench_gemm.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ee9f22bc10abaa5c71124b8afed82bd1c79903188737aa251f41b750ed34ef4 3 | size 10821 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/bench_norm.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e5f749eb71bfa083d126052364206ffcea6aa3380fc706e42dd19e0e030b556a 3 | size 11652 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/bench_reverse.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:474d5a28af2918b93c2e53712900ca4d2e2cce946db83f4faf1bc26516da66f4 3 | size 2159 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/bench_sum.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63980d42a7cd12839ddbf12542549c701c7e367f489b6c9d68814ccda1f16edd 3 | size 320 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/bench_unrolling: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3006d8b8add449b53a8159324d01a66664ee583b0f5908b6153a803d67cc6505 3 | size 651 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/benchmark.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63b7ee0f974d88bac9cbbd6a478465ceea07104e6f01829dc25ea655397bccb5 3 | size 790 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/benchmarkSlice.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b28f48dd4378de41d8601c9dc303c3a99f54d5c35ddc1232d195459be8f4e1ff 3 | size 835 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/benchmarkX.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c568232dc770e3ce813b6b55b1347d352b7bb984511e73ab43f085644aa811f 3 | size 640 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/benchmarkXcwise.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:960fb05807bd8e8dc16b0ee5c71540bbad43d6f4e48e427bf7e4748f07186649 3 | size 605 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/benchmark_suite: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:605ec09846378820d7bbfd2358157d536a15cebc007035b20d0d67d746749537 3 | size 1209 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/btl/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:122406773fb399433252b9b9a635e4657bb1029b728c1cd1f158335c80d2aa85 3 | size 2869 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/btl/COPYING: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8d0e2bcbf36f6af3cdbf94055ad2ea675d5a19fc623eb0ec82febb2b08e719b 3 | size 18109 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/btl/README: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6e8ede422a6c148ebb8d56fd40c471ac69fc57dbc6011e9fd0b400faefae458 3 | size 6447 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/btl/cmake/FindGMM.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ca6017e63ebebde218c14ed9ceedaa2dc810263c327d6df673669741e5ed251 3 | size 366 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/btl/data/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5675d933b40aa724f27cf58849b719cab4198e3f2e28d6a01cb868fd628f0b68 3 | size 869 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/btl/data/go_mean: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47849b06a5ff60c50ae99633f1d27858771392e907ae0498b94c42d4f09c66b4 3 | size 2065 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/btl/data/mean.cxx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c51925e5f97fcefc44858c54a4c13a9e9fd15b5848ce9e59de5efd4debb7d8c1 3 | size 5306 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/btl/data/smooth.cxx: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed4c72fea4488aec31f975342fe687ebc9a34eb43d46f31a6914e4a0288b7fb6 3 | size 5112 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/btl/data/smooth_all.sh: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:283894414a693d6d0167690ad4e2e53fa3adac20b30d681c62862d38d73973bf 3 | size 1687 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/btl/libs/BLAS/blas.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:955d4441729275467686242ee46c967f99db41bbc5ae4e985bc0b4e1ee664d71 3 | size 35158 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/btl/libs/BLAS/main.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd4a0e77cbc83e004385d988fa1135793c26b4f6a51cb6be3764696a721e007d 3 | size 2963 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/btl/libs/STL/main.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55c027b487b88fd578ea097ed7b881c5d42bbe167e32a764dfbc51ee60f912ac 3 | size 1828 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/btl/libs/gmm/main.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7cdd224d0b11c5a4ffc0ca0464c8b967c4078507e748d47a320c318a8df5ad3a 3 | size 2113 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/btl/libs/mtl4/main.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:afa3e7977a24ce2e3edaad200ebba28549834abb1022cb62ca42fd2c915d617d 3 | size 1943 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/dense_solvers.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07d9289221c511529363fd06d6d7ea14deaa1605858141e8920adbae355d62e0 3 | size 6416 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/eig33.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffbe256ea84dd388badc3fcbc0877b49d272f163ebdccc8614ea86b37a1dd87c 3 | size 7244 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/geometry.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07f8ee6643cc9fc6fb6ca7facba89b9b096545b486f24257c8ad545c50354ab1 3 | size 3307 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/product_threshold.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b6794c1264e6a9436afe048f6b8d8797c27927bf8e220713301cb6830098d18 3 | size 3232 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/quat_slerp.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dafc8806c1173e8bb8a0ee5bb455b4c655f6a4d2b246cffaf2f8962505644eb7 3 | size 6006 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/quatmul.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:59bd8fbb785851a6f319c16a02587fa340f07b5b888dc6b30c026901ecdd5daf 3 | size 1097 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/sparse_cholesky.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:20c51b5d9d5a8a90bda9e887b887b5874af1afd646ef510e2120d03b5083abb0 3 | size 6260 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/sparse_lu.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f390784c11217e65066ab9204b0db36e7586028bab3db83b18cee4e63b0063d 3 | size 3011 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/sparse_product.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a063d3866d37aa8693fbe4983ea1c03c876b5670ae9785de3d8951884cac1fd2 3 | size 8999 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/sparse_setter.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f343715a20efa0394f55a8fa8f8b7f63dd7248ab23f2dddd87969d7991e9e146 3 | size 13761 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/sparse_transpose.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46cebc93521d5ce8249c808a8f8195d95360858653f096edf59ec0ebda1efed9 3 | size 2347 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/sparse_trisolver.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4222f9c3a95d1c4cf6cea59fe9aa20fac7dedc4030e6d82c0218313f78b3246a 3 | size 6114 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/spbench/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1e0e6d3ad2e332d8ffecb22974810d5d24385981ef92a0e83a5c9d597fe00c3 3 | size 2521 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/spbench/sp_solver.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5717d2fe237e0e27cdfa00e80331c8a965dff6c190fb1efb588dbac7ed9b3a73 3 | size 3974 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/spbench/spbench.dtd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e426c3b7d2dd8b1d7985c22c793589928c6bebaa493b99a07d2b723e7a77cb10 3 | size 1856 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/spbench/spbenchstyle.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a14dec78f5d00c2ffad37503daa9349b552afa627e2756e79a7ecfbc9ec0e32 3 | size 3825 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/spmv.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f17ab9b3a28313ea39a5a7047a49d14f0e89962a2e897a29de63502191d162f0 3 | size 6096 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/tensors/README: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b8a74f72f04b78fa9766ef6ce636c3a8d651d818638f512a9d220752782722b 3 | size 1298 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/tensors/benchmark.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd457833b69fffc86323649b99d3c26e898fb829bc4f247231cf78144aeb6385 3 | size 1585 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/bench/vdw_new.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63a77dc075097751d5db796f906202fa29665383775645182d270ec2885ac125 3 | size 1203 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/BandTriangularSolver.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:279815ff3ac3b68b6df892b16d8e501b03c3610771115cfab3081dd98bb3f317 3 | size 3614 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6cdab865f74560415130dfb931442db342cb7b735d72f6213d22449eaa0846ea 3 | size 1651 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/GeneralRank1Update.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1149e3b92373c5a857f3ad436cf77f768124c50b8f69aee14cda8d22ac802abf 3 | size 1608 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/README.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:91d4a372349dcfb9616b94b69e415074c99dd80bbae3d559ade6647115e3b305 3 | size 183 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/Rank2Update.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d297e3dbd8a3f4f122c05fedb8b1aea008621636daf94818d28c182adbe65769 3 | size 2168 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/common.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9e31c5e1b17349872147c4fdbeeae86dc9baf38eb4c96f4ad1c114f7b16470a 3 | size 4361 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/complex_double.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42ec8c0833dcc1c9f3840289af92ad1db851e3bc98032cb365788b0a5837d28d 3 | size 647 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/complex_single.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21059cdb1ec3b3d29c230637284d96f9cb2b1c39321cf685b707bd4cbef793ae 3 | size 646 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/double.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d615bd225044bd595d525981809ea6f85d6ff8cf876cf36c4390742d1c83ed23 3 | size 1501 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/chbmv.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc0f1df9183db3676eb2cf9b6072f500d2a0939307c54120e859c030e96da176 3 | size 15108 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/chpmv.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:277b013a02354b0ccb6f008cf20e3074f7659f0b833f0bef7c4c71c3e7c892e8 3 | size 13026 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/complexdots.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c32b99562d4706104ccf8246eeaea820e4ce817e10e0c12af3b8d219a819ae95 3 | size 2310 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/ctbmv.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:548aa14ce498d5b85fe1a00071db8872a274bffb74138fe8bffa72095ccbc7c9 3 | size 18944 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/d_cnjg.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:706a82fa0d5400eeef9ddae70eb8a9d963e560aee3f4934d236c4f594e9ea6f4 3 | size 117 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/datatypes.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:41fb183a6ab41f4f1af59d377dda775f6b3d24e856b3132b736516c7bf32ea36 3 | size 657 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/drotm.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ff3436a531056bb453bdf1b4d09247d5827e3c7e719399a0722176d7e8dc21a 3 | size 4968 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/drotmg.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13c087fc8bd8d203d4a30a2c95020b16f17c4e88b18a76b18624a0eb2db1bb5d 3 | size 6193 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/dsbmv.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b8a2c5512255169898f1441523991210711c6bafdedb63403b1112f91b938ff 3 | size 10188 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/dspmv.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9302a75bf25513accbda9fc8648c52897a5281ea94bba6965487ae8ce95e2dc5 3 | size 8075 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/dtbmv.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04b1a986b04cc7a2e9e45293bb3fdfea4ca003f8d551056ae09cb722ee3221f5 3 | size 11656 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/lsame.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0988c4471ddf44702ba54bfe1dfb3be779247b4321606d8a779bc1544b9cca67 3 | size 2976 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/r_cnjg.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37d40efdb9c10a7871df0f11db45d4b14fd10d22e64ea8a1f588f76a39b9cd07 3 | size 105 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/srotm.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bdd521cf885bc13e6134b085f5151776e9b3db0c11bd16cfb366bc34ad8cad64 3 | size 4902 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/srotmg.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb437e5082e7592596af1d582527d39483085d6c4b4b11af1109cb9311e747c2 3 | size 6056 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/ssbmv.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f93b4c7417203873c5c592fefcfecddee7cde2629defbc7154d12a796abc2727 3 | size 10210 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/sspmv.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:929d63e71f558960640fae57e020087a2e135eda022789e2b1ef21a2bb3d6b80 3 | size 8051 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/stbmv.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b929b7c139dbf94f2574ac865f302045a2b4bfb4acb5145c94f90023d5c06e8 3 | size 11642 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/zhbmv.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc040743236fa1bad0fd87143d245e02d23e96d36efe672c00c2a0c69015b8b3 3 | size 15144 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/zhpmv.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:193881cbfd058e9a9f86530e548a60abb7d5d6adce20a106caea5d99d2f313e7 3 | size 13060 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/f2c/ztbmv.c: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7d78e99a9ee636bc7ff25d153294f243418884cb0c3708c04e94f5810729ca7b 3 | size 18972 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/fortran/complexdots.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69dffd84526e1871475d168776c59a3d823c66f2a3a4e7612efaf29205a69a3b 3 | size 979 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/level1_cplx_impl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c037c16cb79faa5066a209aa8da9674c9f9da2307e34c3bacc58eca15f897c04 3 | size 4956 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/level1_impl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7ab2b263d87a1aeca3ad1469e388d2a165cc8f72b54bcf3a5d62d941fb1caa0 3 | size 4559 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/level1_real_impl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb32046e8302b5a96d3692ca235dc36a7fe4b45f0eb86f53802e09e8e05085af 3 | size 3617 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/level2_cplx_impl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ebb9183a63a1d50e36f3a01833a793bb427353432c6dd553481b807e409b77e 3 | size 12223 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/level2_impl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b02a14499a26d6a5b7614020e8ae9af8cb31cd37a45f009cb4a024672e321e4b 3 | size 25172 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/level2_real_impl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:26a5c623664d85092dbf38e30037ac834254ff8157c94251a573f5f05f7d7b76 3 | size 10499 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/level3_impl.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:634c611d0fa7876e45c07f7d93ce76525ab297cc8896f03a7e8be3673257192f 3 | size 37780 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/single.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86d07f00e2e0dbef3bb7a55606c7c4a9ccb7c1001a750a85c4704fea5228ea49 3 | size 757 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d2950f5e26b7cdd7f6457dbc17c14b45fe5df8fa46a506995e52dee473ffe85 3 | size 964 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/cblat1.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4457886ae9b1bd4fa1347fc54e4359846ecc6e3743ffc4fd8d20cc0b6a3318f6 3 | size 32109 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/cblat2.dat: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9ff4d3dc0c5ec9e586cced97eec396abdba2adbc0423cf9e05a3287257fbf65 3 | size 1546 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/cblat2.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:885a15318cdb60fee51874fd64b7e8d278a114de60c9304d9c8d8719a0db636f 3 | size 116657 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/cblat3.dat: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5fd49bc9c1cd91f619e43f325230883e5256d2eb48788d2ac68485accd91acae 3 | size 1046 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/cblat3.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:817535975df1b774ef99d0a6195c304e642a1260a5fe650286466252b0ce808d 3 | size 131550 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/dblat1.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f6e1d35a72e0fea2b0fcd2db89eb74c2d834d8ef6aee36c2547f4842cafa40c 3 | size 44819 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/dblat2.dat: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:17702dd23eb01ab46730a8fa562d29acd781225b0fcfa4861ee50190be808651 3 | size 1466 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/dblat2.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d9fb598ec17b22deb83b1c614530d2c9a0fd5d16f9e42a6c56d0d06af2ad2c35 3 | size 112335 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/dblat3.dat: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:107fd6b141722c25be30787998999fcd087ac3049b350bb605405085c0e2d754 3 | size 882 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/dblat3.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c527da07109f86352a2dfc02b1ebf29da0dc1635ab72e80f8ff3de42fb0b720 3 | size 104262 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/runblastest.sh: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dfc5fe82ae9ee6b5048a9f878bcc16cfc94c083c7ef9857cbffd1e74416c00cc 3 | size 1016 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/sblat1.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:59cc681c14d6f4f76f514e6a695d9888b21921465fa8954e6f96efea8846f4e8 3 | size 43388 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/sblat2.dat: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd71b3af76c57da6956b3df2a7fa702e1de27bbb4bb322bd564d1e18ac5b3a0b 3 | size 1466 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/sblat2.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e5a2017a66d306346ab781b100253e52087b35cd8f4ec700e3244a0320370c0d 3 | size 112251 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/sblat3.dat: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7df9ad36312ad990a95d02d2006337e841c6b9c0b916c01739e0b35bdffb7037 3 | size 882 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/sblat3.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b031004efc667936efdea5a4fc658eea6209443a3caee7774200aefe7360b98 3 | size 104172 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/zblat1.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bbf17d5c26e54ecb1b0d979f443d5295cf92d7ed2adb2631755eac539b58d0d9 3 | size 32114 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/zblat2.dat: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ff47bb2bcbf471760f69db87234c0ad0d837d86c7442197ec43de56079ea550 3 | size 1546 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/zblat2.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de8dbe2afcb81a4fcb2b063cc73737775675049ef6d2d81f5785a6fd0efe81bb 3 | size 117003 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/zblat3.dat: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7da8e615a0e8662e66cd798c2d9b28d02f4cc5dd8dd141308ce9aebf8adfd557 3 | size 1046 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/testing/zblat3.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7433305a981bc5c28d31fce5224d143cbaccbf67fa295b0bcaa4ff4bf0a20f2d 3 | size 131995 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/blas/xerbla.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfdd4c77c1e1984fe5140867d8596baa0d99b0368af44da03079646bd9ab09d3 3 | size 389 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/Eigen3Config.cmake.in: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1005fce9895645f7591bf4446a5ee71ff273f1500c11092698a59e395f36ba2d 3 | size 1358 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/EigenTesting.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e4b7a3a27eba4ec4facbb6179f4fa0d92fc1fd0f742fc4105609e62c231703d 3 | size 21210 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/EigenUninstall.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce4718bea7ecd566e8ee8c181554f915692fe9a714d1a2b8b976cfc4a49bde77 3 | size 1200 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindAdolc.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:25cedc3005d5cb8ce77b594c1a717d0278a50e3832d9083af9af6b2134c76159 3 | size 501 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindBLAS.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f67031112b446594f56489afd5f777e740ee55dcadca32a1dfcac737a932265 3 | size 12988 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindCholmod.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6cc3582648ecf5ddb91945f2bb67f207e40540f97137e528b3e73a850c0698b7 3 | size 2572 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindEigen2.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2e2275a61d2c95334b5958e43d7d02fdaeecaa430d4c79a3531c8ce31a4ed3c9 3 | size 2842 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af6a81ece08a953414c2264e6df02d16522bda0e6087929f9093f7c76c38cff8 3 | size 3501 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindFFTW.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0af5e62615887cc921fd2ec0ac7ca9bed8fc49e1ffa3733ad2dce7321a09627 3 | size 2757 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5eea95d2a0047589d85f6b4a8d894158f84f8e80c824bb9fb483c93a4dcf818 3 | size 2943 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindGMP.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f516c28d0ad8f5bd74cf1340e5f396cc067f807c6e24cffb59616626600a454 3 | size 554 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindGSL.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c11182e8142a52482f83a7fc2ea94edbb41cd1a62ebcf1bf51c7def00096af9 3 | size 5035 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindGoogleHash.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:616792a08ebe968d40376d34b70c9930954822a7a17707d15d7879ae7b2e9699 3 | size 909 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindLAPACK.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:36c21e792df4a40b36a0152172939db9271eaad8bed8de1d4aa87de01c6ed24c 3 | size 9909 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindMPFR.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f786bfaf86bdaacd85e023bbb6880ea15be02bd769044da85b9880809cd8f78b 3 | size 2845 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindMetis.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aac3751612a9ec852433cb52bbafdeecc4a44f9ef4aba6350447e79b27f56e55 3 | size 2007 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindPastix.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a0b01d34dfda06f7115bed94803ee8e2464b55164c1c2b1773cf08ac1b707c5 3 | size 716 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindSPQR.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ae7365f7d8d0baef1c43639b991011a7b0c1abd15ec4fd076bec0eec1a0aeb4 3 | size 1188 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindScotch.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eef83c5569a0b8ba9bf1cb578a1a04b9da23ed6192cd651a414025e7fca390f4 3 | size 615 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindSuperLU.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1556b434410fa32e828f067393c9b8c0bc5450bbb137c21494a24d51df9c747b 3 | size 2299 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/FindUmfpack.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af2d83202ab463c889427acd94c36bcb7160d31013d0abfe8ed7518dc8402603 3 | size 1735 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/RegexUtils.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a75356c10884d2200a32972c55fd82eee6bbe5db810c4f175d8b964c383787e5 3 | size 936 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/UseEigen3.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d55a4600530aff91f51e519b18f972bfd95ea4c974245fcf0e2e5392e985bd95 3 | size 177 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/cmake/language_support.cmake: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67e4fd0581059fe843a23b00baa15f56f7a4ae821f2f0c4c947a703181b680f6 3 | size 2422 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/debug/gdb/__init__.py: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f9be0fd76125d088a5db2c9f9cfb553cc3da70cdf4f23f568adffd821477337 3 | size 22 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/debug/gdb/printers.py: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be91405358353ccf6715bdecebc83a886f9cb9144f5fdab3f8ddad2afd0cfe83 3 | size 6547 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/debug/msvc/eigen.natvis: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7961f05a7362a6d07df9cf654216e92f13988eb7492ffe49b58715b163fab07 3 | size 11661 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/demos/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24ace92e1335eba93cd211c38d88ca7bd175abb6e26bb822a1263e2fd02f99a9 3 | size 296 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/demos/mandelbrot/README: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42793f04352a8a33bcf62fe475ee31b8378b3c53d286c0262d30afd5bb39d502 3 | size 336 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/demos/mix_eigen_and_c/README: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d49a0cd13821f785c2316d3c83bde818e2b34fc99eb134616f30be68b4845c0 3 | size 261 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/demos/opengl/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ea65f3a261bbc40f924d93a74cb478f82a96ed4440c9aa5599ec773f06ddb2c 3 | size 695 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/demos/opengl/README: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21695c86f6d75038a6b4f4ae2ae62867d48504b419c5a9977c0fb418977f9b64 3 | size 403 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/demos/opengl/camera.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3dbbc26fc3b4c39af079d13a06c83f7294c54fb3c3fb9da557d6468bf5d19f04 3 | size 5981 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/demos/opengl/camera.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03c22b8423cab8945c868e9e90e747ec3d0f25b34de8f9c709d561f083310c8f 3 | size 3435 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/demos/opengl/gpuhelper.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a020ae38931389b0cf4e70d16db872faf38ef78e72d357ba4272080af3e04ee6 3 | size 3974 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/demos/opengl/gpuhelper.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:76cd3a98d2505a495a3dc020c90fe9bfd43748c288271601305d8d4a2b0aaa5e 3 | size 7177 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/demos/opengl/icosphere.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1968d9b7d99eba5fa319fe41295421df514eb623ea79526a25e9f06966fad28d 3 | size 3927 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/demos/opengl/icosphere.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:807080c4df9f7dfbc8c896de3510130d4a8d63f2bd8603f31d254c73a33f5fe3 3 | size 869 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/demos/opengl/trackball.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b880b522ffe4b055e9c3fa581c197aa4f7fdccb4eeefe5143ea5741ced1ece1 3 | size 1756 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/demos/opengl/trackball.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6545252466490bf9ecbb2a2b1766f9d827c8cdd2340edd0988d8477a56811f5 3 | size 943 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/A05_PortingFrom2To3.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:33f572570ad2498620a7c9a22bf1094ec73a791aaa4c8c0b86f3fbeec15ab888 3 | size 12377 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/AsciiQuickReference.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a5edbe7c16ccaaf08143092e32cf8f4cbd76a4d78f62e7c7d8678b1c4028d972 3 | size 10273 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/B01_Experimental.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ee2d338376a4cc51992e86a425adbc8b29423e1d1b0c6be9dd06913d52af28b 3 | size 2425 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d922a4dab986149908015de370fb3c21a6e8e568997e2331ae7a685fcc148578 3 | size 4662 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/ClassHierarchy.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03f73c414e9cd402520ca3e95534970e2073f0b5f08095e012b847baedb1d83c 3 | size 6332 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/Doxyfile.in: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:921352e85d057a32d4528bba255a37f203b926b0f90e9c64f2dd800cf2d13d25 3 | size 84647 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/HiPerformance.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:248e2d095747fb26be8d4575897a4dc2d2b1911f360162fc8d400171b663a6c7 3 | size 5429 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/InplaceDecomposition.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af8f8df46965f3f480aebc08406265515c1b3c34568b56ef2a544bb822224da6 3 | size 3797 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/InsideEigenExample.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e236e10dcbf9c01b8c59dddf9930bceb96fbb0985ae1485d2c221fea1dd0d375 3 | size 30239 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/LeastSquares.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38075581aa093e3c626ab455af54c9da088c703e801479f643e7f132ab4e731b 3 | size 2797 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/Manual.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67b0b275a8bb73394bcedf6a217de899a13ac92900f375d05791e15d67f15dec 3 | size 6522 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/NewExpressionType.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c5392a2de4777017cc6437e903a1872d7d5c113b4f1573eac337bbd9704768c 3 | size 5610 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/Overview.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e7f99157d24ec44d5b2f9f95cabdfdeb88510bbd79abe9cf4f40ae6e4c9060e7 3 | size 2058 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/PassingByValue.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8adc1115cd3e1f71df91bd88c2c9432c85bab0809d3a8d5ebe93bd857c168e12 3 | size 1153 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/Pitfalls.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d60379298eacf702cf8d9f16054e2affd0fc5e1c0daa83b4b99efcce11c2e549 3 | size 1755 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/QuickReference.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e507864109689706992124f29580a42b91df40eb77762e619db50668adc47235 3 | size 29071 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/QuickStartGuide.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f94fd1655b1ac4793c4c66751040b8d707e8333bb5dd49dc75a44f31a45ab222 3 | size 6577 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/SparseLinearSystems.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cedd269bab3a8f5ea3b1ebd0592799d4313ae83acf517c923453e34bbb98efb8 3 | size 19614 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/SparseQuickReference.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a793c9e2500553d5f1e01d67ccef561d30594e78a38c255aa3c8247ee1925930 3 | size 8312 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/StlContainers.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:132e7503454b0803c630d685b12d92c95ebddd5f11a557f92e6947bac1490926 3 | size 3424 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/StorageOrders.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:652ea1df6e6cf582d2d7e7956710d7198359afdc19b9aec4c115d4925fb6986f 3 | size 4119 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/TemplateKeyword.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:417baa2d9f5658d18ecdce081577b3a61a68f7b973ca278c44239a11e8ce3429 3 | size 6156 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/TopicAliasing.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0463ca9e8f615fcd8c48ca8c72d5680ac8725ffcb0ca284e9340f5b776c6424f 3 | size 10269 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/TopicAssertions.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:864aec645dadf7e438b0dc38332dfe4a974b97a80845da0b8c9a56638a735fd4 3 | size 5285 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/TopicLazyEvaluation.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e274c54dc67f2ea48b6bdaf8964bc68140f9b4b33992db3e6a0220bb674042f9 3 | size 5453 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/TopicMultithreading.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a51d276b771fdd9798eafb5ec8a28414d0cf570fac6a415357d93ae75ae8de2d 3 | size 2532 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/TopicResizing.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8295c1643b7b87fcf0bd73db7e40c43fbc36c97ac13359f36c92e22362a0773 3 | size 137 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/TopicScalarTypes.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1538e54d01914f29b8c151b1eb449493d05d0e75661d27c5f111abe3c127d4e6 3 | size 145 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/TopicVectorization.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee114371d1276fe31f5b272d456e3e469255eefc551b09e5704eb91db899755b 3 | size 97 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/TutorialArrayClass.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:296723579ab105ede7b56a528491833f320f481fb88cd025ba33472d87ace33a 3 | size 8523 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/TutorialGeometry.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55c75e362196a0df44f29dd5d71307abd0cd1ae8b265656a826450749baffb03 3 | size 9726 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/TutorialMapClass.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6db376604c24bb7576d39a8b5cddb9197c0572f2a9f474587723cabf29545602 3 | size 3986 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/TutorialMatrixClass.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fc6546b56fcf3b60b2d66e7a365036d6c878f26bca508a1fdb4308a6ba02732 3 | size 12421 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/TutorialSparse.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c6bdf30a13a79e2d80d26304e1531a584c40a805c0d60fa02d423e10317bbf8 3 | size 20478 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/UnalignedArrayAssert.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c1c46c416e7cc033dffdc75ba1c717a0ba3f3258c0cc824b74bcc449de0d087 3 | size 6888 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/UsingIntelMKL.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:137ea7431fc17d849555924276528fc4cf6919759e89c88c84167035e71146b2 3 | size 5624 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/UsingNVCC.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6c5b1971f815e33b2ecf797cceab64215ce6fb90bf378aa91228ea7111740d1 3 | size 1437 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/WrongStackAlignment.dox: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2916820096d066eedfb372840203d6c1b31ca9f7385ff96d3c1a9c5546533c58 3 | size 2924 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/eigen_navtree_hacks.js: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e28b3fda5ba370a18761ccdd4078ad011d053b6db71452f9877affc583748a16 3 | size 7839 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/eigendoxy.css: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b6374a6656a893529d10f6b2e88854967c8ae31abd5372a0f7912c43fd4c0c4 3 | size 4288 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/eigendoxy_footer.html.in: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57767aa6d1da53a703ee0b27712139e6bd3a22f95256ada1af2b33b66876e8b9 3 | size 1362 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/eigendoxy_header.html.in: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb3d71ad847a20774a82a1aad75af5dc540f9f5f4e04e6dbe7c1c1d8290537bb 3 | size 2227 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/eigendoxy_layout.xml.in: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:19acfd90d5aab4dda9218b230a972e051465fd12141f3d44663bfccac47788f3 3 | size 5337 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/eigendoxy_tabs.css: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:95fc03d7e7b1e65a20ada5f7dd30d8dc820a670517922608fdf43ee1fd19b268 3 | size 1095 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/examples/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:837c03b0351c626bb81d9a8ea1cb93d7e35bb5b95b7670f2d17de760bb8b41bf 3 | size 685 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/examples/Cwise_erf.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:655f7af4e7f56a1eb016a61f7354139ec7301ab2ff33015e49d327dc6a7a9416 3 | size 189 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/examples/Cwise_erfc.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c73137074cd1fc71a244c96215af1455be9bcb44ed600902511240a43f7713a 3 | size 190 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/examples/Cwise_lgamma.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a2331fd3a86a7ebac9b62980433f7979a15bc03ac65e172f29b6a7fc3817b7e1 3 | size 191 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/examples/_krazy: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae0a0b4bdf441236d9e98317806a5cbed711ff7489c398e7b1b01323e5fe3dd8 3 | size 34 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/examples/class_Block.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecd19b69c61e0a8a508ddc7a9278245e4d0696f0fd21776208e7980369a5a1f7 3 | size 737 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/ftv2node.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c747f2fd9b8f530474462a6bd9221bc4800b145b441e3720ad0ba1817740db8f 3 | size 86 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/ftv2pnode.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb1bd95d3ab84076623479182c8493531bb685720e25eb15d3f40bef58482e19 3 | size 229 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:77ce1312613c3da1f959263571db167fa0343c42e545b92f46a41a8e5d10290a 3 | size 1114 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_abs.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a705fcef883e11d67389037c592df02d532b49264384a88e773db52e54f8c0f 3 | size 45 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_abs2.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8017671ca9d0ea33a99e1dcbf7d65722f97d245ddf044d4e156ffeb40d8f28f7 3 | size 46 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_acos.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0242cdb1be896e9337e8391c5f2fd962b5c7efa6b35ff2d002e5ba8adf09ea66 3 | size 55 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_arg.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:18c13691bfd9d63bef587e97f3f289f39233fa5ee2a8602387cdb36752fcb94f 3 | size 85 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_asin.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:26131b52225b195e838af61cf838548374f59ecc6e0f94f30bac66fa0ab8c4d5 3 | size 55 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_atan.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12b74d7fcbb1a1b43d6253b5a9d45e439d089b9b2ae9b6950427102dc37ceb6e 3 | size 65 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_ceil.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:182bd50d656bf25c8ef68807ae17474037e95d21e956ed2413a7f3abf00a9526 3 | size 92 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_cos.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72fc0688f0b6521339afde2959e5ce754b2e3c3ba3919cc395ecb7f83ce02570 3 | size 58 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_cosh.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:055aedadc775e5336eac7e4ac94838646b7e82a08401987f8735c1c1908afab0 3 | size 64 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_cube.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:edde0009243db0d3c3972a41065fee9aa80b430b449ccb49eff4a668e862fe1e 3 | size 44 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_exp.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47d964e41591a14113809fea93a117a70c264383382c284331b8bedee237826a 3 | size 43 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_floor.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f3805828b056407e71b6d3445186ca027aa2321d8717072589b9de335805784 3 | size 93 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_greater.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8bd5e4e20d8ba7f11a0264850878e5185d00a11e49a91e401d66cf72458035e6 3 | size 51 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_inverse.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d9af0655a75ade60679b9fb13756fba29f4efe9bbefb3c7d22c3c496a8c413f4 3 | size 47 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_isInf.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12a3c2f4bddfa69ff1db1df8503879fa709ef9c81493ccb116ec116ca1c28d4c 3 | size 101 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_isNaN.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f846543d8dd74a5c2d809a7a93989317d3cc9e32b9642da6341c60effe6a8115 3 | size 101 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_less.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bbdeb36853c518a3bbe82b4145825e7787b6788f7ece7c69ceff99427a4f227e 3 | size 51 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_log.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1158b6a9d84f9729b3cd498e0d8ef9f803f4c044ef8a04af9cefcc4f0fffb0a7 3 | size 43 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_log10.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:840740c58f56ce618c62da47b006829dbe5bf186c1f4a13bb7324bc9c0da1d31 3 | size 47 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_max.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab88ff9f160574c85e8b3199fcafeb713e33315378029c3731ae4d25854adc06 3 | size 54 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_min.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a459c411ccc42e7a02f3d500a433970d2dab66fc031fc9b0329505085d85fb4 3 | size 54 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_minus.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7acd6bc9cf9021ac4c837de8c6371c23988123a91da3cdfc73831e0ebaf1a8a3 3 | size 39 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_plus.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:977767010186c59265943792c37e556c2ec4c1cea1f1f9805ab6bd3bd57d6541 3 | size 39 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_pow.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c9046f6c5675bfd36d0aa99a509b640289d0be108d009a14d112801f3204373 3 | size 53 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_round.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fcc1d93c71948aa3b497923cc5338a2eb1f1d8cf414876f227c02ec0760b957c 3 | size 93 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_sign.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:383d1a856b29c0b1d10ca55474024af7459f02934e17c878217e910a227915c1 3 | size 45 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_sin.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7c998afdab2e20ffc5a8a89e8fae5028caf0b8c5e4947d936b810fa7d5d6799f 3 | size 58 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_sinh.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:740a0389d599af80b71aeecc4037855d3e63b9ee78bfeb4cb3e6cef35c0ba921 3 | size 64 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_sqrt.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ced13142549dc40881075f63891a55c1b2799b1f85abf6c2a81565d5313650b 3 | size 44 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_square.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8319534d7cdfb74d46f11774358e3f2e880977070b151d9d2248dfb5f39e8890 3 | size 46 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_tan.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:789837a8546c89aa071abc0a170c649626887f51b6e110f7dcd924687eab8265 3 | size 58 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Cwise_tanh.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc359a8cf64359ee4ecb3f285f7474d40a2738f7eaee3bb2ee4ee1afb012cb09 3 | size 64 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/IOFormat.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b2f88bcd8dfadbaacfbca4768b163c1199769646f4585267a7b2d9bb0a015490 3 | size 603 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/LLT_example.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84290c9a7640997307528fc7a81e057505bd64a6601e8b627a3bd2f6b6e35c5a 3 | size 519 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/LLT_solve.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c673ca5eaa43effed0014e3b7059c7008edc367fee4fa6a4d3d12cde63e53c0f 3 | size 456 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/Map_simple.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72d9e80bbcde55817bf55731d619ebdb8dd0808050599c2460623d0ff85a0807 3 | size 93 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/snippets/_krazy: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae0a0b4bdf441236d9e98317806a5cbed711ff7489c398e7b1b01323e5fe3dd8 3 | size 34 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/doc/tutorial.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fadb6dabc6c1cce1149145227d1e7b5802b0b51a17ffbf77a390b4aadd3ca634 3 | size 2544 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/eigen3.pc.in: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:313bfeee07017aff84d7b6c7080958b3240b5c7420b4ada99d025ff0249d4ea8 3 | size 254 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1057b3eab8cd588a313ddcb3e49e40660f506ec3f8cc44c840705b017e2e428a 3 | size 2791 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/bdcsvd_int.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc4494ead26081f8236562266d82ecb470218a2a63cbc2f6c73c645cd12a3938 3 | size 245 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/colpivqr_int.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fdf43cb9920020b8ed8746d3f831a915304881797243eeeb2763586c12c7093c 3 | size 257 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/eigensolver_cplx.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24787cf5d85f2bb0b1a38b267c41caa3083755308162ee595953c543a0732604 3 | size 276 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/eigensolver_int.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff6db56f8597de671e45c02c5fb1e9df3fc7dc58d7a605ab03ab7f57e0933ca1 3 | size 259 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/fullpivlu_int.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7cbc36fcfa5f6ef5e06b5fad9b0e109895fc3ab6f35aa3ee8809e148082729e9 3 | size 247 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/fullpivqr_int.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7c6229e11e2ea021cf66d05b528c35bf8936f5109e7bfb4413548b392e111d9 3 | size 258 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/jacobisvd_int.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:316759e28bb718f7aeeabc6f37bb6c4fb3fbd3ae5516a5ec529b3841b27c8c5b 3 | size 248 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/ldlt_int.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b622e3729126fe4d40408055443055d19a340c0f3ca56c099ad60e0da051bb29 3 | size 250 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/llt_int.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a0efefedbdfef4c91d91830898258d1a7ae4b4b4c025d90bbcc1dcaf23cd017 3 | size 248 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/partialpivlu_int.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ac4301fa0c98956357e8e9ce4666f155b861413879bccf10e1e614870017690 3 | size 250 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/qr_int.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74698da99e73ac8088bc4c2f187a9b6b748e33a2cf7e4e09ae29f4feaf1865a0 3 | size 251 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/ref_1.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:14b089ebc2f1474141ae5cd23a88d74c5d22031c01155dfb1d23ca8d5341ada6 3 | size 263 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/ref_2.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72b19feae516cf48415396d8bd1fc3ef1bb3b90384fcb7645948a9c9ba678d16 3 | size 213 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/ref_3.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:135ad3199894d9376bd7940571936db456b3f929ba52ed4f9cf0e552326f8884 3 | size 231 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/ref_4.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffdc0f3749903698079a6ea13fb4b9f9463ddd897d979e6a11c888783d862643 3 | size 227 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/ref_5.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66a99fe0531540e26685ccfdf89f08bcad499cf16c7e0a62e1c2f01a1631e294 3 | size 238 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/sparse_ref_1.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8575eb86a9a9f629e3585c5a9c78e49f03742ccd87fdb5074cd86c396e88ed67 3 | size 302 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/sparse_ref_2.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:079e8f8ed5ebe9597448ecc1873045ae586629b9b0ed6728e48cd49b88da9247 3 | size 238 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/sparse_ref_3.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07f71b681e94e76ff45e86108f9abdf9611d3ad3d07f3877237bab7ed4774e99 3 | size 271 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/sparse_ref_4.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3104ac97498501e0009e0390d8bbbcfcae2c8e082ff70d37349a70dbbf7ace99 3 | size 235 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/sparse_ref_5.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32d8a0cad69935b6f372e34a60ae3dce14c33bb455e4eddca9112a8e6b484660 3 | size 285 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/swap_1.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ffb439163e4fa2666e808b87dbe0fb42ee7e7f90cda366683cb128139772921 3 | size 217 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/swap_2.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0bd277ab744ae204a2e760cdeba075786171c8ae8fbd36b98f65eec2c33d8cc6 3 | size 210 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/ternary_1.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b38f90dbf682a78423c8fd0ed4b690ed942a7dd71f5b5f4d7a6d3d4434a22320 3 | size 213 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/failtest/ternary_2.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82484f77376082e8ae7abc3c67803bba55c9f84c64f42f540230dbe9c9fb779d 3 | size 225 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73e35ab3b44d843dc4512543b92826134e26546825faf60b4afa52f074c2cd30 3 | size 10884 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/cholesky.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb091cfc3aa30afe019add0cbdc1303926e8694e4d440d5e11cbc8ea852f4a18 3 | size 2205 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/clacgv.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bcffb9be10fcc4de55e4c72b9174fe8f9929637cbe61532386729cfa5e29cd82 3 | size 2831 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/cladiv.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:357282849fd1c40d282c893fe07c65d3b6d12e300486d22c6ca3f7d04e0f88ea 3 | size 2340 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/clarf.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:db1730a816a5fdf8b3e92261b32e8e25453159cec1623032d16d613188e79983 3 | size 6295 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/clarfb.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:054a98f1797f27366d60dd533a239a4edc5780ec4c92c1e92d3656a4b08e99f8 3 | size 23424 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/clarfg.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:695e61da0606a0015213dc9af55c5dce35e8f70d73069a2c3f505809eb68dfdc 3 | size 5344 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/clarft.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8da3e63935a5b76c17e23c104462caa23e247bd94deca52e1f58f9e2f609800 3 | size 10450 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/complex_double.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4ccdf1ac4afb67dfaf9896f01c1f2fb8779f6159a7f32d74a6ed6dfa3c6d8aa 3 | size 578 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/complex_single.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56be818ac2de2ce92b496ecca3f569a6dbcc2be9ae9f55da8dea12af1c402ce5 3 | size 577 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/dladiv.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c9c60ccd851af18be83a44b1acd8bfb75a0cf8e90b8bf1b8d7b257b1cc11d22 3 | size 2969 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/dlamch.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82f47ad90e3a1514703df07346563a6159af8fe3e79d9c14dfd239f61815a55a 3 | size 5259 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/dlapy2.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08bb52f68610d5c6bb24f04d7169d14adecdf839a936ec711e3f3bdf0a5314a3 3 | size 2514 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/dlapy3.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d18f7a22e06f99c884a5aeca130883fd1b9f8b82e76c1bc2f1eb66566eed5c8 3 | size 2737 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/dlarf.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a12ca53a17a51774b79a7fdd96ff9812b508bc2785a51557a04d28d855ac3523 3 | size 6167 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/dlarfb.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:063610b91281178a75ed621b507ac9b03cd8ca2fa2c2bbd5a5577bf120c4c44b 3 | size 22749 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/dlarfg.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4dde2c3c8b3c0d5e1e5ae754d408250b8619346daf7fcb0a8810ed31d0b8ead3 3 | size 4946 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/dlarft.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ef1f43e081ae7faed0242781abff43baa2c55bf25dd5f67cdf6e08ef6ec1dee 3 | size 10222 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/double.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eebe00f17602d3bf58e2187ba8d1dcf931dabd6682dee3d33aa08775f93f9f04 3 | size 562 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/dsecnd_NONE.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0caaf02b54f0ba51d613a6324e49464176071e8cfa91501d501c845cb6ff4374 3 | size 1282 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/eigenvalues.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8fe776e5d622918388898d8eb0ea6892c6c49474d820270433fdf5c206f8571 3 | size 1826 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/ilaclc.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:687f4d7319fc74b372243c1f98b9ac4ef3cd44a391b352849c4fc02a3c81791b 3 | size 2957 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/ilaclr.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f02058f9f1aa5a21fded54ed3001b38823894640d32e9fc1e19cdd46e8beb230 3 | size 2997 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/iladlc.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f06e5155758633462bc3568b5f238714bb200b9c1487c618e54ceb6723a6801 3 | size 2952 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/iladlr.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:68d5fd4bd676530e1cd9470e36ed2258d6294d57d41ad6f95ca32eb2c1d45aaa 3 | size 3000 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/ilaslc.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b326dbbc9fe0c6fdace30bfc6d029e9dd4b0292d2a3f0d04e74f728839007f8 3 | size 2941 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/ilaslr.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0e42a40da0010d20afb1bcc2bfc4c6d803debefbde84f3ab4d2227e178fbb6a 3 | size 2988 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/ilazlc.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79e9d25ed00a66880c4bd3413653d370df2db0bae3163e8ef7a82bfa70aa86f7 3 | size 2962 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/ilazlr.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:726080ff9284c662644035c0bbdf7f716be2baa096476238dfbcc926bea30be1 3 | size 3010 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/lapack_common.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e750c28063fcd45ff09d9c2fcf89a695325cf5329c8338f0e85951c492d21b35 3 | size 877 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/lu.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:171e551e004ebc599e547f08d6d41119f759d2092c84eb4780338f06ee46d9d3 3 | size 2655 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/second_NONE.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d95775cc030cbbe6a6a65c88b71a3bea5daef3c79b333a5ceca990c9b36999cc 3 | size 1258 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/single.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae1f1f2500fcb0ee4e8ad7a2a658d67d9d0dca6941f94240667e431e3c4e8bee 3 | size 561 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/sladiv.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:813e5f2b49f3cf6d7a9fdf93b6fa3dc8b40036553af832a3023eeedb234e34c6 3 | size 2897 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/slamch.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4db52f1b9792ef09bec73cb35fc8e252ad9c6c3007e1eee74c11fe39acae0952 3 | size 5261 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/slapy2.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b8648952160263971b4cd50498a2ac00a05be69f71e3fc1220e04962256559a 3 | size 2490 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/slapy3.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0c9dcaa41040a10035ef146560ec1146d601d037acc8b75437b940ffbc0bca8 3 | size 2701 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/slarf.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c071d8eaa56c50f0d3a4ffe4a7a9ce00dcbd9d8e47896db41b01fc0de953e18a 3 | size 6117 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/slarfb.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66cb61cb5748d4286acdf9104c159db65daf2e31072dae9eed5f8d78733d7d72 3 | size 22727 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/slarfg.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81bb01ca9c0ef2efce250b2d9887639f349acd2041a1423290cf5534f380d99e 3 | size 4908 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/slarft.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:082580d78b125e690d5b73509a9c0b3f9eb52f01fd10f537ca0a49ec9bcb641a 3 | size 10183 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/svd.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e9bcdf48bc25597d2cc00d1e82f9713a0920b9f9646e9a95c076a19f4eef177 3 | size 4891 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/zlacgv.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15dc938c094efe23cc8be47c09e0497c124ed5b1ed01d9fea6cff56e6a39b42b 3 | size 2839 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/zladiv.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5939e7b73d2a2f65886037b9fd5c6d946f7cb5561a66e20224bd7c5f8bf05a3d 3 | size 2364 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/zlarf.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:611a62feb3a8def6366ec0ee5a2c33ae373b6d2f4df0014dc0818f8c261b81ac 3 | size 6278 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/zlarfb.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ba12d9cb443d02d2e1f930b7454d6477ac54c5ab418b7c3e5b4a31fc158b490 3 | size 23498 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/zlarfg.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8626d22aeb8a991661d08e891c9d6c1e7de8750f9934a9c721d35e2930017231 3 | size 5359 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/lapack/zlarft.f: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0aa2a2ae3014f6fecc6731deaadf40cfa8f3644d5aa3068a7809f1e1a6876bf0 3 | size 10453 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/scripts/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f55469d97b8a00df55c67fd02a4b928f50d064dff8d8d115e7b9b304c6be1435 3 | size 328 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/scripts/buildtests.in: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d9c2c1d82b73320eacb2797956bc8c42937bd0edd90d2d3b3cabf435cce7c2e 3 | size 574 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/scripts/check.in: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4b2e13416b69c652992d41fc444036af8cdb11c1ca8beca8d8eb4caae283f8c 3 | size 670 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/scripts/debug.in: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c152975833a34eb819aada8db155c13bed4dd98c2e76b420727e32cf46b8eafb 3 | size 44 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/scripts/eigen_gen_docs: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2eac88ce8354adbaa6cffc9ec7677d5139a684b2df8c13c6978de0e67ad3338 3 | size 738 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/scripts/release.in: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:381610eec74d4eee6ea180583181c8e92e717c9a5f79e730ce840adf565d3d47 3 | size 46 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/scripts/relicense.py: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:644d4ae0d2f4f41ee9b018793fd6c0f5abc8a138149ac4c82feccc8548e18edb 3 | size 2368 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21708593f76bbd7b2cc4e1a63221c23394d5001edd9a9ef20610e14e32ebd8cc 3 | size 11726 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/adjoint.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:892246e5a19885d1a7c5b3e002b3ebaf991aad3f6a6455fb3bdebe5c724a5dc7 3 | size 8295 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/array.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aec5cb04ebe3d743a59e44df0503f7940084238d4ef212c0fd00cdac99ce7b7c 3 | size 19400 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/array_for_matrix.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9fbc3badfeb40d97dc57900150e5fe84c8a12fe61a7229223502f0e89af17ef1 3 | size 11435 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/array_of_string.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:244d1b13241461177cfa081b4c925a21cbded2ff7f687225b683fdda52260415 3 | size 953 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/array_replicate.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d8e3666cbecd085d5a1b5e7d96ff4345f2c377977a988b6f39e993e498aa918 3 | size 2378 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/array_reverse.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:289ba33d61bc707cebed04ba100239097a52ebdb85bebfae4fc3a922b65bd1f0 3 | size 4921 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/bandmatrix.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac8c38b0d061f345ff11006e66cbc3a7a5a4b358f035c38661f9274857d2e620 3 | size 2424 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/basicstuff.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c9cb26f47e8dfc60d8f5deb3c1558cb030ab1cccd15bb1a17ec94fdb43bfd97 3 | size 10692 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/bdcsvd.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ec93abfcef03082d483c8d283b32f99136aa6735e33382330f729ae039141f67 3 | size 4185 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/bicgstab.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:786985ba1304a8f8d1ac15004b2f90c3562c18c5d1b3a59fdb914a21b806e375 3 | size 1460 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/block.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b778ea424b5f931cb7ed940ea627e3b5c41db7f91b007cb9e95c9fe7155f535b 3 | size 10951 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/boostmultiprec.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2dd59c75d5d23f3ee8d781d28adbc97b24ccc820740a47414e909adce1af923 3 | size 5534 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/bug1213.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca32fb8cb92e96bbdcbbc9c246b56f8a42dcb4a8ac57677e72d812d9447fd680 3 | size 174 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/bug1213.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:43850541c4e384cf7685cd9d3cb05b1188c218065bc0a059dd69da40e6776579 3 | size 147 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/bug1213_main.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5cbd95bfa2156dc5237cddb7000eada7e0962805256eb06a282371d95b64a321 3 | size 279 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/cholesky.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df5adee8bb1041f9443e6afc0eee014b4b2a4cc11850e6960b82170d453ba3fc 3 | size 17050 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/cholmod_support.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4661193fbdc1f0870abc30a9712cfc7ff53e801ee104ffe18ff4cce4491de704 3 | size 2686 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/commainitializer.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b8def42f51a61f37c0ea1a287340673053379e13cf059c14c691cfe8a5941c3 3 | size 2923 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/conjugate_gradient.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63c4e8eed63bc7e20ba42887530c4ee7b9c1a130ffb43fe58d6bae8a5ce4030c 3 | size 1533 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/conservative_resize.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03142ed0927b5432b77bc4a4bd53da641236865f82fab74f85fe99e3dedb5460 3 | size 4324 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/corners.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:18dc207140f6f48b23d9e2e81f3384ecd86ff11edbfa7f8eed914407b1279ed7 3 | size 6484 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/ctorleak.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:36e8fa99b0588b9fe644f8c4ccb18f21b95952f86a75b93c57eacb6f97fe3257 3 | size 1749 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/cuda_basic.cu: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b88652c22f238fef94db7b466d0ed607443a4026e0ab842d6cfd35e74c43a6d6 3 | size 5429 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/cuda_common.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3e5f0f6f77c4be43c6a7803cf1314bc9a1f251308bba8d6cfaeac3d1882dbd05 3 | size 3368 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/denseLM.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd5f524fa28b134ac127f81076bd55037fac9ecec7959b3ae9bf3af13c1a2091 3 | size 5054 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/dense_storage.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:388f563f0d115eb9b5cac9f35c5207ed38ed2f204ad82715ad71c0f55ce136e2 3 | size 2579 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/determinant.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c08a65b8af6a7d7d1da4bc0105516d531368ad00a3534a3100459da21068f92 3 | size 2311 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/diagonal.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d1a6c1b142b41ef7e148dc0f5807d6bc421d9557d6b36cfb86dd76689e4c0683 3 | size 3386 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/diagonalmatrices.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae8976df6512fd69aa4f956aada1d925c1189fc04d6fd79ec92821120820c341 3 | size 5840 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/dontalign.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af7d7803b0e20a3a14c81e1f0c93bd016e541d1fd6d2c305b997d9eef80b25fc 3 | size 2265 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/dynalloc.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69aa42dd44c178b3ff8eb41215ef010336f2be4646bf0060e90efd814801269e 3 | size 4630 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/eigen2support.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0abce68fbb8931f75b4da95f941afd6a6251af1c7285f325a2d2bc16bfdd9789 3 | size 2232 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/eigensolver_complex.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a45e27d082c65e05d9d3e20c49855569e24f71675dc0a96b123a1e2a31251856 3 | size 5942 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/eigensolver_generic.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee1ead54c486a71d4c087899ca2c94a3576c25cac2e6a7ca69922a933e6bf445 3 | size 5911 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/evaluators.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a000dc4af16d54ac1de01b7eddd6b5b037fef935c36a797f146f764036e39ea6 3 | size 19757 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/exceptions.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:91580e7a91d924600bba3dbc4117fec0f2268762a529ad9cf1a7fe2400593a4e 3 | size 3629 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/fastmath.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34c715f098621e36f44571fa2c78ea922742c2cd4ab98355a261ca8ab48f1862 3 | size 4248 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/first_aligned.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf106f52f01f84fdefccb16244e3c2c4ecad3876a22ed7b849de865089bc1e13 3 | size 1866 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/geo_alignedbox.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44faeb5ac7ce3985995ef9553e34f14bea61065bd7a95c1637f9f30783bfcef8 3 | size 5641 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/geo_eulerangles.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f32a6389fdaf61a43020d70f9b017e1beaa0ab4077af9edb636add6ea0b3f45e 3 | size 3554 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/geo_homogeneous.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5771cfaee0c6356109b9ac12d11885e86d5db99fa7999b77d04ae03dabb656c1 3 | size 5462 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/geo_hyperplane.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09e154436de4d8bb1f0ff3187c76e34195f632bee33b8108ace5d29670c70840 3 | size 7424 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/geo_orthomethods.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c87fcaab3767a1955b8d86f680458f50eef673513ce19ef513609634f8e0f80a 3 | size 4830 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/geo_quaternion.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:023f49848ff9130839ccbeb1e37fad05b2db4b43b065c8c5f33f79b84f8cb563 3 | size 10145 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/half_float.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:674e1e4f84d7174f79b55b769fe269479a04d7bfa3c1ab23042c11f5600ef8b6 3 | size 9130 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/hessenberg.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31cb8aea702a1b277276038adb6a5e861bdf4ad0e5942a5b736ae5d5aa0cab41 3 | size 2396 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/householder.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bfa65effa6f0c38ed0eab74a154b7d516c25a0efc05c6ebc9dea1375d1441312 3 | size 5984 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/incomplete_cholesky.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8014045e8557a73eb18f351c336c7294ff52e2c0ad0095511be4547cfa19fd60 3 | size 2572 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/integer_types.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d311e8895911df70c73faca2b2f96d110f85f3a97015e2c841b2197e838679f 3 | size 5756 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/inverse.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ab71c12a6fb4411a650e38efb7c68a8b855bfbd41761c4428ef6d6bd22dab59 3 | size 3852 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/is_same_dense.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d67fe0966a37e9b8154523bab27553590e7735dbab2cc8ca587f50ecba4a3ca7 3 | size 1095 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/jacobi.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b363e350561377d2b5c9c5cf569f5129a6c184456bcf466f9aa456086d38a26 3 | size 2769 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/jacobisvd.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8d046b69f057b83841113b57c69f9cc825261804cce362766408896133962c1a 3 | size 4670 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/linearstructure.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7245b8a36bcdb6b36afeb0ef7d3ff8cee9e01f9a238f73745237563ff864ab78 3 | size 6133 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/lscg.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0744e2022555812faf12f2181a9a757455c2bd3eec60ad60c9e3db5a10fd9199 3 | size 1029 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/lu.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:926f7099d83b4b8edbfad93ed07566b6adcc0de204bb44e03ba3b59ca43f40d1 3 | size 9717 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/main.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c3e7a8d66c5c83b167c4632517addff719988380bc0ae9c43b936d3ff6786316 3 | size 29019 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/mapped_matrix.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7bfbd5d4ec0636aa229dd863dd31ac81d03255edfe8df25e9ac5134ad1e8e3a7 3 | size 8027 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/mapstride.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b02ae86945af4a22a0ee4d826e6a9ed52ff19bae18251b0bca4e958746f9a0ee 3 | size 7256 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/meta.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:efda6f5a52280496b67ab392ffb889612208f7362d9c1ac6e1ddee7d716549bf 3 | size 4715 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/metis_support.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a25b31ae99abecf2ae0b6cb0aaa82a7a24dcaf2dc39c4f254f3ca265f695a864 3 | size 743 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/miscmatrices.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa0775b7fb88e5f5ba7202056272f538ef65ff96e8cd91a07209f9e18014323c 3 | size 1825 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/mixingtypes.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:300c4d86df7f1f3f530d6e19c90b80c120f3e76b26571abf155c3a50f50134c7 3 | size 16804 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/mpl2only.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4b1b7f1e72fed19d59d90cf5f11a048379def4bfdbec64988328dde3f723782 3 | size 557 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/nesting_ops.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2247a38ad60b7064f9093eb4e6254b71d1011df837ba2257c746fb5caef503b0 3 | size 4369 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/nomalloc.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b974e1dcb658d664b26b6b2588a45d260b543622a231cdef5ae9290419bd75e6 3 | size 8757 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/nullary.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6d28de8b590d5234c985c0f46cfd8fe9f6fc9144fb1d0711054c0f5efc6cbda 3 | size 7718 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/packetmath.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d9869c1cab29798408b3d5d56889ebcb62c790c9e47093f07165149533ffa98 3 | size 22780 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/pardiso_support.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f9d3887d426d1c20c70c17ac6db05101bd29adcf3a907e7f3209fe7f0981540 3 | size 947 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/pastix_support.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df90c70c9a4054f398452bc5b0f5701ba5ede5b8d1d08dbf8875a397a67c1d46 3 | size 1894 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/product.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61e447bd1a74c8b82f7065a71ed08001dfe52c0bdc6ad741b6e3921d3c45e2b6 3 | size 10790 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/product_extra.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:098abe45b46f450e1ef60ccb99705099202c0c89c1ee96323f421316d610ac74 3 | size 13288 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/product_large.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5dda47885c769940e626bae960042ea45669792819962893f38e0da35dbfdd77 3 | size 4252 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/product_mmtr.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:52cce876e43a1e0ae2f0dce621f5af62eb09bb2c23c0b67f1b3c101b43ebb5f9 3 | size 3218 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/product_small.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f0af6fac21f262e24ac2b15d8144c229cb68d7e1320e0978c14f676f38851513 3 | size 11857 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/product_symm.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b91bc7132822e2f4d15c0b58ad376278e7584c67b64c39f37dc63e25c1320c69 3 | size 4537 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/product_syrk.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73e0c7b234d408cb12f5ae69f9869633d5125cc6b6d958f5361e086784d75809 3 | size 7399 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/product_trmm.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a4a19e47164953d988aa3908bc462b9c4dc0c064646ce5a75fcd7204df5dd5f 3 | size 5673 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/product_trmv.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f927427d8ea96a711f167f21e8ed3910bee068501eaeadeec2c0ab4c8c5e8b08 3 | size 4286 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/qr.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b36779df4ddb3249dde99169a263a2b31ee3b61bc41ec81df10dbc54db8eb76 3 | size 4631 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/qtvector.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8daae61545e63d04ca1d49b493328d9e279996083f65c947d497c4bd6c880e54 3 | size 4658 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/rand.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd672c87caea2103a37edbe3cc897455b02e9cb00793e4222b13170405ac82ca 3 | size 4365 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/real_qz.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b923c178e216f7ec99aefefa75a4e8f14f62f2e200158a7f448b3a2a3b1a7738 3 | size 3138 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/redux.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37aaf861985ea3dd4c3a663cb11b4db366537f9bd8f73f91d33a582094a6f8fc 3 | size 7773 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/ref.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d1c95c40db8a4415eda031427d0ce2c5166651e829537a133fc36843767aa1cc 3 | size 10859 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/resize.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3c86d342c2bf533579cd1a5ca371149ab730b67657afe7d704725bb89a271c8 3 | size 1097 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/rvalue_types.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22361723c7ee5e14167c31d93ff316900f6b8e2ac09c757c139f322e6228c3e9 3 | size 2241 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/schur_complex.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4dad66ce5b2ea2622d788e1e9bb5732057cff7239c9649f0ed03d1380d7bb82d 3 | size 3561 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/schur_real.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11d88b15c873416635e8ed3dc8dcf0116124465112b64fcea9a2f3db17785c91 3 | size 4001 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/selfadjoint.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7d6721a16c936130bdaf5826939ad824a278abf18cab255c11d809eee1b6b28 3 | size 1921 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/sizeof.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ed3d367a0d10b0a74cce74e5db04d2e86bae16832290fedda6b813b875cb51f 3 | size 2051 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/sizeoverflow.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c210953058021ed763d738868dbb0890bbde5398f75192dcd62016df2c01b75e 3 | size 2631 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/smallvectors.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9989eba14637a706c9588c46a8e5da68e94e7a9bafdc28f631ac56fd98d8453c 3 | size 2125 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/sparse.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0cb0991f3b592093367008335c373e490bcbce409dc2a837830253eec79dbcb7 3 | size 6396 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/sparseLM.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c47867378f55c32879f160e966a3ca564c6943b217c983afc64fe0ba75a614a 3 | size 4732 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/sparse_basic.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7852ae83e0862d23a6d4a6412bc23f396f90df1328f6ba168dffdfc7824a3719 3 | size 21479 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/sparse_block.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae6fc9d0a0fa08889d2ab0bceaa814c12d0f605bab905971b14508e803b14bd4 3 | size 10137 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/sparse_ref.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7dd37e4310e7625b497fdf0cb1b1bf526e3ec0f8ed81bf34787850f1ec12c74 3 | size 6117 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/sparse_solver.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d42814d6c047f2659ea1cb0f6a60d8c6a97e280ac28379690eeee243afee15f 3 | size 18622 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/sparse_solvers.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a917184675a6350fdb97738ec02e4fc04e545bcf6a9e05f734dd0f7b6ab2ed00 3 | size 4691 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/sparse_vector.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ac892fc69ba240b500402dafff6caa34749bce1fd78fb047a21faa0223b17cf 3 | size 5079 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/sparselu.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c61f752251cb14f3062b3ec549e88f429a84b50c7d30d808e0a9f1b536fa5d4c 3 | size 1783 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/sparseqr.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1df6c55d9fbc80cdae67fa7355baed48fe6e8196b1cd76fa1d5763e15721b107 3 | size 3094 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/spqr_support.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13db147a2b9daca1d64e409c6e19aa132d465f184fa3bb7380d842408e57dfa4 3 | size 1833 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/stable_norm.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1e5e45a643c9a59c350b68fd296d144535653e57d89a60f7708791413886cce 3 | size 8013 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/stddeque.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8264675444252dfd0ccf0ca18567a70fcf759c8eebe97e362ee90762d384159b 3 | size 4192 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/stdlist.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f24e100d3ee7c7a62c97ed6ddb95042d09756d8c203aec2676a12813818e6d2 3 | size 4162 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/stdvector.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c3406075cbf455e32f87d16bf6abb81a0269de0212ab532ce8ddb919e3e2d27d 3 | size 4681 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/superlu_support.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b17c8c29d5cf3950b4db8948b0f7bd5f48ea84d2e2ff6b1a4c04e8fd83c0960f 3 | size 948 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/svd_common.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6fa92dc912225b845b4ab95dc1c531d2b916d93a704b31bf62d46a6024f44919 3 | size 18193 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/svd_fill.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b665e3410eecd426e2c9fa693e12c6b0ed5c3d708c86a4324b15cb10149cfed7 3 | size 4094 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/swap.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8aad070468c23c69a86f9a507f3b840af5a28b814bfe29e292e6cb917c341f3b 3 | size 2974 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/triangular.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55b29f95de6cbf7d4864ca5abd0f22fcec06e8399338d4c43267ee93a95c69f7 3 | size 9520 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/umeyama.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:366e36144e40c124ad9ab23d4fcbf7b5d0e0aa54f8d91c45bc103438fae7bee6 3 | size 5853 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/umfpack_support.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d032afb5e68b14be0131db5abc5d98184389de5dec6f3c464a5b902d4cf133d 3 | size 991 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/unalignedcount.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f96cc91879a978bb5fd67ffaec6ac46fdc75a2a0d2581331547b68cdb72ac52 3 | size 2134 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/vectorwiseop.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e401516d4df95736235afee55841c862f40e3c12e9ab374edb1f07f22fb22016 3 | size 8803 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/visitor.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e438f1a8daf56529cd49f4e2775f531a7dd025745099bcd43cdced6539ebe8f 3 | size 4082 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/test/zerosized.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc8dfe91e334896883f801c0b7afb40bb48e309a657c96aef87e8bb8700f6cb0 3 | size 3384 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/unsupported/Eigen/BVH: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:041690d6ae2e6583b80161c6a0f920c6b714fc9717b0f6688d663441e47d739a 3 | size 5505 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/unsupported/Eigen/FFT: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5b49954cab8bc8efd8465fdd467f1fcf38ae4026896bcdf2230f2069a74eb4d 3 | size 13916 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/unsupported/README.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb6ec53042c3f98e1cb8127e3cd8ce8fd40a5cad8d0510eb6074448af4208978 3 | size 1875 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/unsupported/_DS_Store: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:082a16c162bd8dc632bd9089b82421af77682b76049a1fd90d62eba203a03825 3 | size 6148 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/eigen/unsupported/test/FFT.cpp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c734c885a809af004d87a69fcd764dd6db108ea21c1b48ddbda9868150d8b45a 3 | size 47 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/any.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b8c5e25466f240664a397d7b8e1712f1dc2106f27d42c35e9483965d612c07b 3 | size 4365 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/any.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f27ace584fc49d3613ea25c9d470c95bd0ace1b96ad63d16e0de812db92206d6 3 | size 4724 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/any.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb610eeb81f90d701374e68a484f18295ff0589d23d78a6a2dc503fdb5c2b35f 3 | size 268 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/any.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0974ffc92d0e5f1c527c1956f95942ee46077548c87c439263f740f4b8f41c06 3 | size 23128 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/any.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:360561901b3873946a1911b0e93e1007967ac58e4fbf44ac7d4f25b8646852c9 3 | size 17726 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/any.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d5563109573137bf4e313ea54c97375fabfb15d29dbbe7fbe34878bd1308441 3 | size 10600 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/any.pb.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e8a71b535bece3b8ad744abbededf0de6e1f9b28529218e3ebc99d76c179b3c4 3 | size 274 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/any.pb.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e717fcf0558444bf74b3cf5147bae7f94f81082f54041696f85b46e8ce18c11 3 | size 49424 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/any.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee6ae83ffc0898ad87b4366bf35996f52df67b7ec83eb94d4c073c19d250fcdb 3 | size 5236 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/any_test.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c60f66169e45c2331355144ee294f1338f6f00d2fe84752ed169fc4774e9158 3 | size 3493 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/any_test.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:40fe5c3d5f966fa385e2ec9d259a416c71f97e23bbfefb013f0ddc6636578cd9 3 | size 9578 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/api.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:291c1437cd2c41f41aefa7fda9f0488d92c62489fe20902446728daa0821b658 3 | size 75243 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/api.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c390c8a9b579b4f81decc1eb5d03e148562c9a1f20d95d939a0cef552bf6dc0f 3 | size 41847 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/api.pb.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:401fe4c488e2f2f782f12038a6cd369867fd6091eeed2f0b64fc48eab8656329 3 | size 274 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/api.pb.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfa024cba70383c7d7d3c3135977e98c85d14cee855418f45c4f1b430563c006 3 | size 118284 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/api.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d04a8f027216372fd69781ee38c1fe3e6b5d2ca9dc4c56c6f8ae6eb1bd61fe39 3 | size 7144 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/arena.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1549673a2458847fd490f6431b30addc92b8910ce48febcda05746ee5fa05116 3 | size 10819 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/arena.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:59fbe347c85286a99bae5526bb613e4a58100a3ff5f4a4598c8af5adffd8b9c9 3 | size 41720 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/arena.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eaed6801bfab6059a4adb26aea41c3d817f1c35c2c5e5fe7a5651040d200348d 3 | size 272 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/arena.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e53988730d35ca37182f3ab8f8ead6d62696506c12bbd87b20ac60440c78d5b8 3 | size 22676 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/arenastring.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e5ce7092bc6cd889fca8443ef141f361c58bb73452b43bca5291915bbbd08039 3 | size 284 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/arenastring.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fe3067a2239d7d6c99ebdc800444b66f900abc681a376ef545d2cf5c50bf3055 3 | size 5948 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6fbd09d77b3ca03a84773ea03c0e1e35913b832550b8ec1fba6e7d119927b3f5 3 | size 81648 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/descriptor.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a90c8f099b7b833ce0f533884504cb885e1e4777469de50120067a15b3e0280 3 | size 282 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/duration.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3039a23b89ad6f4c4bf15fd0f433901b3b6cf26466e7f422a6f7d9df718b6149 3 | size 6982 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/duration.pb.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9501e21563ce1d0c87e39983550146b4d4e01f160783f02d0e09292018473849 3 | size 284 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/empty.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7094cfa22d6a38d3ae591e8586bc194b926d1f1d50abda9e3e2d3a5c501d90a2 3 | size 10169 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/empty.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8997b32c5a14e3bd6062e12d16069794e9659f8fbc13af6c22bfb7a4eb46c0a8 3 | size 5628 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/empty.pb.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65e0561c62fa4512bc83202904510612735ae446752d89ee106df3836abf6b17 3 | size 278 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/empty.pb.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bedb77affe2c0695bf23e46fdf0539b1c71fd579ea2877bac57018ecd3aa7c0d 3 | size 42460 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/empty.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b18e0cd44e0d054202c1403c48327180f3995d08ead2a6d4d012c0551a7a3563 3 | size 2422 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/has_bits.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:70df2621ff2612ef86cf893ae6f2393262bbb9c5410eef0a0981a314aa537bb4 3 | size 3323 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7db89faef4b233a98be1ae4fe55dd3acf1ad74b53599eabf2ec5d29776ee4ece 3 | size 16666 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/io/printer.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f318b239c9714556b1c7d95d6a1c31084206ac8f71553145d63d1f60070365d 3 | size 279 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/io/printer.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21abcae1ad30509be5130889db64876bbd80ae755471e49145d150906da9f149 3 | size 58532 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/io/strtod.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85a51bcb7edef888d909eb111f96246c4306c92e123267b35bd61d82c570e05e 3 | size 4964 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/io/strtod.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aaea86a44c3594e4a2aff7322e1e1ff6c614e7a0d2b77cf0b7c09d69da1d386d 3 | size 2431 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/io/strtod.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1e09768a47aaf4764135015919a31753d0b86f725db89a64149723f98c66e6b 3 | size 277 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/io/strtod.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:112b7ede62ee50874a57ba196429edaef9b02380c087da5756c9ba7141e723f3 3 | size 12204 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/map.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02023f72e75ef8aa8a6c9f9ed0819ef375465793c42aeecc95fb1ef7a2a75c3e 3 | size 61875 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/map_entry.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:41f9638bed8a106507c8aef1a1ae12060aab027aac2940ab74e22eddc9584bae 3 | size 11707 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/map_field.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5141a6b672a252827c075c1fcf76c5c652a5fdca9c6d7b6c07bc32af5178ebb3 3 | size 18026 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/map_field.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:786057d651610035b64a5e1080f71a212fad01905c69093990ec912741b4e1c0 3 | size 15197 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/map_field.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:473510e4c28805e7f1f3366a5745355dd450b9d1fc6475f7f44f9920f1c140f0 3 | size 280 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/map_field.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d84edf669521ba45116cb8ce3e7d800be1786d1b47d4aec1b7b7aa4aeaba7f1 3 | size 163380 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/map_test.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1cf3353debc019cfada1f884f648ea47ea5f70cd57895515a11a0da07bd9d011 3 | size 111653 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/message.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7274a21b53f55ea13e32be474dd2c0f8653ec926a4827044cff364c71fd6abe 3 | size 17147 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/message.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d9940410dd356f3aa474724b99a3bd75612cc57b07e9ce473ca0bbe0c6280d69 3 | size 52950 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/message.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5572c03963821a559f02e7c3185ba1946eaf15ac18d8f5ac579defe08f97a47e 3 | size 276 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/message.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e36fe54acd7a7df64adfb8dd4af9bf7536da072860b54c3db327d8e2b08bb02f 3 | size 202064 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/metadata.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04f6196e11b3ccf53941f1ba76d65be420755197450b3011111bc27ba2cf4d0a 3 | size 8063 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/reflection.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d09d677523e5ca0aae79da2af4f87d5643f49f964080d9b51e23b5d236d8cf8f 3 | size 22507 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/service.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d398e88cd607ab08b8e4a28fb5ef4d3ab2e68626116fa02ebe1cfa8bd943dba8 3 | size 2014 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/service.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e8758acc1eb3e5ad549673258a77d536f5c4e459d9b78a1f14b688042f2b461d 3 | size 13137 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/service.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f74bab6d72c44d69a3eb5f4c78e2c1a613f3720af223de4d2089eac8e70d6681 3 | size 276 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/service.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:95b1a8e2673f3cdf57bd5f2f391290768acfcd0544eea980502cafe59d536bfb 3 | size 6668 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/struct.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea941f7cda35e5be722ba9f951b50372bedce3b0cca197ade851bfd33a0e45e2 3 | size 61393 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/struct.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47d8434ab15b7cc6960eba4c6dd196cc7adb8405feae8801ea94ac81e09dcfc2 3 | size 34662 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/struct.pb.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e788bf7a24c253ad9b30284b610d02bfa99f3896573341fa760746c08a4f3dc 3 | size 280 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/struct.pb.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad4de462a43c0cd3f8afa7ee6ce06fad94a61cdfa3b264f369005cc75170a326 3 | size 310344 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/struct.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82b23cc319988977fd61eca7b6ad8f17269b36522ca24a06dde374005fa74353 3 | size 3781 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/stubs/casts.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0bc6ca62cb540e1c47a4c4ae3e69a62c07a7e4a0db16b1a9cd6976f92b467e67 3 | size 5697 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a066594acf03271112bef33300f5507140933e22e7d88715229a6eddb584082 3 | size 15022 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/stubs/mutex.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0cf4a370c9beeb99789ac2a4185b1e8a609bf8b3efa14d615c591dd5775d354 3 | size 4793 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/stubs/once.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b1d941ce5d5e42d8469b7e5225ec1c294a4b3e2ad739a64eb5437a2d92f045d 3 | size 3589 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a0b57d42f01cd1efedc0d0e985682f58a792748723d8cd0fe70605dc3e2e996 3 | size 6148 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/stubs/once.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:730643aefa3ecae4545e910bbe1038c9d10f3f66d3d98390bae537ca0f2083eb 3 | size 276 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/stubs/once.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd47a4bb19dfbbe0071a1a1bdb0e8e304a94677bc9455f1e336f8ecd5dd1697b 3 | size 4160 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/stubs/port.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:316bf47976891e6a8547565e55080f9782e3749f0c3273e0a0371a4b4c668057 3 | size 14240 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/stubs/time.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69fed078ef959f1367b4f32f0ae2852d216a521a46ef94027edb9ed3be59608a 3 | size 3246 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/stubs/time.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9298ca03aae4b8c3cd6a2091bb6d58c9d1b45b69f9f77aeb093298225941211 3 | size 276 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/stubs/time.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de21926ec4a0bc67a8896ff87a581704e43ba45769f909c065bb855634f85432 3 | size 17892 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/test_util.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:00d7f90de64c221ca246e22f9676acdb5ad264eaaa27501348dcbf2846760559 3 | size 9577 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/text_format.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42730176b0c67f8c7d5d219524d128d2528be18e979fcde5145e6b241132e14c 3 | size 284 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/type.pb.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7ce5287094075c727796ab2836c848bc41f3422793e3d65312042845d36d542 3 | size 131873 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/type.pb.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:26e1eda604535c4b105b116f853b627a213627b4f75872d46b4c49864c2fc6c9 3 | size 79860 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/type.pb.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:061ffa0bff78c7c2e63daac5513ac18db227dcb63c085b3cdae5e47c867c210b 3 | size 276 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/type.pb.o: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fedbdfde8de2bd65a109caba65a5dda4ef4c83955c614f3cb06f83a03cbc1716 3 | size 192540 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/type.proto: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e007d8d8763d564ea4724712cc737c60573a411c46572167c0236ec621d21de1 3 | size 6283 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/wire_format.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e055a767dd7b4d45cb299d2dc2af52a196625f4723ba6714923d0daa943bd45d 3 | size 284 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/google/protobuf/wrappers.pb.lo: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5067505c5059c00931390b1096412c3a59f3fede2e39dfb4eb7ae02e8003e2bb 3 | size 284 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/lib/DeepBelief.framework/DeepBelief: -------------------------------------------------------------------------------- 1 | Versions/Current/DeepBelief -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/lib/DeepBelief.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/lib/DeepBelief.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/lib/libprotobuf-lite.a: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2db9f5076cdc2aab5dd99ba65e7c62dd2f2a6ef47a28e061c6604c700c5733a5 3 | size 4240688 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/lib/libprotobuf.a: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:20dfb49ff4dc995d8c6d3e3450bcccd9ac774d23dc0b8d3b0d09c91f12488a6d 3 | size 35404568 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/lib/libtensorflow-core.a: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a639b60ae953112db135bf426bee6d49c35611557fa860ca1dac1d3adba85ed 3 | size 479450928 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/models/jetpac.ntwk: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f680dd73d4b8d86437fc23cacf3bd24279824e9d87070afa12fd8a96d4948fe 3 | size 64140772 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/models/tiny-yolo-voc.pb: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e74f3aa33aafc142a9f9786097f2939aaf09923ab1f547005e678e5ad47949e1 3 | size 180367581 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/models/voc.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f14861775969fd006b382e005f96dc811ef062ea4a37356efb70d7775e90f743 3 | size 135 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/tensorflow/core/BUILD: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c47a2fac5e5c92f1cd8165f88f40a51875cc1c0152be075f54ff762c6a8c7c46 3 | size 76533 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/tensorflow/core/lib/io/path.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d6866122917ba6d3c55b22ab04cfcbe12ee9fc69443be5ea0171812a2016aff8 3 | size 3517 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/tensorflow/core/platform/net.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:52c8b320d8bdb33817e31bbcbc29f953f3d255df33d0c6aeba060b204c1ad101 3 | size 905 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/tensorflow/core/util/bcast.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a8b98383c9049c6b2ab062d58b879dced1cb516defc11b41fff87fbec96ff4d 3 | size 5336 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/tensorflow/core/util/bcast.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:105824bc872337d0100663903c0a6f06a87185d6b6702039801aefec893e317a 3 | size 5131 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/tensorflow/core/util/port.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:831f6ad96f3fea071a7d8a4517d26afdd54f58baea6e34c84c65261a10c9e523 3 | size 1165 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/tensorflow/core/util/port.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1af0b02c63d2c7304bf8ec78facc92439bf83afada7ba3191c32b4b7e88f7ad 3 | size 1085 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/tensorflow/core/util/util.cc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf8380f91115625efcd8969a367784412d12f3888f7c3543b6343efd7f239b12 3 | size 3130 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/tensorflow/core/util/util.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b57778ee40054d150895f1cd11e6c802ea099e79575db1ecb055fb6701e525b8 3 | size 2088 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/third_party/avro/BUILD: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:db6386dfc4237224e3acbf79f3a08b6cec4b8a1b5052152ae30dbd2c5943e996 3 | size 90 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/third_party/eigen3/BUILD: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b99b16d662ca1f13ea0078e64065efa72281995e04fd68f17d60876cfb0c2c6 3 | size 807 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/third_party/eigen3/Eigen/Core: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d747d6e99c9fd5f4b9996f035f554da4646bd3d8b0bf994cd1171b62ab7220bc 3 | size 22 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/third_party/eigen3/Eigen/LU: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf77b59b6e278d7da62d1fdee8c37002a68c03ec94b34d79c9236091e6aed974 3 | size 20 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/third_party/eigen3/Eigen/QR: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4bad5b24d580c49677698853e2dd1c5b0729cce4915fb378e3803fec9610f634 3 | size 20 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/third_party/eigen3/Eigen/SVD: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:178c4b0ca88608dd2b0cc430cfa0f28f18fd8ac3fdfc140ac79e08b4da0b5844 3 | size 21 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/third_party/eigen3/LICENSE: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3be179c5e6a4c405dda54e6545c3db105224da9e9e8920bd828b301ed15d0f52 3 | size 85392 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/third_party/eigen3/_DS_Store: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53945c0e2e93652a2ef205220595b03aafe8e1a7e818fd7a6d0f7937ffbc1d93 3 | size 6148 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/third_party/hadoop/BUILD: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b1e8abe50a7f388564e40deee017c7626a88708dbc04565a7d95f74877adad7e 3 | size 361 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/third_party/hadoop/hdfs.h: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f2f29e21347e23ec4ebdec67707382a28ed97d43413163a1bc93d8c9297f9d2 3 | size 30132 4 | -------------------------------------------------------------------------------- /tensorflow-yolo-ios/dependencies/third_party/py/numpy/BUILD: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b542cefa889c4bac7d246be9fea7eb363c33534a4b9d1e9d7e01fd9231388244 3 | size 269 4 | --------------------------------------------------------------------------------