├── tensorflow ├── lite │ ├── c │ │ ├── exported_symbols.lds │ │ └── version_script.lds │ ├── examples │ │ ├── ios │ │ │ ├── camera │ │ │ │ ├── data │ │ │ │ │ └── .gitignore │ │ │ │ └── .gitignore │ │ │ └── simple │ │ │ │ ├── Podfile │ │ │ │ └── data │ │ │ │ └── grace_hopper.jpg │ │ ├── label_image │ │ │ └── testdata │ │ │ │ └── grace_hopper.bmp │ │ └── experimental_new_converter │ │ │ └── keras_lstm.png │ ├── tools │ │ ├── evaluation │ │ │ ├── testdata │ │ │ │ ├── empty.txt │ │ │ │ └── labels.txt │ │ │ └── stages │ │ │ │ └── testdata │ │ │ │ └── grace_hopper.jpg │ │ ├── pip_package │ │ │ ├── debian │ │ │ │ ├── compat │ │ │ │ └── rules │ │ │ └── MANIFEST.in │ │ ├── make │ │ │ ├── downloads │ │ │ │ ├── gemmlowp │ │ │ │ │ └── WORKSPACE │ │ │ │ ├── eigen │ │ │ │ │ ├── test │ │ │ │ │ │ ├── evaluator_common.h │ │ │ │ │ │ └── bug1213.h │ │ │ │ │ ├── debug │ │ │ │ │ │ └── gdb │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── Eigen │ │ │ │ │ │ ├── Eigen │ │ │ │ │ │ └── Dense │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── .krazy │ │ │ │ │ │ │ ├── make_circulant.cpp.preamble │ │ │ │ │ │ │ ├── make_circulant.cpp.entry │ │ │ │ │ │ │ └── make_circulant.cpp.main │ │ │ │ │ │ ├── snippets │ │ │ │ │ │ │ ├── .krazy │ │ │ │ │ │ │ ├── Cwise_minus.cpp │ │ │ │ │ │ │ ├── Cwise_plus.cpp │ │ │ │ │ │ │ ├── Cwise_abs.cpp │ │ │ │ │ │ │ ├── Cwise_cube.cpp │ │ │ │ │ │ │ ├── Cwise_exp.cpp │ │ │ │ │ │ │ ├── Cwise_log.cpp │ │ │ │ │ │ │ ├── Cwise_sign.cpp │ │ │ │ │ │ │ ├── Cwise_sqrt.cpp │ │ │ │ │ │ │ ├── MatrixBase_random.cpp │ │ │ │ │ │ │ ├── MatrixBase_random_int.cpp │ │ │ │ │ │ │ ├── Cwise_abs2.cpp │ │ │ │ │ │ │ ├── Cwise_inverse.cpp │ │ │ │ │ │ │ ├── Cwise_log10.cpp │ │ │ │ │ │ │ ├── Cwise_square.cpp │ │ │ │ │ │ │ ├── MatrixBase_ones_int_int.cpp │ │ │ │ │ │ │ ├── MatrixBase_random_int_int.cpp │ │ │ │ │ │ │ ├── MatrixBase_zero_int_int.cpp │ │ │ │ │ │ │ ├── Cwise_acos.cpp │ │ │ │ │ │ │ ├── Cwise_asin.cpp │ │ │ │ │ │ │ ├── Cwise_greater.cpp │ │ │ │ │ │ │ ├── Cwise_less.cpp │ │ │ │ │ │ │ ├── Cwise_max.cpp │ │ │ │ │ │ │ ├── Cwise_min.cpp │ │ │ │ │ │ │ ├── Cwise_plus_equal.cpp │ │ │ │ │ │ │ ├── Cwise_pow.cpp │ │ │ │ │ │ │ ├── Cwise_quotient.cpp │ │ │ │ │ │ │ ├── MatrixBase_identity.cpp │ │ │ │ │ │ │ ├── MatrixBase_identity_int_int.cpp │ │ │ │ │ │ │ ├── Cwise_cos.cpp │ │ │ │ │ │ │ ├── Cwise_equal_equal.cpp │ │ │ │ │ │ │ ├── Cwise_less_equal.cpp │ │ │ │ │ │ │ ├── Cwise_minus_equal.cpp │ │ │ │ │ │ │ ├── Cwise_not_equal.cpp │ │ │ │ │ │ │ ├── Cwise_sin.cpp │ │ │ │ │ │ │ ├── Cwise_tan.cpp │ │ │ │ │ │ │ ├── MatrixBase_cwiseSqrt.cpp │ │ │ │ │ │ │ ├── Matrix_setOnes_int.cpp │ │ │ │ │ │ │ ├── Matrix_setZero_int.cpp │ │ │ │ │ │ │ ├── Cwise_atan.cpp │ │ │ │ │ │ │ ├── Cwise_cosh.cpp │ │ │ │ │ │ │ ├── Cwise_greater_equal.cpp │ │ │ │ │ │ │ ├── Cwise_sinh.cpp │ │ │ │ │ │ │ ├── Cwise_tanh.cpp │ │ │ │ │ │ │ ├── MatrixBase_asDiagonal.cpp │ │ │ │ │ │ │ ├── Matrix_setOnes_int_int.cpp │ │ │ │ │ │ │ ├── Matrix_setRandom_int.cpp │ │ │ │ │ │ │ ├── Matrix_setZero_int_int.cpp │ │ │ │ │ │ │ ├── Cwise_boolean_or.cpp │ │ │ │ │ │ │ ├── Cwise_boolean_xor.cpp │ │ │ │ │ │ │ ├── Cwise_slash_equal.cpp │ │ │ │ │ │ │ ├── Cwise_times_equal.cpp │ │ │ │ │ │ │ ├── MatrixBase_cwiseMax.cpp │ │ │ │ │ │ │ ├── MatrixBase_cwiseMin.cpp │ │ │ │ │ │ │ ├── Matrix_initializer_list_vector_cxx11.cpp │ │ │ │ │ │ │ ├── Matrix_setConstant_int.cpp │ │ │ │ │ │ │ ├── Matrix_setRandom_int_int.cpp │ │ │ │ │ │ │ ├── Cwise_boolean_and.cpp │ │ │ │ │ │ │ ├── Matrix_setConstant_int_int.cpp │ │ │ │ │ │ │ ├── Matrix_setIdentity_int_int.cpp │ │ │ │ │ │ │ ├── DenseBase_setLinSpaced.cpp │ │ │ │ │ │ │ ├── MatrixBase_cwiseQuotient.cpp │ │ │ │ │ │ │ ├── MatrixBase_ones.cpp │ │ │ │ │ │ │ ├── MatrixBase_zero.cpp │ │ │ │ │ │ │ ├── MatrixBase_array.cpp │ │ │ │ │ │ │ ├── MatrixBase_setOnes.cpp │ │ │ │ │ │ │ ├── MatrixBase_setZero.cpp │ │ │ │ │ │ │ ├── MatrixBase_zero_int.cpp │ │ │ │ │ │ │ ├── Array_initializer_list_vector_cxx11.cpp │ │ │ │ │ │ │ ├── Cwise_arg.cpp │ │ │ │ │ │ │ ├── MatrixBase_col.cpp │ │ │ │ │ │ │ ├── MatrixBase_ones_int.cpp │ │ │ │ │ │ │ ├── MatrixBase_row.cpp │ │ │ │ │ │ │ ├── MatrixBase_setRandom.cpp │ │ │ │ │ │ │ ├── Array_initializer_list_23_cxx11.cpp │ │ │ │ │ │ │ ├── Matrix_initializer_list_23_cxx11.cpp │ │ │ │ │ │ │ ├── TopicAliasing_mult1.cpp │ │ │ │ │ │ │ ├── Tutorial_commainit_01.cpp │ │ │ │ │ │ │ ├── Cwise_ceil.cpp │ │ │ │ │ │ │ ├── Cwise_floor.cpp │ │ │ │ │ │ │ ├── Cwise_rint.cpp │ │ │ │ │ │ │ ├── Cwise_round.cpp │ │ │ │ │ │ │ ├── Cwise_scalar_power_array.cpp │ │ │ │ │ │ │ ├── Map_simple.cpp │ │ │ │ │ │ │ ├── MatrixBase_cwiseAbs.cpp │ │ │ │ │ │ │ ├── MatrixBase_cwiseAbs2.cpp │ │ │ │ │ │ │ ├── MatrixBase_cwiseSign.cpp │ │ │ │ │ │ │ ├── MatrixBase_setIdentity.cpp │ │ │ │ │ │ │ ├── TopicAliasing_mult3.cpp │ │ │ │ │ │ │ ├── MatrixBase_cwiseInverse.cpp │ │ │ │ │ │ │ ├── Cwise_isInf.cpp │ │ │ │ │ │ │ ├── Cwise_isNaN.cpp │ │ │ │ │ │ │ ├── Cwise_isFinite.cpp │ │ │ │ │ │ │ ├── Array_variadic_ctor_cxx11.cpp │ │ │ │ │ │ │ ├── Cwise_boolean_not.cpp │ │ │ │ │ │ │ ├── Matrix_variadic_ctor_cxx11.cpp │ │ │ │ │ │ │ ├── TopicAliasing_mult4.cpp │ │ │ │ │ │ │ ├── DenseBase_LinSpaced.cpp │ │ │ │ │ │ │ ├── MatrixBase_cast.cpp │ │ │ │ │ │ │ ├── TopicAliasing_mult5.cpp │ │ │ │ │ │ │ ├── Matrix_resize_NoChange_int.cpp │ │ │ │ │ │ │ ├── Matrix_resize_int_NoChange.cpp │ │ │ │ │ │ │ ├── MatrixBase_select.cpp │ │ │ │ │ │ │ ├── Tutorial_commainit_01b.cpp │ │ │ │ │ │ │ ├── MatrixBase_noalias.cpp │ │ │ │ │ │ │ ├── Map_outer_stride.cpp │ │ │ │ │ │ │ ├── MatrixBase_operatorNorm.cpp │ │ │ │ │ │ │ ├── Tutorial_range_for_loop_1d_cxx11.cpp │ │ │ │ │ │ │ ├── Cwise_product.cpp │ │ │ │ │ │ │ ├── MatrixBase_inverse.cpp │ │ │ │ │ │ │ ├── DenseBase_LinSpaced_seq_deprecated.cpp │ │ │ │ │ │ │ ├── MatrixBase_cwiseProduct.cpp │ │ │ │ │ │ │ ├── PartialRedux_sum.cpp │ │ │ │ │ │ │ ├── Tutorial_AdvancedInitialization_Block.cpp │ │ │ │ │ │ │ ├── MatrixBase_eigenvalues.cpp │ │ │ │ │ │ │ ├── MatrixBase_prod.cpp │ │ │ │ │ │ │ ├── PartialRedux_norm.cpp │ │ │ │ │ │ │ ├── PartialRedux_prod.cpp │ │ │ │ │ │ │ ├── SelfAdjointView_operatorNorm.cpp │ │ │ │ │ │ │ ├── Map_general_stride.cpp │ │ │ │ │ │ │ ├── MatrixBase_adjoint.cpp │ │ │ │ │ │ │ ├── MatrixBase_reshaped_int_int.cpp │ │ │ │ │ │ │ ├── Matrix_Map_stride.cpp │ │ │ │ │ │ │ ├── Slicing_arrayexpr.cpp │ │ │ │ │ │ │ ├── Slicing_stdvector_cxx11.cpp │ │ │ │ │ │ │ ├── Tutorial_range_for_loop_2d_cxx11.cpp │ │ │ │ │ │ │ ├── Tutorial_solve_matrix_inverse.cpp │ │ │ │ │ │ │ ├── LeastSquaresQR.cpp │ │ │ │ │ │ │ ├── MatrixBase_replicate.cpp │ │ │ │ │ │ │ └── MatrixBase_replicate_int_int.cpp │ │ │ │ │ │ ├── TutorialSparse_example_details.dox │ │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ │ ├── TopicVectorization.dox │ │ │ │ │ │ ├── Eigen_Silly_Professor_64x64.png │ │ │ │ │ │ └── TopicResizing.dox │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── debug.in │ │ │ │ │ │ └── release.in │ │ │ │ │ ├── bench │ │ │ │ │ │ ├── btl │ │ │ │ │ │ │ ├── libs │ │ │ │ │ │ │ │ ├── STL │ │ │ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ │ │ │ ├── gmm │ │ │ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ │ │ │ ├── mtl4 │ │ │ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ │ │ │ └── tvmet │ │ │ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ │ │ └── generic_bench │ │ │ │ │ │ │ │ ├── timers │ │ │ │ │ │ │ │ └── STL_timer.hh │ │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ └── size_lin_log.hh │ │ │ │ │ │ └── perf_monitoring │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ └── footer.html │ │ │ │ │ │ │ ├── gemv_settings.txt │ │ │ │ │ │ │ ├── gemv_square_settings.txt │ │ │ │ │ │ │ └── gemm_square_settings.txt │ │ │ │ │ ├── unsupported │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── FFT.cpp │ │ │ │ │ │ └── doc │ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── blas │ │ │ │ │ │ ├── f2c │ │ │ │ │ │ │ ├── r_cnjg.c │ │ │ │ │ │ │ └── d_cnjg.c │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── failtest │ │ │ │ │ │ └── failtest_sanity_check.cpp │ │ │ │ │ ├── CTestCustom.cmake.in │ │ │ │ │ └── cmake │ │ │ │ │ │ └── UseEigen3.cmake │ │ │ │ ├── flatbuffers │ │ │ │ │ ├── python │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── setup.cfg │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── MyGame │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── Example │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ └── Example2 │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── FlatBuffers.Test │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ │ └── packages.config │ │ │ │ │ │ ├── namespace_test │ │ │ │ │ │ │ ├── NamespaceA │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── NamespaceB │ │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ └── NamespaceC │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── docker │ │ │ │ │ │ │ ├── TODO.Dockerfile.testing.python.cpython_with_conda │ │ │ │ │ │ │ └── TODO.Dockerfile.testing.python.cpython_with_numpy │ │ │ │ │ │ ├── prototest │ │ │ │ │ │ │ └── imported.proto │ │ │ │ │ │ ├── FlatBuffers.GRPC.Swift │ │ │ │ │ │ │ └── README.md │ │ │ │ │ │ ├── javatest.bin │ │ │ │ │ │ ├── LuaTest.bat │ │ │ │ │ │ ├── arrays_test.bfbs │ │ │ │ │ │ ├── monster_test.bfbs │ │ │ │ │ │ ├── monsterdata_test.mon │ │ │ │ │ │ ├── monsterdata_python_wire.mon │ │ │ │ │ │ └── phpUnionVectorTest.sh │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── struct.go │ │ │ │ │ ├── grpc │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── java-grpc-test.sh │ │ │ │ │ ├── samples │ │ │ │ │ │ └── monster.bfbs │ │ │ │ │ ├── docs │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ │ │ └── fpl_logo_small.png │ │ │ │ │ └── android │ │ │ │ │ │ └── gradle │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ └── gradle-wrapper.jar │ │ │ │ ├── fp16 │ │ │ │ │ ├── include │ │ │ │ │ │ ├── fp16 │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ └── fp16.h │ │ │ │ │ └── jni │ │ │ │ │ │ ├── Application.mk │ │ │ │ │ │ └── Android.mk │ │ │ │ ├── googletest │ │ │ │ │ ├── googlemock │ │ │ │ │ │ ├── build-aux │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── generator │ │ │ │ │ │ │ └── cpp │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── googletest │ │ │ │ │ │ ├── build-aux │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ └── .gitignore │ │ │ │ │ └── .gitignore │ │ │ │ ├── absl │ │ │ │ │ ├── absl │ │ │ │ │ │ ├── time │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ │ └── cctz │ │ │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ │ ├── version │ │ │ │ │ │ │ │ └── zoneinfo │ │ │ │ │ │ │ │ ├── Etc │ │ │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ │ │ ├── GMT-1 │ │ │ │ │ │ │ │ ├── GMT-2 │ │ │ │ │ │ │ │ ├── GMT-3 │ │ │ │ │ │ │ │ ├── GMT-4 │ │ │ │ │ │ │ │ ├── GMT-5 │ │ │ │ │ │ │ │ ├── GMT-6 │ │ │ │ │ │ │ │ ├── GMT-7 │ │ │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ │ │ ├── Zulu │ │ │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ │ │ └── Universal │ │ │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ │ │ ├── Zulu │ │ │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ │ │ ├── Universal │ │ │ │ │ │ │ │ ├── CET │ │ │ │ │ │ │ │ ├── EET │ │ │ │ │ │ │ │ ├── EST │ │ │ │ │ │ │ │ ├── GB │ │ │ │ │ │ │ │ ├── HST │ │ │ │ │ │ │ │ ├── MET │ │ │ │ │ │ │ │ ├── MST │ │ │ │ │ │ │ │ ├── NZ │ │ │ │ │ │ │ │ ├── PRC │ │ │ │ │ │ │ │ ├── ROC │ │ │ │ │ │ │ │ ├── ROK │ │ │ │ │ │ │ │ ├── WET │ │ │ │ │ │ │ │ ├── Cuba │ │ │ │ │ │ │ │ ├── Egypt │ │ │ │ │ │ │ │ ├── Eire │ │ │ │ │ │ │ │ ├── Iran │ │ │ │ │ │ │ │ ├── Israel │ │ │ │ │ │ │ │ ├── Japan │ │ │ │ │ │ │ │ ├── Libya │ │ │ │ │ │ │ │ ├── Navajo │ │ │ │ │ │ │ │ ├── Poland │ │ │ │ │ │ │ │ ├── Turkey │ │ │ │ │ │ │ │ ├── W-SU │ │ │ │ │ │ │ │ ├── CST6CDT │ │ │ │ │ │ │ │ ├── EST5EDT │ │ │ │ │ │ │ │ ├── GB-Eire │ │ │ │ │ │ │ │ ├── Hongkong │ │ │ │ │ │ │ │ ├── Iceland │ │ │ │ │ │ │ │ ├── Jamaica │ │ │ │ │ │ │ │ ├── MST7MDT │ │ │ │ │ │ │ │ ├── NZ-CHAT │ │ │ │ │ │ │ │ ├── PST8PDT │ │ │ │ │ │ │ │ ├── Portugal │ │ │ │ │ │ │ │ ├── US │ │ │ │ │ │ │ │ └── Samoa │ │ │ │ │ │ │ │ ├── Africa │ │ │ │ │ │ │ │ ├── Juba │ │ │ │ │ │ │ │ └── Lome │ │ │ │ │ │ │ │ └── Asia │ │ │ │ │ │ │ │ ├── Aden │ │ │ │ │ │ │ │ ├── Almaty │ │ │ │ │ │ │ │ ├── Amman │ │ │ │ │ │ │ │ ├── Anadyr │ │ │ │ │ │ │ │ ├── Aqtau │ │ │ │ │ │ │ │ ├── Aqtobe │ │ │ │ │ │ │ │ ├── Atyrau │ │ │ │ │ │ │ │ ├── Baku │ │ │ │ │ │ │ │ ├── Beirut │ │ │ │ │ │ │ │ ├── Brunei │ │ │ │ │ │ │ │ ├── Chita │ │ │ │ │ │ │ │ ├── Dacca │ │ │ │ │ │ │ │ ├── Dhaka │ │ │ │ │ │ │ │ ├── Dili │ │ │ │ │ │ │ │ ├── Dubai │ │ │ │ │ │ │ │ ├── Gaza │ │ │ │ │ │ │ │ ├── Harbin │ │ │ │ │ │ │ │ ├── Hebron │ │ │ │ │ │ │ │ ├── Hovd │ │ │ │ │ │ │ │ ├── Kabul │ │ │ │ │ │ │ │ ├── Kuwait │ │ │ │ │ │ │ │ ├── Macao │ │ │ │ │ │ │ │ ├── Macau │ │ │ │ │ │ │ │ ├── Manila │ │ │ │ │ │ │ │ ├── Muscat │ │ │ │ │ │ │ │ ├── Omsk │ │ │ │ │ │ │ │ ├── Oral │ │ │ │ │ │ │ │ ├── Qatar │ │ │ │ │ │ │ │ ├── Riyadh │ │ │ │ │ │ │ │ ├── Saigon │ │ │ │ │ │ │ │ ├── Seoul │ │ │ │ │ │ │ │ ├── Taipei │ │ │ │ │ │ │ │ ├── Tehran │ │ │ │ │ │ │ │ ├── Thimbu │ │ │ │ │ │ │ │ ├── Tokyo │ │ │ │ │ │ │ │ ├── Tomsk │ │ │ │ │ │ │ │ └── Urumqi │ │ │ │ │ │ └── strings │ │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ ├── getline-2.txt │ │ │ │ │ │ │ └── getline-1.txt │ │ │ │ │ ├── .clang-format │ │ │ │ │ └── CMake │ │ │ │ │ │ └── abslConfig.cmake.in │ │ │ │ ├── farmhash │ │ │ │ │ └── dev │ │ │ │ │ │ ├── cmake_m32 │ │ │ │ │ │ ├── SELFTESTHash32 │ │ │ │ │ │ ├── SELFTESTHash32WithSeed │ │ │ │ │ │ ├── WRAPPERuint32tconstcharssizetlenuint32tseed │ │ │ │ │ │ ├── WRAPPERuint32tconstcharssizetlenuint64tseed │ │ │ │ │ │ ├── WRAPPERuint64tconstcharssizetlenuint64tseed │ │ │ │ │ │ ├── WRAPPERuint32tconstcharssizetlenuint64tseed0uint64tseed1 │ │ │ │ │ │ └── WRAPPERuint64tconstcharssizetlenuint64tseed0uint64tseed1 │ │ │ │ ├── neon_2_sse │ │ │ │ │ └── cmake │ │ │ │ │ │ └── Config.cmake.in │ │ │ │ └── ruy │ │ │ │ │ └── ruy │ │ │ │ │ └── ruy_test_ext.oss.bzl │ │ │ └── gen │ │ │ │ └── osx_x86_64 │ │ │ │ ├── bin │ │ │ │ ├── minimal │ │ │ │ ├── benchmark_model │ │ │ │ └── benchmark_model_performance_options │ │ │ │ ├── lib │ │ │ │ ├── benchmark-lib.a │ │ │ │ └── libtensorflow-lite.a │ │ │ │ └── obj │ │ │ │ └── tensorflow │ │ │ │ ├── lite │ │ │ │ ├── util.o │ │ │ │ ├── c │ │ │ │ │ ├── c_api.o │ │ │ │ │ ├── common.o │ │ │ │ │ └── c_api_experimental.o │ │ │ │ ├── allocation.o │ │ │ │ ├── graph_info.o │ │ │ │ ├── interpreter.o │ │ │ │ ├── kernels │ │ │ │ │ ├── add.o │ │ │ │ │ ├── div.o │ │ │ │ │ ├── exp.o │ │ │ │ │ ├── if.o │ │ │ │ │ ├── mul.o │ │ │ │ │ ├── neg.o │ │ │ │ │ ├── pad.o │ │ │ │ │ ├── pow.o │ │ │ │ │ ├── sub.o │ │ │ │ │ ├── add_n.o │ │ │ │ │ ├── cast.o │ │ │ │ │ ├── ceil.o │ │ │ │ │ ├── conv.o │ │ │ │ │ ├── fill.o │ │ │ │ │ ├── floor.o │ │ │ │ │ ├── lstm.o │ │ │ │ │ ├── mfcc.o │ │ │ │ │ ├── pack.o │ │ │ │ │ ├── range.o │ │ │ │ │ ├── rank.o │ │ │ │ │ ├── round.o │ │ │ │ │ ├── shape.o │ │ │ │ │ ├── slice.o │ │ │ │ │ ├── split.o │ │ │ │ │ ├── svdf.o │ │ │ │ │ ├── tile.o │ │ │ │ │ ├── where.o │ │ │ │ │ ├── while.o │ │ │ │ │ ├── densify.o │ │ │ │ │ ├── gather.o │ │ │ │ │ ├── l2norm.o │ │ │ │ │ ├── logical.o │ │ │ │ │ ├── one_hot.o │ │ │ │ │ ├── pooling.o │ │ │ │ │ ├── quantize.o │ │ │ │ │ ├── reduce.o │ │ │ │ │ ├── register.o │ │ │ │ │ ├── reshape.o │ │ │ │ │ ├── reverse.o │ │ │ │ │ ├── rfft2d.o │ │ │ │ │ ├── select.o │ │ │ │ │ ├── split_v.o │ │ │ │ │ ├── squeeze.o │ │ │ │ │ ├── topk_v2.o │ │ │ │ │ ├── unique.o │ │ │ │ │ ├── unpack.o │ │ │ │ │ ├── basic_rnn.o │ │ │ │ │ ├── dequantize.o │ │ │ │ │ ├── fake_quant.o │ │ │ │ │ ├── floor_div.o │ │ │ │ │ ├── floor_mod.o │ │ │ │ │ ├── gather_nd.o │ │ │ │ │ ├── lstm_eval.o │ │ │ │ │ ├── mirror_pad.o │ │ │ │ │ ├── scatter_nd.o │ │ │ │ │ ├── skip_gram.o │ │ │ │ │ ├── transpose.o │ │ │ │ │ ├── zeros_like.o │ │ │ │ │ ├── activations.o │ │ │ │ │ ├── arg_min_max.o │ │ │ │ │ ├── batch_matmul.o │ │ │ │ │ ├── comparisons.o │ │ │ │ │ ├── concatenation.o │ │ │ │ │ ├── eigen_support.o │ │ │ │ │ ├── elementwise.o │ │ │ │ │ ├── expand_dims.o │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── mfcc.o │ │ │ │ │ │ ├── mfcc_dct.o │ │ │ │ │ │ └── spectrogram.o │ │ │ │ │ ├── kernel_util.o │ │ │ │ │ ├── matrix_diag.o │ │ │ │ │ ├── read_variable.o │ │ │ │ │ ├── register_ref.o │ │ │ │ │ ├── segment_sum.o │ │ │ │ │ ├── strided_slice.o │ │ │ │ │ ├── assign_variable.o │ │ │ │ │ ├── depth_to_space.o │ │ │ │ │ ├── depthwise_conv.o │ │ │ │ │ ├── fully_connected.o │ │ │ │ │ ├── lsh_projection.o │ │ │ │ │ ├── matrix_set_diag.o │ │ │ │ │ ├── maximum_minimum.o │ │ │ │ │ ├── numeric_verify.o │ │ │ │ │ ├── resize_bilinear.o │ │ │ │ │ ├── space_to_depth.o │ │ │ │ │ ├── sparse_to_dense.o │ │ │ │ │ ├── transpose_conv.o │ │ │ │ │ ├── audio_spectrogram.o │ │ │ │ │ ├── batch_to_space_nd.o │ │ │ │ │ ├── embedding_lookup.o │ │ │ │ │ ├── hashtable_lookup.o │ │ │ │ │ ├── reverse_sequence.o │ │ │ │ │ ├── space_to_batch_nd.o │ │ │ │ │ ├── squared_difference.o │ │ │ │ │ ├── cpu_backend_context.o │ │ │ │ │ ├── local_response_norm.o │ │ │ │ │ └── non_max_suppression.o │ │ │ │ ├── string_util.o │ │ │ │ ├── arena_planner.o │ │ │ │ ├── core │ │ │ │ │ ├── subgraph.o │ │ │ │ │ └── api │ │ │ │ │ │ ├── op_resolver.o │ │ │ │ │ │ ├── tensor_utils.o │ │ │ │ │ │ └── error_reporter.o │ │ │ │ ├── model_builder.o │ │ │ │ ├── minimal_logging.o │ │ │ │ ├── profiling │ │ │ │ │ ├── time.o │ │ │ │ │ ├── memory_info.o │ │ │ │ │ ├── platform_profiler.o │ │ │ │ │ └── profile_summarizer.o │ │ │ │ ├── stderr_reporter.o │ │ │ │ ├── tools │ │ │ │ │ ├── tool_params.o │ │ │ │ │ ├── evaluation │ │ │ │ │ │ └── utils.o │ │ │ │ │ └── command_line_flags.o │ │ │ │ ├── interpreter_builder.o │ │ │ │ ├── mutable_op_resolver.o │ │ │ │ ├── optional_debug_tools.o │ │ │ │ ├── simple_memory_arena.o │ │ │ │ ├── minimal_logging_default.o │ │ │ │ ├── examples │ │ │ │ │ └── minimal │ │ │ │ │ │ └── minimal.o │ │ │ │ ├── mmap_allocation_disabled.o │ │ │ │ ├── external_cpu_backend_context.o │ │ │ │ └── tflite_with_xnnpack_optional.o │ │ │ │ └── core │ │ │ │ └── util │ │ │ │ └── stats_calculator.o │ │ ├── benchmark │ │ │ └── ios │ │ │ │ └── TFLiteBenchmark │ │ │ │ └── TFLiteBenchmark │ │ │ │ ├── Frameworks │ │ │ │ └── .gitignore │ │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── optimize │ │ │ └── testdata │ │ │ │ ├── fc.bin │ │ │ │ ├── argmax.bin │ │ │ │ ├── concat.bin │ │ │ │ ├── mixed.bin │ │ │ │ ├── pack.bin │ │ │ │ ├── split.bin │ │ │ │ ├── unpack.bin │ │ │ │ ├── maximum.bin │ │ │ │ ├── minimum.bin │ │ │ │ ├── custom_op.bin │ │ │ │ ├── lstm_calibrated.bin │ │ │ │ ├── lstm_calibrated2.bin │ │ │ │ ├── lstm_quantized.bin │ │ │ │ ├── lstm_quantized2.bin │ │ │ │ ├── svdf_calibrated.bin │ │ │ │ ├── svdf_quantized.bin │ │ │ │ ├── add_with_const_input.bin │ │ │ │ ├── quantized_with_gather.bin │ │ │ │ ├── single_conv_no_bias.bin │ │ │ │ ├── multi_input_add_reshape.bin │ │ │ │ ├── weight_shared_between_convs.bin │ │ │ │ ├── single_avg_pool_min_minus_5_max_plus_5.bin │ │ │ │ ├── single_conv_weights_min_0_max_plus_10.bin │ │ │ │ ├── single_softmax_min_minus_5_max_plus_5.bin │ │ │ │ └── single_conv_weights_min_minus_127_max_plus_127.bin │ │ └── accuracy │ │ │ └── ilsvrc │ │ │ └── testdata │ │ │ └── grace_hopper.jpg │ ├── java │ │ ├── demo │ │ │ ├── settings.gradle │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.jar │ │ │ └── app │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── tile.9.png │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_action_info.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── logo.png │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_action_info.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_action_info.png │ │ │ │ └── drawable-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_action_info.png │ │ ├── ovic │ │ │ └── demo │ │ │ │ ├── settings.gradle │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.jar │ │ │ │ └── app │ │ │ │ └── res │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ ├── src │ │ │ ├── testdata │ │ │ │ ├── invalid_model.bin │ │ │ │ ├── add.bin │ │ │ │ ├── float32.bin │ │ │ │ ├── int32.bin │ │ │ │ ├── int64.bin │ │ │ │ ├── string.bin │ │ │ │ ├── uint8.bin │ │ │ │ ├── quantized.bin │ │ │ │ ├── string_scalar.bin │ │ │ │ ├── grace_hopper_224.jpg │ │ │ │ ├── with_custom_op.lite │ │ │ │ └── add_unknown_dimensions.bin │ │ │ └── main │ │ │ │ └── native │ │ │ │ ├── exported_symbols.lds │ │ │ │ └── version_script.lds │ │ ├── gpu_version_script.lds │ │ └── tflite_version_script.lds │ ├── micro │ │ ├── examples │ │ │ ├── micro_speech │ │ │ │ ├── .gitignore │ │ │ │ ├── apollo3 │ │ │ │ │ └── .gitignore │ │ │ │ └── images │ │ │ │ │ ├── animation_on_arduino.gif │ │ │ │ │ └── model_architecture.png │ │ │ ├── image_recognition_experimental │ │ │ │ └── .gitignore │ │ │ ├── magic_wand │ │ │ │ └── train │ │ │ │ │ ├── requirements.txt │ │ │ │ │ └── netmodels │ │ │ │ │ └── CNN │ │ │ │ │ └── weights.h5 │ │ │ ├── network_tester │ │ │ │ └── .gitignore │ │ │ └── hello_world │ │ │ │ └── images │ │ │ │ ├── model_architecture.png │ │ │ │ ├── animation_on_STM32F746.gif │ │ │ │ ├── animation_on_sparkfun_edge.gif │ │ │ │ └── animation_on_arduino_mkrzero.gif │ │ ├── testing │ │ │ └── leon_commands │ │ └── tools │ │ │ └── make │ │ │ ├── .gitignore │ │ │ ├── targets │ │ │ ├── apollo3evb │ │ │ │ └── .gitignore │ │ │ └── esp32_makefile.inc │ │ │ └── templates │ │ │ ├── BSP_DISCO_F746NG.lib.tpl │ │ │ ├── LCD_DISCO_F746NG.lib.tpl │ │ │ ├── AUDIO_DISCO_F746NG.lib.tpl │ │ │ ├── SDRAM_DISCO_F746NG.lib.tpl │ │ │ ├── mbed-os.lib.tpl │ │ │ ├── esp │ │ │ ├── CMakeLists.txt.tpl │ │ │ └── main │ │ │ │ └── CMakeLists.txt.tpl │ │ │ └── mbed_app.json.tpl │ ├── toco │ │ ├── logging │ │ │ └── testdata │ │ │ │ ├── toco_tf_graph.dot │ │ │ │ ├── toco_tflite_graph.dot │ │ │ │ ├── toco_log_before.pb │ │ │ │ ├── BUILD │ │ │ │ └── toco_log_after.pb │ │ └── g3doc │ │ │ └── README.md │ ├── tflite_exported_symbols.lds │ ├── experimental │ │ ├── c │ │ │ └── README.md │ │ ├── delegates │ │ │ ├── testdata │ │ │ │ ├── BUILD │ │ │ │ └── README.txt │ │ │ └── hexagon │ │ │ │ └── java │ │ │ │ └── proguard.flags │ │ ├── examples │ │ │ ├── unity │ │ │ │ └── TensorFlowLitePlugin │ │ │ │ │ ├── ProjectSettings │ │ │ │ │ ├── ProjectVersion.txt │ │ │ │ │ ├── ClusterInputManager.asset │ │ │ │ │ └── EditorBuildSettings.asset │ │ │ │ │ └── UnityPackageManager │ │ │ │ │ └── manifest.json │ │ │ └── lstm │ │ │ │ └── g3doc │ │ │ │ └── images │ │ │ │ ├── op_hint.png │ │ │ │ ├── tf_lstm.png │ │ │ │ ├── tflite_lstm.png │ │ │ │ └── exported_tflite_model.png │ │ ├── objc │ │ │ ├── apps │ │ │ │ └── TestApp │ │ │ │ │ ├── Podfile │ │ │ │ │ └── TestApp │ │ │ │ │ └── Assets.xcassets │ │ │ │ │ └── Contents.json │ │ │ └── apis │ │ │ │ └── framework.modulemap │ │ ├── swift │ │ │ └── TestApp │ │ │ │ ├── TestApp │ │ │ │ └── Assets.xcassets │ │ │ │ │ └── Contents.json │ │ │ │ └── Podfile │ │ ├── tensorboard │ │ │ └── README.md │ │ └── support │ │ │ └── BUILD │ ├── testdata │ │ ├── 0_subgraphs.bin │ │ ├── no_subgraphs.bin │ │ ├── add.bin │ │ ├── lstm.bin │ │ ├── 2_subgraphs.bin │ │ ├── multi_add.bin │ │ ├── test_model.bin │ │ ├── add_quantized.bin │ │ ├── sparse_tensor.bin │ │ ├── two_subgraphs.bin │ │ ├── dynamic_shapes.bin │ │ ├── empty_model.bin │ │ ├── multi_add_flex.bin │ │ ├── test_min_runtime.bin │ │ ├── add_quantized_int8.bin │ │ ├── string_input_model.bin │ │ ├── test_model_broken.bin │ │ └── test_model_versioned_ops.bin │ ├── tflite_version_script.lds │ ├── g3doc │ │ ├── models │ │ │ ├── images │ │ │ │ ├── audio.png │ │ │ │ ├── blank.png │ │ │ │ ├── image.png │ │ │ │ ├── pose.png │ │ │ │ ├── text.png │ │ │ │ ├── video.png │ │ │ │ ├── camera.png │ │ │ │ ├── object.png │ │ │ │ ├── tabular.png │ │ │ │ ├── detection.png │ │ │ │ ├── sentiment.png │ │ │ │ ├── segmentation.png │ │ │ │ ├── smart_reply.png │ │ │ │ ├── output_stride.png │ │ │ │ └── tflite_models.png │ │ │ ├── bert_qa │ │ │ │ └── images │ │ │ │ │ └── screenshot.gif │ │ │ ├── image_classification │ │ │ │ └── images │ │ │ │ │ ├── dog.png │ │ │ │ │ ├── android_banana.png │ │ │ │ │ ├── device_selection.png │ │ │ │ │ ├── build_and_execute.png │ │ │ │ │ └── bundle_identifier.png │ │ │ ├── segmentation │ │ │ │ └── images │ │ │ │ │ └── segmentation.gif │ │ │ ├── smart_reply │ │ │ │ └── images │ │ │ │ │ └── smart_reply.gif │ │ │ ├── text_classification │ │ │ │ └── images │ │ │ │ │ └── screenshot.gif │ │ │ └── object_detection │ │ │ │ └── images │ │ │ │ ├── false_positive.png │ │ │ │ └── android_apple_banana.png │ │ ├── images │ │ │ ├── ios │ │ │ │ ├── build_and_execute.png │ │ │ │ ├── bundle_identifier.png │ │ │ │ └── device_selection.png │ │ │ ├── landing-page │ │ │ │ ├── nest_logo.png │ │ │ │ ├── vsco_logo.png │ │ │ │ ├── gboard_logo.png │ │ │ │ ├── gmail_logo.png │ │ │ │ ├── loseit_logo.png │ │ │ │ ├── photos_logo.png │ │ │ │ ├── shazam_logo.png │ │ │ │ ├── ai_in_motion.png │ │ │ │ ├── assistant_logo.png │ │ │ │ ├── fishbrain_logo.png │ │ │ │ ├── loseit_logo_big.png │ │ │ │ ├── fishbrain_logo_big.png │ │ │ │ ├── facial_contour_detection.png │ │ │ │ └── detect_crop_disease_in_africa.png │ │ │ └── performance │ │ │ │ ├── accuracy_vs_latency.png │ │ │ │ ├── model_size_vs_accuracy.png │ │ │ │ ├── tflite_delegate_graph_1.png │ │ │ │ └── tflite_delegate_graph_2.png │ │ ├── performance │ │ │ └── images │ │ │ │ ├── iosdebug.png │ │ │ │ ├── iosmetal.png │ │ │ │ ├── iosrelease.png │ │ │ │ ├── optimization.jpg │ │ │ │ └── android_gpu_demo.gif │ │ ├── r1 │ │ │ └── images │ │ │ │ └── convert │ │ │ │ ├── sample_after.png │ │ │ │ └── sample_before.png │ │ └── tf_docs_reviews.gwsq │ ├── python │ │ ├── testdata │ │ │ └── pc_conv.bin │ │ └── optimize │ │ │ └── test_data │ │ │ └── mobilenet_like_model.bin │ ├── testing │ │ └── model_coverage │ │ │ └── testdata │ │ │ └── grace_hopper.jpg │ └── delegates │ │ └── flex │ │ └── java │ │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── tensorflow │ │ └── lite │ │ └── flex │ │ └── BUILD └── core │ └── util │ └── tensor_bundle │ └── testdata │ └── old_string_tensors │ ├── foo.index │ └── foo.data-00000-of-00001 ├── minimal └── libtensorflowlite.dylib /tensorflow/lite/c/exported_symbols.lds: -------------------------------------------------------------------------------- 1 | _TfLite* 2 | -------------------------------------------------------------------------------- /tensorflow/lite/examples/ios/camera/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/evaluation/testdata/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/pip_package/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/gemmlowp/WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /tensorflow/lite/java/ovic/demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/micro_speech/.gitignore: -------------------------------------------------------------------------------- 1 | *.wav 2 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/testing/leon_commands: -------------------------------------------------------------------------------- 1 | run 2 | quit 3 | 4 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/.gitignore: -------------------------------------------------------------------------------- 1 | downloads 2 | gen 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/test/evaluator_common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/fp16/include/fp16/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/MyGame/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/java/src/testdata/invalid_model.bin: -------------------------------------------------------------------------------- 1 | This is an invalid model. -------------------------------------------------------------------------------- /tensorflow/lite/toco/logging/testdata/toco_tf_graph.dot: -------------------------------------------------------------------------------- 1 | digraph {a -> b} 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/evaluation/testdata/labels.txt: -------------------------------------------------------------------------------- 1 | label1 2 | label2 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/googletest/googlemock/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/googletest/googletest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/pip_package/MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include * *.py 2 | -------------------------------------------------------------------------------- /tensorflow/lite/examples/ios/camera/.gitignore: -------------------------------------------------------------------------------- 1 | /data/*.txt 2 | /data/*.tflite 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tflite_exported_symbols.lds: -------------------------------------------------------------------------------- 1 | *TfLite* 2 | *tflite* 3 | *TFL_* 4 | -------------------------------------------------------------------------------- /tensorflow/lite/toco/logging/testdata/toco_tflite_graph.dot: -------------------------------------------------------------------------------- 1 | digraph {a -> b} 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/MyGame/Example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/MyGame/Example2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/version: -------------------------------------------------------------------------------- 1 | 2019c 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/debug/gdb/__init__.py: -------------------------------------------------------------------------------- 1 | # Intentionally empty 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/FlatBuffers.Test/Resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/namespace_test/NamespaceA/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/namespace_test/NamespaceC/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/googletest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/googletest/googletest/.gitignore: -------------------------------------------------------------------------------- 1 | # python 2 | *.pyc 3 | -------------------------------------------------------------------------------- /minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/minimal -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/image_recognition_experimental/.gitignore: -------------------------------------------------------------------------------- 1 | first_10_cifar_images.h -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/strings/testdata/getline-2.txt: -------------------------------------------------------------------------------- 1 | one.two.three 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/Eigen/Eigen: -------------------------------------------------------------------------------- 1 | #include "Dense" 2 | #include "Sparse" 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/python/.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /*.egg-info/ 3 | -------------------------------------------------------------------------------- /tensorflow/lite/java/src/main/native/exported_symbols.lds: -------------------------------------------------------------------------------- 1 | *Java_* 2 | *JNI_OnLoad 3 | *JNI_OnUnload 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/python/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/googletest/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore CI build directory 2 | build/ 3 | -------------------------------------------------------------------------------- /tensorflow/lite/experimental/c/README.md: -------------------------------------------------------------------------------- 1 | The C API has been migrated to [lite/c](../../c/README.md). 2 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/magic_wand/train/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.16.2 2 | tensorflow==2.5.0rc0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/benchmark/ios/TFLiteBenchmark/TFLiteBenchmark/Frameworks/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework/ 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/strings/testdata/getline-1.txt: -------------------------------------------------------------------------------- 1 | alpha 2 | 3 | beta gamma 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/examples/.krazy: -------------------------------------------------------------------------------- 1 | EXCLUDE copyright 2 | EXCLUDE license 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/.krazy: -------------------------------------------------------------------------------- 1 | EXCLUDE copyright 2 | EXCLUDE license 3 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/targets/apollo3evb/.gitignore: -------------------------------------------------------------------------------- 1 | startup_gcc.c 2 | am_*.c 3 | libam*.a 4 | 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/docker/TODO.Dockerfile.testing.python.cpython_with_conda: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/docker/TODO.Dockerfile.testing.python.cpython_with_numpy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_minus.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3); 2 | cout << v-5 << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_plus.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3); 2 | cout << v+5 << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/scripts/debug.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Debug . 4 | -------------------------------------------------------------------------------- /tensorflow/lite/experimental/delegates/testdata/BUILD: -------------------------------------------------------------------------------- 1 | licenses(["notice"]) 2 | 3 | exports_files(glob(["*.tflite"])) 4 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/network_tester/.gitignore: -------------------------------------------------------------------------------- 1 | input_data.h 2 | expected_output_data.h 3 | network_model.h 4 | -------------------------------------------------------------------------------- /tensorflow/lite/testdata/0_subgraphs.bin: -------------------------------------------------------------------------------- 1 | TFL3    -------------------------------------------------------------------------------- /tensorflow/lite/testdata/no_subgraphs.bin: -------------------------------------------------------------------------------- 1 | TFL3    -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | Language: Cpp 3 | BasedOnStyle: Google 4 | ... 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/bench/btl/libs/STL/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | btl_add_bench(btl_STL main.cpp OFF) 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/bench/perf_monitoring/resources/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_abs.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,-2,-3); 2 | cout << v.abs() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_cube.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(2,3,4); 2 | cout << v.cube() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_exp.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3); 2 | cout << v.exp() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_log.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3); 2 | cout << v.log() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_sign.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(-3,5,0); 2 | cout << v.sign() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_sqrt.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,4); 2 | cout << v.sqrt() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_random.cpp: -------------------------------------------------------------------------------- 1 | cout << 100 * Matrix2i::Random() << endl; 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_random_int.cpp: -------------------------------------------------------------------------------- 1 | cout << VectorXi::Random(2) << endl; 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/scripts/release.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Release . 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/unsupported/test/FFT.cpp: -------------------------------------------------------------------------------- 1 | #define test_FFTW test_FFT 2 | #include "FFTW.cpp" 3 | -------------------------------------------------------------------------------- /tensorflow/lite/toco/g3doc/README.md: -------------------------------------------------------------------------------- 1 | # TOCO 2 | 3 | These files have moved to [../../g3doc/convert](../../g3doc/convert) 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_abs2.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,-2,-3); 2 | cout << v.abs2() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_inverse.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(2,3,4); 2 | cout << v.inverse() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_log10.cpp: -------------------------------------------------------------------------------- 1 | Array4d v(-1,0,1,2); 2 | cout << log10(v) << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_square.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(2,3,4); 2 | cout << v.square() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_ones_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Ones(2,3) << endl; 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_random_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Random(2,3) << endl; 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_zero_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Zero(2,3) << endl; 2 | -------------------------------------------------------------------------------- /libtensorflowlite.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/libtensorflowlite.dylib -------------------------------------------------------------------------------- /tensorflow/lite/experimental/examples/unity/TensorFlowLitePlugin/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.4.6f1 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_acos.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(0, sqrt(2.)/2, 1); 2 | cout << v.acos() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_asin.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(0, sqrt(2.)/2, 1); 2 | cout << v.asin() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_greater.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3), w(3,2,1); 2 | cout << (v>w) << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_less.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3), w(3,2,1); 2 | cout << (v::Identity() << endl; 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_identity_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXd::Identity(4, 3) << endl; 2 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/micro_speech/apollo3/.gitignore: -------------------------------------------------------------------------------- 1 | captured_data.txt 2 | captured_data.wav 3 | cmsis_*.txt 4 | micro_*.txt 5 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/templates/BSP_DISCO_F746NG.lib.tpl: -------------------------------------------------------------------------------- 1 | https://os.mbed.com/teams/ST/code/BSP_DISCO_F746NG/#df2ea349c37a 2 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/templates/LCD_DISCO_F746NG.lib.tpl: -------------------------------------------------------------------------------- 1 | http://os.mbed.com/teams/ST/code/LCD_DISCO_F746NG/#d44525b1de98 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_cos.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(M_PI, M_PI/2, M_PI/3); 2 | cout << v.cos() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_equal_equal.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3), w(3,2,1); 2 | cout << (v==w) << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_less_equal.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3), w(3,2,1); 2 | cout << (v<=w) << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_minus_equal.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3); 2 | v -= 5; 3 | cout << v << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_not_equal.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3), w(3,2,1); 2 | cout << (v!=w) << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_sin.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(M_PI, M_PI/2, M_PI/3); 2 | cout << v.sin() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_tan.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(M_PI, M_PI/2, M_PI/3); 2 | cout << v.tan() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_cwiseSqrt.cpp: -------------------------------------------------------------------------------- 1 | Vector3d v(1,2,4); 2 | cout << v.cwiseSqrt() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Matrix_setOnes_int.cpp: -------------------------------------------------------------------------------- 1 | VectorXf v; 2 | v.setOnes(3); 3 | cout << v << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Matrix_setZero_int.cpp: -------------------------------------------------------------------------------- 1 | VectorXf v; 2 | v.setZero(3); 3 | cout << v << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/farmhash/dev/cmake_m32: -------------------------------------------------------------------------------- 1 | set(CMAKE_CXX_COMPILER_ARG1 "-m32") 2 | set(CMAKE_C_COMPILER_ARG1 "-m32") 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/neon_2_sse/cmake/Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/@targets_export_name@.cmake") 2 | -------------------------------------------------------------------------------- /tensorflow/lite/experimental/examples/unity/TensorFlowLitePlugin/UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/templates/AUDIO_DISCO_F746NG.lib.tpl: -------------------------------------------------------------------------------- 1 | https://os.mbed.com/teams/ST/code/AUDIO_DISCO_F746NG/#7046ce26b7ed 2 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/templates/SDRAM_DISCO_F746NG.lib.tpl: -------------------------------------------------------------------------------- 1 | https://os.mbed.com/teams/ST/code/SDRAM_DISCO_F746NG/#370f402a2219 2 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/templates/mbed-os.lib.tpl: -------------------------------------------------------------------------------- 1 | https://github.com/ARMmbed/mbed-os/#8ef742a49c1682f9ef3ba50148b871e38c3866cc 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_atan.cpp: -------------------------------------------------------------------------------- 1 | ArrayXd v = ArrayXd::LinSpaced(5,0,1); 2 | cout << v.atan() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_cosh.cpp: -------------------------------------------------------------------------------- 1 | ArrayXd v = ArrayXd::LinSpaced(5,0,1); 2 | cout << cosh(v) << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_greater_equal.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3), w(3,2,1); 2 | cout << (v>=w) << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_sinh.cpp: -------------------------------------------------------------------------------- 1 | ArrayXd v = ArrayXd::LinSpaced(5,0,1); 2 | cout << sinh(v) << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_tanh.cpp: -------------------------------------------------------------------------------- 1 | ArrayXd v = ArrayXd::LinSpaced(5,0,1); 2 | cout << tanh(v) << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_asDiagonal.cpp: -------------------------------------------------------------------------------- 1 | cout << Matrix3i(Vector3i(2,5,6).asDiagonal()) << endl; 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Matrix_setOnes_int_int.cpp: -------------------------------------------------------------------------------- 1 | MatrixXf m; 2 | m.setOnes(3, 3); 3 | cout << m << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Matrix_setRandom_int.cpp: -------------------------------------------------------------------------------- 1 | VectorXf v; 2 | v.setRandom(3); 3 | cout << v << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Matrix_setZero_int_int.cpp: -------------------------------------------------------------------------------- 1 | MatrixXf m; 2 | m.setZero(3, 3); 3 | cout << m << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/experimental/objc/apps/TestApp/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '9.0' 2 | 3 | target 'TestApp' do 4 | pod 'TensorFlowLiteObjC' 5 | end 6 | -------------------------------------------------------------------------------- /tensorflow/lite/testdata/add.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/testdata/add.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_boolean_or.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(-1,2,1), w(-3,2,3); 2 | cout << ((v v {{1, 2, 3, 4, 5}}; 2 | cout << v << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_arg.cpp: -------------------------------------------------------------------------------- 1 | ArrayXcf v = ArrayXcf::Random(3); 2 | cout << v << endl << endl; 3 | cout << arg(v) << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_col.cpp: -------------------------------------------------------------------------------- 1 | Matrix3d m = Matrix3d::Identity(); 2 | m.col(1) = Vector3d(4,5,6); 3 | cout << m << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_ones_int.cpp: -------------------------------------------------------------------------------- 1 | cout << 6 * RowVectorXi::Ones(4) << endl; 2 | cout << VectorXf::Ones(2) << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_row.cpp: -------------------------------------------------------------------------------- 1 | Matrix3d m = Matrix3d::Identity(); 2 | m.row(1) = Vector3d(4,5,6); 3 | cout << m << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_setRandom.cpp: -------------------------------------------------------------------------------- 1 | Matrix4i m = Matrix4i::Zero(); 2 | m.col(1).setRandom(); 3 | cout << m << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/experimental/objc/apis/framework.modulemap: -------------------------------------------------------------------------------- 1 | framework module TFLTensorFlowLite { 2 | umbrella header "TFLTensorFlowLite.h" 3 | 4 | export * 5 | } 6 | -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/audio.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/blank.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/image.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/pose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/pose.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/text.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/video.png -------------------------------------------------------------------------------- /tensorflow/lite/java/src/testdata/float32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/src/testdata/float32.bin -------------------------------------------------------------------------------- /tensorflow/lite/java/src/testdata/int32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/src/testdata/int32.bin -------------------------------------------------------------------------------- /tensorflow/lite/java/src/testdata/int64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/src/testdata/int64.bin -------------------------------------------------------------------------------- /tensorflow/lite/java/src/testdata/string.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/src/testdata/string.bin -------------------------------------------------------------------------------- /tensorflow/lite/java/src/testdata/uint8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/src/testdata/uint8.bin -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/targets/esp32_makefile.inc: -------------------------------------------------------------------------------- 1 | # Settings for Espressif ESP32 2 | 3 | ifeq ($(TARGET), esp) 4 | TARGET_ARCH := xtensa-esp32 5 | endif 6 | -------------------------------------------------------------------------------- /tensorflow/lite/python/testdata/pc_conv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/python/testdata/pc_conv.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/dynamic_shapes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/testdata/dynamic_shapes.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/empty_model.bin: -------------------------------------------------------------------------------- 1 | TFL3 D@      -------------------------------------------------------------------------------- /tensorflow/lite/testdata/multi_add_flex.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/testdata/multi_add_flex.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/test_min_runtime.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/testdata/test_min_runtime.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Array_initializer_list_23_cxx11.cpp: -------------------------------------------------------------------------------- 1 | ArrayXXi a { 2 | {1, 2, 3}, 3 | {3, 4, 5} 4 | }; 5 | cout << a << endl; 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Matrix_initializer_list_23_cxx11.cpp: -------------------------------------------------------------------------------- 1 | MatrixXd m { 2 | {1, 2, 3}, 3 | {4, 5, 6} 4 | }; 5 | cout << m << endl; 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/TopicAliasing_mult1.cpp: -------------------------------------------------------------------------------- 1 | MatrixXf matA(2,2); 2 | matA << 2, 0, 0, 2; 3 | matA = matA * matA; 4 | cout << matA; 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Tutorial_commainit_01.cpp: -------------------------------------------------------------------------------- 1 | Matrix3f m; 2 | m << 1, 2, 3, 3 | 4, 5, 6, 4 | 7, 8, 9; 5 | std::cout << m; 6 | -------------------------------------------------------------------------------- /tensorflow/lite/examples/ios/simple/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '8.0' 2 | inhibit_all_warnings! 3 | 4 | target 'tflite_simple_example' 5 | pod 'TensorFlowLite', '1.13.1' 6 | -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/camera.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/object.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/tabular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/tabular.png -------------------------------------------------------------------------------- /tensorflow/lite/java/src/testdata/quantized.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/src/testdata/quantized.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/add_quantized_int8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/testdata/add_quantized_int8.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/string_input_model.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/testdata/string_input_model.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/test_model_broken.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/testdata/test_model_broken.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_ceil.cpp: -------------------------------------------------------------------------------- 1 | ArrayXd v = ArrayXd::LinSpaced(7,-2,2); 2 | cout << v << endl << endl; 3 | cout << ceil(v) << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_floor.cpp: -------------------------------------------------------------------------------- 1 | ArrayXd v = ArrayXd::LinSpaced(7,-2,2); 2 | cout << v << endl << endl; 3 | cout << floor(v) << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_rint.cpp: -------------------------------------------------------------------------------- 1 | ArrayXd v = ArrayXd::LinSpaced(7,-2,2); 2 | cout << v << endl << endl; 3 | cout << rint(v) << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_round.cpp: -------------------------------------------------------------------------------- 1 | ArrayXd v = ArrayXd::LinSpaced(7,-2,2); 2 | cout << v << endl << endl; 3 | cout << round(v) << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_scalar_power_array.cpp: -------------------------------------------------------------------------------- 1 | Array e(2,-3,1./3.); 2 | cout << "10^[" << e << "] = " << pow(10,e) << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Map_simple.cpp: -------------------------------------------------------------------------------- 1 | int array[9]; 2 | for(int i = 0; i < 9; ++i) array[i] = i; 3 | cout << Map(array) << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_cwiseAbs.cpp: -------------------------------------------------------------------------------- 1 | MatrixXd m(2,3); 2 | m << 2, -4, 6, 3 | -5, 1, 0; 4 | cout << m.cwiseAbs() << endl; 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_cwiseAbs2.cpp: -------------------------------------------------------------------------------- 1 | MatrixXd m(2,3); 2 | m << 2, -4, 6, 3 | -5, 1, 0; 4 | cout << m.cwiseAbs2() << endl; 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_cwiseSign.cpp: -------------------------------------------------------------------------------- 1 | MatrixXd m(2,3); 2 | m << 2, -4, 6, 3 | -5, 1, 0; 4 | cout << m.cwiseSign() << endl; 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_setIdentity.cpp: -------------------------------------------------------------------------------- 1 | Matrix4i m = Matrix4i::Zero(); 2 | m.block<3,3>(1,0).setIdentity(); 3 | cout << m << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/go/doc.go: -------------------------------------------------------------------------------- 1 | // Package flatbuffers provides facilities to read and write flatbuffers 2 | // objects. 3 | package flatbuffers 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/prototest/imported.proto: -------------------------------------------------------------------------------- 1 | package proto.test; 2 | 3 | message ImportedMessage { 4 | optional int32 a = 26; 5 | } 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/fc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/fc.bin -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/detection.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/sentiment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/sentiment.png -------------------------------------------------------------------------------- /tensorflow/lite/toco/logging/testdata/toco_log_before.pb: -------------------------------------------------------------------------------- 1 | 2 | Conv1 3 | Conv2 4 | Identity 5 | Reshape 6 | Dense 7 | Dense 8 | CustomOp 9 | AvgPool3D 10 | SoftmaxH -------------------------------------------------------------------------------- /tensorflow/lite/tools/benchmark/ios/TFLiteBenchmark/TFLiteBenchmark/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/TopicAliasing_mult3.cpp: -------------------------------------------------------------------------------- 1 | MatrixXf matA(2,2); 2 | matA << 2, 0, 0, 2; 3 | matA.noalias() = matA * matA; 4 | cout << matA; 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/farmhash/dev/SELFTESTHash32: -------------------------------------------------------------------------------- 1 | cout << NAMESPACE::Hash32(data + offset, len) << "u," << endl; 2 | Check(NAMESPACE::Hash32(data + offset, len)); 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/argmax.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/argmax.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/concat.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/concat.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/mixed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/mixed.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/pack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/pack.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/split.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/split.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/unpack.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/unpack.bin -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/segmentation.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/smart_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/smart_reply.png -------------------------------------------------------------------------------- /tensorflow/lite/java/src/testdata/string_scalar.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/src/testdata/string_scalar.bin -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/templates/esp/CMakeLists.txt.tpl: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.5) 2 | include($ENV{IDF_PATH}/tools/cmake/project.cmake) 3 | project(%{EXECUTABLE}%) 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/TutorialSparse_example_details.dox: -------------------------------------------------------------------------------- 1 | /** 2 | \page TutorialSparse_example_details 3 | \include Tutorial_sparse_example_details.cpp 4 | */ 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/examples/make_circulant.cpp.preamble: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | template class Circulant; 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_cwiseInverse.cpp: -------------------------------------------------------------------------------- 1 | MatrixXd m(2,3); 2 | m << 2, 0.5, 1, 3 | 3, 0.25, 1; 4 | cout << m.cwiseInverse() << endl; 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/maximum.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/maximum.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/minimum.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/minimum.bin -------------------------------------------------------------------------------- /tensorflow/lite/c/version_script.lds: -------------------------------------------------------------------------------- 1 | VERS_1.0 { 2 | # Export symbols in c_api.h. 3 | global: 4 | TfLite*; 5 | 6 | # Hide everything else. 7 | local: 8 | *; 9 | }; 10 | -------------------------------------------------------------------------------- /tensorflow/lite/experimental/delegates/hexagon/java/proguard.flags: -------------------------------------------------------------------------------- 1 | -keepclassmembers class org.tensorflow.lite.NativeInterpreterWrapper { 2 | private long inferenceDurationNanoseconds; 3 | } -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/ios/build_and_execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/ios/build_and_execute.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/ios/bundle_identifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/ios/bundle_identifier.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/ios/device_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/ios/device_selection.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/landing-page/nest_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/landing-page/nest_logo.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/landing-page/vsco_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/landing-page/vsco_logo.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/output_stride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/output_stride.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/images/tflite_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/images/tflite_models.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/performance/images/iosdebug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/performance/images/iosdebug.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/performance/images/iosmetal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/performance/images/iosmetal.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/performance/images/iosrelease.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/performance/images/iosrelease.png -------------------------------------------------------------------------------- /tensorflow/lite/java/src/testdata/grace_hopper_224.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/src/testdata/grace_hopper_224.jpg -------------------------------------------------------------------------------- /tensorflow/lite/java/src/testdata/with_custom_op.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/src/testdata/with_custom_op.lite -------------------------------------------------------------------------------- /tensorflow/lite/testdata/test_model_versioned_ops.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/testdata/test_model_versioned_ops.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/blas/f2c/r_cnjg.c: -------------------------------------------------------------------------------- 1 | #include "datatypes.h" 2 | 3 | void r_cnjg(complex *r, complex *z) { 4 | r->r = z->r; 5 | r->i = -(z->i); 6 | } 7 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_isInf.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3); 2 | v(1) *= 0.0/0.0; 3 | v(2) /= 0.0; 4 | cout << v << endl << endl; 5 | cout << isinf(v) << endl; 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_isNaN.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3); 2 | v(1) *= 0.0/0.0; 3 | v(2) /= 0.0; 4 | cout << v << endl << endl; 5 | cout << isnan(v) << endl; 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/grpc/tests/java-grpc-test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # NOTE: make sure `mvn install` in /gprc is executed before running this test 4 | mvn test 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/bin/minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/bin/minimal -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/custom_op.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/custom_op.bin -------------------------------------------------------------------------------- /tensorflow/lite/examples/ios/simple/data/grace_hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/examples/ios/simple/data/grace_hopper.jpg -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/landing-page/gboard_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/landing-page/gboard_logo.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/landing-page/gmail_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/landing-page/gmail_logo.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/landing-page/loseit_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/landing-page/loseit_logo.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/landing-page/photos_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/landing-page/photos_logo.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/landing-page/shazam_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/landing-page/shazam_logo.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/performance/images/optimization.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/performance/images/optimization.jpg -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/r1/images/convert/sample_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/r1/images/convert/sample_after.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/r1/images/convert/sample_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/r1/images/convert/sample_before.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/tf_docs_reviews.gwsq: -------------------------------------------------------------------------------- 1 | send_cls_to('tf-docs-infra+config-reviews'); 2 | 3 | define Main { 4 | reassign_to_list(['blamb', 'markdaoust', 'yashkatariya', 'adamwood']); 5 | } 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_isFinite.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3); 2 | v(1) *= 0.0/0.0; 3 | v(2) /= 0.0; 4 | cout << v << endl << endl; 5 | cout << isfinite(v) << endl; 6 | -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/landing-page/ai_in_motion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/landing-page/ai_in_motion.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/landing-page/assistant_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/landing-page/assistant_logo.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/landing-page/fishbrain_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/landing-page/fishbrain_logo.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/bert_qa/images/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/bert_qa/images/screenshot.gif -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /tensorflow/lite/java/src/testdata/add_unknown_dimensions.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/src/testdata/add_unknown_dimensions.bin -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/templates/mbed_app.json.tpl: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "main-stack-size": { 4 | "value": 65536 5 | } 6 | }, 7 | "requires": ["bare-metal"] 8 | } 9 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/blas/f2c/d_cnjg.c: -------------------------------------------------------------------------------- 1 | #include "datatypes.h" 2 | 3 | void d_cnjg(doublecomplex *r, doublecomplex *z) { 4 | r->r = z->r; 5 | r->i = -(z->i); 6 | } 7 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/eigen/doc/ftv2node.png -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/eigen/doc/ftv2pnode.png -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Array_variadic_ctor_cxx11.cpp: -------------------------------------------------------------------------------- 1 | Array a(1, 2, 3, 4, 5, 6); 2 | Array b {1, 2, 3}; 3 | cout << a << "\n\n" << b << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_boolean_not.cpp: -------------------------------------------------------------------------------- 1 | Array3d v(1,2,3); 2 | v(1) *= 0.0/0.0; 3 | v(2) /= 0.0; 4 | cout << v << endl << endl; 5 | cout << !isfinite(v) << endl; 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Matrix_variadic_ctor_cxx11.cpp: -------------------------------------------------------------------------------- 1 | Matrix a(1, 2, 3, 4, 5, 6); 2 | Matrix b {1, 2, 3}; 3 | cout << a << "\n\n" << b << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/TopicAliasing_mult4.cpp: -------------------------------------------------------------------------------- 1 | MatrixXf A(2,2), B(3,2); 2 | B << 2, 0, 0, 3, 1, 1; 3 | A << 2, 0, 0, -2; 4 | A = (B * A).cwiseAbs(); 5 | cout << A; 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/unsupported/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set_directory_properties(PROPERTIES EXCLUDE_FROM_ALL TRUE) 2 | 3 | add_subdirectory(examples) 4 | add_subdirectory(snippets) 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/FlatBuffers.GRPC.Swift/README.md: -------------------------------------------------------------------------------- 1 | # FlatBuffers.GRPC.Swift 2 | 3 | The following is Swift example on how GRPC would be with Swift Flatbuffers 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/lstm_calibrated.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/lstm_calibrated.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/lstm_calibrated2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/lstm_calibrated2.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/lstm_quantized.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/lstm_quantized.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/lstm_quantized2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/lstm_quantized2.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/svdf_calibrated.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/svdf_calibrated.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/svdf_quantized.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/svdf_quantized.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/pip_package/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | export PYBUILD_NAME=tflite_runtime 4 | %: 5 | dh $@ --with python3 --buildsystem=pybuild 6 | 7 | override_dh_shlibdeps: 8 | -------------------------------------------------------------------------------- /tensorflow/lite/examples/label_image/testdata/grace_hopper.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/examples/label_image/testdata/grace_hopper.bmp -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/landing-page/loseit_logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/landing-page/loseit_logo_big.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/performance/images/android_gpu_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/performance/images/android_gpu_demo.gif -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/Eigen/Dense: -------------------------------------------------------------------------------- 1 | #include "Core" 2 | #include "LU" 3 | #include "Cholesky" 4 | #include "QR" 5 | #include "SVD" 6 | #include "Geometry" 7 | #include "Eigenvalues" 8 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/DenseBase_LinSpaced.cpp: -------------------------------------------------------------------------------- 1 | cout << VectorXi::LinSpaced(4,7,10).transpose() << endl; 2 | cout << VectorXd::LinSpaced(5,0.0,1.0).transpose() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_cast.cpp: -------------------------------------------------------------------------------- 1 | Matrix2d md = Matrix2d::Identity() * 0.45; 2 | Matrix2f mf = Matrix2f::Identity(); 3 | cout << md + mf.cast() << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/TopicAliasing_mult5.cpp: -------------------------------------------------------------------------------- 1 | MatrixXf A(2,2), B(3,2); 2 | B << 2, 0, 0, 3, 1, 1; 3 | A << 2, 0, 0, -2; 4 | A = (B * A).eval().cwiseAbs(); 5 | cout << A; 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/bin/benchmark_model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/bin/benchmark_model -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/lib/benchmark-lib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/lib/benchmark-lib.a -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/landing-page/fishbrain_logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/landing-page/fishbrain_logo_big.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/performance/accuracy_vs_latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/performance/accuracy_vs_latency.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/image_classification/images/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/image_classification/images/dog.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/segmentation/images/segmentation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/segmentation/images/segmentation.gif -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/smart_reply/images/smart_reply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/smart_reply/images/smart_reply.gif -------------------------------------------------------------------------------- /tensorflow/lite/java/ovic/demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/ovic/demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /tensorflow/lite/testing/model_coverage/testdata/grace_hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/testing/model_coverage/testdata/grace_hopper.jpg -------------------------------------------------------------------------------- /tensorflow/lite/tools/accuracy/ilsvrc/testdata/grace_hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/accuracy/ilsvrc/testdata/grace_hopper.jpg -------------------------------------------------------------------------------- /tensorflow/lite/tools/evaluation/stages/testdata/grace_hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/evaluation/stages/testdata/grace_hopper.jpg -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/UCT: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/UTC: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/GMT: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/GMT+0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/GMT-0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/GMT0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/UCT: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/UTC: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Zulu: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/TopicVectorization.dox: -------------------------------------------------------------------------------- 1 | namespace Eigen { 2 | 3 | /** \page TopicVectorization Vectorization 4 | 5 | 6 | TODO: write this dox page! 7 | 8 | */ 9 | } 10 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Matrix_resize_NoChange_int.cpp: -------------------------------------------------------------------------------- 1 | MatrixXd m(3,4); 2 | m.resize(NoChange, 5); 3 | cout << "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Matrix_resize_int_NoChange.cpp: -------------------------------------------------------------------------------- 1 | MatrixXd m(3,4); 2 | m.resize(5, NoChange); 3 | cout << "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/add_with_const_input.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/add_with_const_input.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/quantized_with_gather.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/quantized_with_gather.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/single_conv_no_bias.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/single_conv_no_bias.bin -------------------------------------------------------------------------------- /tensorflow/lite/examples/experimental_new_converter/keras_lstm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/examples/experimental_new_converter/keras_lstm.png -------------------------------------------------------------------------------- /tensorflow/lite/experimental/examples/lstm/g3doc/images/op_hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/experimental/examples/lstm/g3doc/images/op_hint.png -------------------------------------------------------------------------------- /tensorflow/lite/experimental/examples/lstm/g3doc/images/tf_lstm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/experimental/examples/lstm/g3doc/images/tf_lstm.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/performance/model_size_vs_accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/performance/model_size_vs_accuracy.png -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/app/src/main/res/drawable-hdpi/tile.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/demo/app/src/main/res/drawable-hdpi/tile.9.png -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/app/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/demo/app/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /tensorflow/lite/python/optimize/test_data/mobilenet_like_model.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/python/optimize/test_data/mobilenet_like_model.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-1: -------------------------------------------------------------------------------- 1 | TZif2+01TZif2+01 2 | <+01>-1 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-2: -------------------------------------------------------------------------------- 1 | TZif2 +02TZif2 +02 2 | <+02>-2 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-3: -------------------------------------------------------------------------------- 1 | TZif2*0+03TZif2*0+03 2 | <+03>-3 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-4: -------------------------------------------------------------------------------- 1 | TZif28@+04TZif28@+04 2 | <+04>-4 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-5: -------------------------------------------------------------------------------- 1 | TZif2FP+05TZif2FP+05 2 | <+05>-5 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-6: -------------------------------------------------------------------------------- 1 | TZif2T`+06TZif2T`+06 2 | <+06>-6 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-7: -------------------------------------------------------------------------------- 1 | TZif2bp+07TZif2bp+07 2 | <+07>-7 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/Zulu: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Factory: -------------------------------------------------------------------------------- 1 | TZif2-00TZif2-00 2 | <-00>0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Greenwich: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Universal: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/bench/btl/libs/gmm/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | find_package(GMM) 3 | if (GMM_FOUND) 4 | include_directories(${GMM_INCLUDES}) 5 | btl_add_bench(btl_gmm main.cpp) 6 | endif () 7 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/bench/perf_monitoring/gemv_settings.txt: -------------------------------------------------------------------------------- 1 | 8 8 2 | 9 9 3 | 24 24 4 | 239 239 5 | 240 240 6 | 2400 24 7 | 24 2400 8 | 24 240 9 | 2400 2400 10 | 4800 23 11 | 23 4800 12 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_select.cpp: -------------------------------------------------------------------------------- 1 | MatrixXi m(3, 3); 2 | m << 1, 2, 3, 3 | 4, 5, 6, 4 | 7, 8, 9; 5 | m = (m.array() >= 5).select(-m, m); 6 | cout << m << endl; 7 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Tutorial_commainit_01b.cpp: -------------------------------------------------------------------------------- 1 | Matrix3f m; 2 | m.row(0) << 1, 2, 3; 3 | m.block(1,0,2,2) << 4, 5, 7, 8; 4 | m.col(2).tail(2) << 6, 9; 5 | std::cout << m; 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/farmhash/dev/SELFTESTHash32WithSeed: -------------------------------------------------------------------------------- 1 | cout << NAMESPACE::Hash32WithSeed(data + offset, len, SEED) << "u," << endl; 2 | Check(NAMESPACE::Hash32WithSeed(data + offset, len, SEED)); 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/javatest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/flatbuffers/tests/javatest.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/lib/libtensorflow-lite.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/lib/libtensorflow-lite.a -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/multi_input_add_reshape.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/multi_input_add_reshape.bin -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/landing-page/facial_contour_detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/landing-page/facial_contour_detection.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/performance/tflite_delegate_graph_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/performance/tflite_delegate_graph_1.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/performance/tflite_delegate_graph_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/performance/tflite_delegate_graph_2.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/text_classification/images/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/text_classification/images/screenshot.gif -------------------------------------------------------------------------------- /tensorflow/lite/java/ovic/demo/app/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/ovic/demo/app/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /tensorflow/lite/java/ovic/demo/app/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/ovic/demo/app/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/Greenwich: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/Universal: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_noalias.cpp: -------------------------------------------------------------------------------- 1 | Matrix2d a, b, c; a << 1,2,3,4; b << 5,6,7,8; 2 | c.noalias() = a * b; // this computes the product directly to c 3 | cout << c << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/samples/monster.bfbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/flatbuffers/samples/monster.bfbs -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/util.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/util.o -------------------------------------------------------------------------------- /tensorflow/core/util/tensor_bundle/testdata/old_string_tensors/foo.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/core/util/tensor_bundle/testdata/old_string_tensors/foo.index -------------------------------------------------------------------------------- /tensorflow/lite/experimental/examples/lstm/g3doc/images/tflite_lstm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/experimental/examples/lstm/g3doc/images/tflite_lstm.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/object_detection/images/false_positive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/object_detection/images/false_positive.png -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/demo/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/demo/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/hello_world/images/model_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/micro/examples/hello_world/images/model_architecture.png -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/magic_wand/train/netmodels/CNN/weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/micro/examples/magic_wand/train/netmodels/CNN/weights.h5 -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/CMake/abslConfig.cmake.in: -------------------------------------------------------------------------------- 1 | # absl CMake configuration file. 2 | 3 | include(FindThreads) 4 | 5 | @PACKAGE_INIT@ 6 | 7 | include ("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake") -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/bench/btl/libs/mtl4/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | find_package(MTL4) 3 | if (MTL4_FOUND) 4 | include_directories(${MTL4_INCLUDE_DIR}) 5 | btl_add_bench(btl_mtl4 main.cpp) 6 | endif () 7 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Map_outer_stride.cpp: -------------------------------------------------------------------------------- 1 | int array[12]; 2 | for(int i = 0; i < 12; ++i) array[i] = i; 3 | cout << Map >(array, 3, 3, OuterStride<>(4)) << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_operatorNorm.cpp: -------------------------------------------------------------------------------- 1 | MatrixXd ones = MatrixXd::Ones(3,3); 2 | cout << "The operator norm of the 3x3 matrix of ones is " 3 | << ones.operatorNorm() << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Tutorial_range_for_loop_1d_cxx11.cpp: -------------------------------------------------------------------------------- 1 | VectorXi v = VectorXi::Random(4); 2 | cout << "Here is the vector v:\n"; 3 | for(auto x : v) cout << x << " "; 4 | cout << "\n"; 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/LuaTest.bat: -------------------------------------------------------------------------------- 1 | set buildtype=Release 2 | if "%1"=="-b" set buildtype=%2 3 | 4 | ..\%buildtype%\flatc.exe --lua -I include_test monster_test.fbs 5 | 6 | lua53.exe luatest.lua -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/arrays_test.bfbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/flatbuffers/tests/arrays_test.bfbs -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/monster_test.bfbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/flatbuffers/tests/monster_test.bfbs -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/c/c_api.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/c/c_api.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/c/common.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/c/common.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/weight_shared_between_convs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/weight_shared_between_convs.bin -------------------------------------------------------------------------------- /tensorflow/lite/experimental/tensorboard/README.md: -------------------------------------------------------------------------------- 1 | This folder contains basic modules to support TFLite plugin for TensorBoard. 2 | 3 | Warning: Everything in this directory is experimental and highly subject to 4 | changes. 5 | -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/images/landing-page/detect_crop_disease_in_africa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/images/landing-page/detect_crop_disease_in_africa.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/image_classification/images/android_banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/image_classification/images/android_banana.png -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/app/src/main/res/drawable-hdpi/ic_action_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/demo/app/src/main/res/drawable-hdpi/ic_action_info.png -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/app/src/main/res/drawable-mdpi/ic_action_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/demo/app/src/main/res/drawable-mdpi/ic_action_info.png -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/demo/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/demo/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/micro_speech/images/animation_on_arduino.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/micro/examples/micro_speech/images/animation_on_arduino.gif -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/micro_speech/images/model_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/micro/examples/micro_speech/images/model_architecture.png -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/templates/esp/main/CMakeLists.txt.tpl: -------------------------------------------------------------------------------- 1 | 2 | # 3 | # Main component of TF Micro project '%{EXECUTABLE}%'. 4 | # 5 | 6 | idf_component_register( 7 | SRCS %{MAIN_SRCS}% 8 | INCLUDE_DIRS "") 9 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/bench/btl/libs/tvmet/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | find_package(Tvmet) 3 | if (TVMET_FOUND) 4 | include_directories(${TVMET_INCLUDE_DIR}) 5 | btl_add_bench(btl_tvmet main.cpp OFF) 6 | endif () 7 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Cwise_product.cpp: -------------------------------------------------------------------------------- 1 | Array33i a = Array33i::Random(), b = Array33i::Random(); 2 | Array33i c = a * b; 3 | cout << "a:\n" << a << "\nb:\n" << b << "\nc:\n" << c << endl; 4 | 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/farmhash/dev/WRAPPERuint32tconstcharssizetlenuint32tseed: -------------------------------------------------------------------------------- 1 | void WRAPPER(const void* key, int len, uint32_t seed, void* out) { 2 | *(uint32_t*)out = FUNCTION((const char*)key, len, seed); 3 | } 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/farmhash/dev/WRAPPERuint32tconstcharssizetlenuint64tseed: -------------------------------------------------------------------------------- 1 | void WRAPPER(const void* key, int len, uint32_t seed, void* out) { 2 | *(uint32_t*)out = FUNCTION((const char*)key, len, seed); 3 | } 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/farmhash/dev/WRAPPERuint64tconstcharssizetlenuint64tseed: -------------------------------------------------------------------------------- 1 | void WRAPPER(const void* key, int len, uint32_t seed, void* out) { 2 | *(uint64_t*)out = FUNCTION((const char*)key, len, seed); 3 | } 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/docs/images/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/flatbuffers/docs/images/ftv2mnode.png -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/docs/images/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/flatbuffers/docs/images/ftv2pnode.png -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/monsterdata_test.mon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/flatbuffers/tests/monsterdata_test.mon -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/allocation.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/allocation.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/graph_info.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/graph_info.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/interpreter.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/interpreter.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/add.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/add.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/div.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/div.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/exp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/exp.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/if.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/if.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/mul.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/mul.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/neg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/neg.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/pad.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/pad.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/pow.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/pow.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/sub.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/sub.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/string_util.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/string_util.o -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/image_classification/images/device_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/image_classification/images/device_selection.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/object_detection/images/android_apple_banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/object_detection/images/android_apple_banana.png -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/app/src/main/res/drawable-xhdpi/ic_action_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/demo/app/src/main/res/drawable-xhdpi/ic_action_info.png -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/app/src/main/res/drawable-xxhdpi/ic_action_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/java/demo/app/src/main/res/drawable-xxhdpi/ic_action_info.png -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/hello_world/images/animation_on_STM32F746.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/micro/examples/hello_world/images/animation_on_STM32F746.gif -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_inverse.cpp: -------------------------------------------------------------------------------- 1 | Matrix3d m = Matrix3d::Random(); 2 | cout << "Here is the matrix m:" << endl << m << endl; 3 | cout << "Its inverse is:" << endl << m.inverse() << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/test/bug1213.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | 4 | template 5 | bool bug1213_2(const Eigen::Matrix& x); 6 | 7 | bool bug1213_1(const Eigen::Vector3f& x); 8 | 9 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/FlatBuffers.Test/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/fp16/jni/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH := $(call my-dir)/.. 2 | 3 | include $(CLEAR_VARS) 4 | LOCAL_MODULE := FP16 5 | LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include 6 | include $(BUILD_STATIC_LIBRARY) 7 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/arena_planner.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/arena_planner.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/core/subgraph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/core/subgraph.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/add_n.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/add_n.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/cast.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/cast.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/ceil.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/ceil.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/conv.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/conv.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/fill.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/fill.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/floor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/floor.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/lstm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/lstm.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/mfcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/mfcc.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/pack.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/pack.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/range.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/range.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/rank.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/rank.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/round.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/round.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/shape.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/shape.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/slice.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/slice.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/split.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/split.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/svdf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/svdf.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/tile.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/tile.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/where.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/where.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/while.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/while.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/model_builder.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/model_builder.o -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/image_classification/images/build_and_execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/image_classification/images/build_and_execute.png -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/models/image_classification/images/bundle_identifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/g3doc/models/image_classification/images/bundle_identifier.png -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/hello_world/images/animation_on_sparkfun_edge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/micro/examples/hello_world/images/animation_on_sparkfun_edge.gif -------------------------------------------------------------------------------- /tensorflow/lite/toco/logging/testdata/BUILD: -------------------------------------------------------------------------------- 1 | package( 2 | default_visibility = ["//tensorflow:internal"], 3 | licenses = ["notice"], # Apache 2.0 4 | ) 5 | 6 | exports_files(glob(["*.html"]) + glob(["*.pb"]) + glob(["*.dot"])) 7 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/bench/perf_monitoring/gemv_square_settings.txt: -------------------------------------------------------------------------------- 1 | 8 8 2 | 9 9 3 | 12 12 4 | 15 15 5 | 16 16 6 | 24 24 7 | 53 53 8 | 74 74 9 | 102 102 10 | 239 239 11 | 240 240 12 | 2400 2400 13 | 2463 2463 14 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/Eigen_Silly_Professor_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/eigen/doc/Eigen_Silly_Professor_64x64.png -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/DenseBase_LinSpaced_seq_deprecated.cpp: -------------------------------------------------------------------------------- 1 | cout << VectorXi::LinSpaced(Sequential,4,7,10).transpose() << endl; 2 | cout << VectorXd::LinSpaced(Sequential,5,0.0,1.0).transpose() << endl; 3 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/docs/images/fpl_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/flatbuffers/docs/images/fpl_logo_small.png -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/densify.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/densify.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/gather.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/gather.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/l2norm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/l2norm.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/logical.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/logical.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/one_hot.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/one_hot.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/pooling.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/pooling.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/quantize.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/quantize.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/reduce.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/reduce.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/register.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/register.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/reshape.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/reshape.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/reverse.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/reverse.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/rfft2d.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/rfft2d.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/select.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/select.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/split_v.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/split_v.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/squeeze.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/squeeze.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/topk_v2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/topk_v2.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/unique.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/unique.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/unpack.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/unpack.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/minimal_logging.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/minimal_logging.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/profiling/time.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/profiling/time.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/stderr_reporter.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/stderr_reporter.o -------------------------------------------------------------------------------- /tensorflow/lite/experimental/examples/lstm/g3doc/images/exported_tflite_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/experimental/examples/lstm/g3doc/images/exported_tflite_model.png -------------------------------------------------------------------------------- /tensorflow/lite/experimental/examples/unity/TensorFlowLitePlugin/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /tensorflow/lite/java/src/main/native/version_script.lds: -------------------------------------------------------------------------------- 1 | VERS_1.0 { 2 | # Export JNI symbols. 3 | global: 4 | Java_*; 5 | JNI_OnLoad; 6 | JNI_OnUnload; 7 | 8 | # Hide everything else. 9 | local: 10 | *; 11 | }; 12 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/hello_world/images/animation_on_arduino_mkrzero.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/micro/examples/hello_world/images/animation_on_arduino_mkrzero.gif -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/examples/make_circulant.cpp.entry: -------------------------------------------------------------------------------- 1 | template 2 | Circulant makeCirculant(const Eigen::MatrixBase& arg) 3 | { 4 | return Circulant(arg.derived()); 5 | } 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/go/struct.go: -------------------------------------------------------------------------------- 1 | package flatbuffers 2 | 3 | // Struct wraps a byte slice and provides read access to its data. 4 | // 5 | // Structs do not have a vtable. 6 | type Struct struct { 7 | Table 8 | } 9 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/monsterdata_python_wire.mon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/flatbuffers/tests/monsterdata_python_wire.mon -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/tests/phpUnionVectorTest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | ../flatc --php -o php union_vector/union_vector.fbs 6 | php phpUnionVectorTest.php 7 | 8 | echo 'PHP union vector test passed' 9 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/bin/benchmark_model_performance_options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/bin/benchmark_model_performance_options -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/basic_rnn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/basic_rnn.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/dequantize.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/dequantize.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/fake_quant.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/fake_quant.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/floor_div.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/floor_div.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/floor_mod.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/floor_mod.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/gather_nd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/gather_nd.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/lstm_eval.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/lstm_eval.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/mirror_pad.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/mirror_pad.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/scatter_nd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/scatter_nd.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/skip_gram.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/skip_gram.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/transpose.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/transpose.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/zeros_like.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/zeros_like.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/tools/tool_params.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/tools/tool_params.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/single_avg_pool_min_minus_5_max_plus_5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/single_avg_pool_min_minus_5_max_plus_5.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/single_conv_weights_min_0_max_plus_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/single_conv_weights_min_0_max_plus_10.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/single_softmax_min_minus_5_max_plus_5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/single_softmax_min_minus_5_max_plus_5.bin -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_cwiseProduct.cpp: -------------------------------------------------------------------------------- 1 | Matrix3i a = Matrix3i::Random(), b = Matrix3i::Random(); 2 | Matrix3i c = a.cwiseProduct(b); 3 | cout << "a:\n" << a << "\nb:\n" << b << "\nc:\n" << c << endl; 4 | 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/PartialRedux_sum.cpp: -------------------------------------------------------------------------------- 1 | Matrix3d m = Matrix3d::Random(); 2 | cout << "Here is the matrix m:" << endl << m << endl; 3 | cout << "Here is the sum of each row:" << endl << m.rowwise().sum() << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Tutorial_AdvancedInitialization_Block.cpp: -------------------------------------------------------------------------------- 1 | MatrixXf matA(2, 2); 2 | matA << 1, 2, 3, 4; 3 | MatrixXf matB(4, 4); 4 | matB << matA, matA/10, matA/10, matA; 5 | std::cout << matB << std::endl; 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/failtest/failtest_sanity_check.cpp: -------------------------------------------------------------------------------- 1 | #ifdef EIGEN_SHOULD_FAIL_TO_BUILD 2 | This is just some text that won't compile as a C++ file, as a basic sanity check for failtest. 3 | #else 4 | int main() {} 5 | #endif 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/farmhash/dev/WRAPPERuint32tconstcharssizetlenuint64tseed0uint64tseed1: -------------------------------------------------------------------------------- 1 | void WRAPPER(const void* key, int len, uint32_t seed, void* out) { 2 | *(uint32_t*)out = FUNCTION((const char*)key, len, 0, seed); 3 | } 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/farmhash/dev/WRAPPERuint64tconstcharssizetlenuint64tseed0uint64tseed1: -------------------------------------------------------------------------------- 1 | void WRAPPER(const void* key, int len, uint32_t seed, void* out) { 2 | *(uint64_t*)out = FUNCTION((const char*)key, len, 0, seed); 3 | } 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/fp16/include/fp16.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #ifndef FP16_H 3 | #define FP16_H 4 | 5 | #include 6 | 7 | #if defined(PSIMD_H) 8 | #include 9 | #endif 10 | 11 | #endif /* FP16_H */ 12 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/core/util/stats_calculator.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/core/util/stats_calculator.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/c/c_api_experimental.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/c/c_api_experimental.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/core/api/op_resolver.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/core/api/op_resolver.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/core/api/tensor_utils.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/core/api/tensor_utils.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/interpreter_builder.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/interpreter_builder.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/activations.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/activations.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/arg_min_max.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/arg_min_max.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/batch_matmul.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/batch_matmul.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/comparisons.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/comparisons.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/concatenation.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/concatenation.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/eigen_support.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/eigen_support.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/elementwise.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/elementwise.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/expand_dims.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/expand_dims.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/internal/mfcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/internal/mfcc.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/kernel_util.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/kernel_util.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/matrix_diag.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/matrix_diag.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/read_variable.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/read_variable.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/register_ref.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/register_ref.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/segment_sum.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/segment_sum.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/strided_slice.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/strided_slice.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/mutable_op_resolver.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/mutable_op_resolver.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/optional_debug_tools.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/optional_debug_tools.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/profiling/memory_info.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/profiling/memory_info.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/simple_memory_arena.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/simple_memory_arena.o -------------------------------------------------------------------------------- /tensorflow/core/util/tensor_bundle/testdata/old_string_tensors/foo.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/core/util/tensor_bundle/testdata/old_string_tensors/foo.data-00000-of-00001 -------------------------------------------------------------------------------- /tensorflow/lite/experimental/support/BUILD: -------------------------------------------------------------------------------- 1 | # This package contains TF Lite support libraries. 2 | licenses(["notice"]) # Apache 2.0 3 | 4 | package_group( 5 | name = "users", 6 | packages = ["//tensorflow/lite/experimental/support/..."], 7 | ) 8 | -------------------------------------------------------------------------------- /tensorflow/lite/toco/logging/testdata/toco_log_after.pb: -------------------------------------------------------------------------------- 1 | 2 | Conv1 3 | Conv2 4 | Dense 5 | Dense 6 | CustomOp 7 | AvgPool3D 8 | Softmax 9 | Softmax 10 | Conv2 11 | Conv1 12 | Dense 13 | CustomOp" 14 | AvgPool3DH -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/CET -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/EET -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/EST -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/GB -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/HST -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/MET -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/MST -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/NZ -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/PRC -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/ROC -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/ROK -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/WET -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/bench/btl/generic_bench/timers/STL_timer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/eigen/bench/btl/generic_bench/timers/STL_timer.hh -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/TopicResizing.dox: -------------------------------------------------------------------------------- 1 | namespace Eigen { 2 | 3 | /** \page TopicResizing Resizing 4 | 5 | 6 | TODO: write this dox page! 7 | 8 | Is linked from the tutorial on the Matrix class. 9 | 10 | */ 11 | } 12 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/examples/make_circulant.cpp.main: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | Eigen::VectorXd vec(4); 4 | vec << 1, 2, 4, 8; 5 | Eigen::MatrixXd mat; 6 | mat = makeCirculant(vec); 7 | std::cout << mat << std::endl; 8 | } 9 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_eigenvalues.cpp: -------------------------------------------------------------------------------- 1 | MatrixXd ones = MatrixXd::Ones(3,3); 2 | VectorXcd eivals = ones.eigenvalues(); 3 | cout << "The eigenvalues of the 3x3 matrix of ones are:" << endl << eivals << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_prod.cpp: -------------------------------------------------------------------------------- 1 | Matrix3d m = Matrix3d::Random(); 2 | cout << "Here is the matrix m:" << endl << m << endl; 3 | cout << "Here is the product of all the coefficients:" << endl << m.prod() << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/PartialRedux_norm.cpp: -------------------------------------------------------------------------------- 1 | Matrix3d m = Matrix3d::Random(); 2 | cout << "Here is the matrix m:" << endl << m << endl; 3 | cout << "Here is the norm of each column:" << endl << m.colwise().norm() << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/PartialRedux_prod.cpp: -------------------------------------------------------------------------------- 1 | Matrix3d m = Matrix3d::Random(); 2 | cout << "Here is the matrix m:" << endl << m << endl; 3 | cout << "Here is the product of each row:" << endl << m.rowwise().prod() << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/SelfAdjointView_operatorNorm.cpp: -------------------------------------------------------------------------------- 1 | MatrixXd ones = MatrixXd::Ones(3,3); 2 | cout << "The operator norm of the 3x3 matrix of ones is " 3 | << ones.selfadjointView().operatorNorm() << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/ruy/ruy/ruy_test_ext.oss.bzl: -------------------------------------------------------------------------------- 1 | """Allows to specialize the ruy BUILD to availability of external libraries""" 2 | 3 | def ruy_test_ext_defines(): 4 | return [] 5 | 6 | def ruy_test_ext_deps(): 7 | return [] 8 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/core/api/error_reporter.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/core/api/error_reporter.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/assign_variable.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/assign_variable.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/depth_to_space.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/depth_to_space.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/depthwise_conv.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/depthwise_conv.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/fully_connected.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/fully_connected.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/lsh_projection.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/lsh_projection.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/matrix_set_diag.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/matrix_set_diag.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/maximum_minimum.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/maximum_minimum.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/numeric_verify.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/numeric_verify.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/resize_bilinear.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/resize_bilinear.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/space_to_depth.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/space_to_depth.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/sparse_to_dense.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/sparse_to_dense.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/transpose_conv.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/transpose_conv.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/minimal_logging_default.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/minimal_logging_default.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/tools/evaluation/utils.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/tools/evaluation/utils.o -------------------------------------------------------------------------------- /tensorflow/lite/delegates/flex/java/src/main/java/org/tensorflow/lite/flex/BUILD: -------------------------------------------------------------------------------- 1 | licenses(["notice"]) # Apache 2.0 2 | 3 | filegroup( 4 | name = "flex_delegate", 5 | srcs = ["FlexDelegate.java"], 6 | visibility = ["//visibility:public"], 7 | ) 8 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Cuba -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Egypt -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Eire -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Iran -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Israel -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Japan -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Libya -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Navajo -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Poland -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Turkey -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/W-SU -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/CTestCustom.cmake.in: -------------------------------------------------------------------------------- 1 | 2 | set(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS "2000") 3 | set(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS "2000") 4 | list(APPEND CTEST_CUSTOM_ERROR_EXCEPTION @EIGEN_CTEST_ERROR_EXCEPTION@) 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/bench/btl/generic_bench/utils/size_lin_log.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/eigen/bench/btl/generic_bench/utils/size_lin_log.hh -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/bench/perf_monitoring/gemm_square_settings.txt: -------------------------------------------------------------------------------- 1 | 8 8 8 2 | 9 9 9 3 | 12 12 12 4 | 15 15 15 5 | 16 16 16 6 | 24 24 24 7 | 102 102 102 8 | 239 239 239 9 | 240 240 240 10 | 2400 2400 2400 11 | 2463 2463 2463 12 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Map_general_stride.cpp: -------------------------------------------------------------------------------- 1 | int array[24]; 2 | for(int i = 0; i < 24; ++i) array[i] = i; 3 | cout << Map > 4 | (array, 3, 3, Stride(8, 2)) 5 | << endl; 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_adjoint.cpp: -------------------------------------------------------------------------------- 1 | Matrix2cf m = Matrix2cf::Random(); 2 | cout << "Here is the 2x2 complex matrix m:" << endl << m << endl; 3 | cout << "Here is the adjoint of m:" << endl << m.adjoint() << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_reshaped_int_int.cpp: -------------------------------------------------------------------------------- 1 | Matrix4i m = Matrix4i::Random(); 2 | cout << "Here is the matrix m:" << endl << m << endl; 3 | cout << "Here is m.reshaped(2, 8):" << endl << m.reshaped(2, 8) << endl; 4 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Matrix_Map_stride.cpp: -------------------------------------------------------------------------------- 1 | Matrix4i A; 2 | A << 1, 2, 3, 4, 3 | 5, 6, 7, 8, 4 | 9, 10, 11, 12, 5 | 13, 14, 15, 16; 6 | 7 | std::cout << Matrix2i::Map(&A(1,1),Stride<8,2>()) << std::endl; 8 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Slicing_arrayexpr.cpp: -------------------------------------------------------------------------------- 1 | ArrayXi ind(5); ind<<4,2,5,5,3; 2 | MatrixXi A = MatrixXi::Random(4,6); 3 | cout << "Initial matrix A:\n" << A << "\n\n"; 4 | cout << "A(all,ind-1):\n" << A(all,ind-1) << "\n\n"; 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Slicing_stdvector_cxx11.cpp: -------------------------------------------------------------------------------- 1 | std::vector ind{4,2,5,5,3}; 2 | MatrixXi A = MatrixXi::Random(4,6); 3 | cout << "Initial matrix A:\n" << A << "\n\n"; 4 | cout << "A(all,ind):\n" << A(all,ind) << "\n\n"; 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp: -------------------------------------------------------------------------------- 1 | Matrix2i A = Matrix2i::Random(); 2 | cout << "Here are the coeffs of the 2x2 matrix A:\n"; 3 | for(auto x : A.reshaped()) 4 | cout << x << " "; 5 | cout << "\n"; 6 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/Tutorial_solve_matrix_inverse.cpp: -------------------------------------------------------------------------------- 1 | Matrix3f A; 2 | Vector3f b; 3 | A << 1,2,3, 4,5,6, 7,8,10; 4 | b << 3, 3, 4; 5 | Vector3f x = A.inverse() * b; 6 | cout << "The solution is:" << endl << x << endl; 7 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/examples/minimal/minimal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/examples/minimal/minimal.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/audio_spectrogram.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/audio_spectrogram.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/batch_to_space_nd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/batch_to_space_nd.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/embedding_lookup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/embedding_lookup.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/hashtable_lookup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/hashtable_lookup.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/internal/mfcc_dct.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/internal/mfcc_dct.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/reverse_sequence.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/reverse_sequence.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/space_to_batch_nd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/space_to_batch_nd.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/squared_difference.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/squared_difference.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/mmap_allocation_disabled.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/mmap_allocation_disabled.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/tools/command_line_flags.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/tools/command_line_flags.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/testdata/single_conv_weights_min_minus_127_max_plus_127.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/optimize/testdata/single_conv_weights_min_minus_127_max_plus_127.bin -------------------------------------------------------------------------------- /tensorflow/lite/experimental/delegates/testdata/README.txt: -------------------------------------------------------------------------------- 1 | posenet_mobilenet_v1_100_257x257_multi_kpt_stripped.tflite: downloaded from https://storage.googleapis.com/download.tensorflow.org/models/tflite/posenet_mobilenet_v1_100_257x257_multi_kpt_stripped.tflite 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/CST6CDT -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/EST5EDT -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/GB-Eire -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Hongkong -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Iceland -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Jamaica -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/MST7MDT -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/NZ-CHAT -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/PST8PDT -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Portugal -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/US/Samoa -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/blas/README.txt: -------------------------------------------------------------------------------- 1 | 2 | This directory contains a BLAS library built on top of Eigen. 3 | 4 | This module is not built by default. In order to compile it, you need to 5 | type 'make blas' from within your build dir. 6 | 7 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/cmake/UseEigen3.cmake: -------------------------------------------------------------------------------- 1 | # -*- cmake -*- 2 | # 3 | # UseEigen3.cmake 4 | 5 | add_definitions ( ${EIGEN3_DEFINITIONS} ) 6 | include_directories ( ${EIGEN3_INCLUDE_DIRS} ) 7 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/LeastSquaresQR.cpp: -------------------------------------------------------------------------------- 1 | MatrixXf A = MatrixXf::Random(3, 2); 2 | VectorXf b = VectorXf::Random(3); 3 | cout << "The solution using the QR decomposition is:\n" 4 | << A.colPivHouseholderQr().solve(b) << endl; 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_replicate.cpp: -------------------------------------------------------------------------------- 1 | MatrixXi m = MatrixXi::Random(2,3); 2 | cout << "Here is the matrix m:" << endl << m << endl; 3 | cout << "m.replicate<3,2>() = ..." << endl; 4 | cout << m.replicate<3,2>() << endl; 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/eigen/doc/snippets/MatrixBase_replicate_int_int.cpp: -------------------------------------------------------------------------------- 1 | Vector3i v = Vector3i::Random(); 2 | cout << "Here is the vector v:" << endl << v << endl; 3 | cout << "v.replicate(2,5) = ..." << endl; 4 | cout << v.replicate(2,5) << endl; 5 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/external_cpu_backend_context.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/external_cpu_backend_context.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/cpu_backend_context.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/cpu_backend_context.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/internal/spectrogram.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/internal/spectrogram.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/local_response_norm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/local_response_norm.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/non_max_suppression.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/kernels/non_max_suppression.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/profiling/platform_profiler.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/profiling/platform_profiler.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/profiling/profile_summarizer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/profiling/profile_summarizer.o -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/tflite_with_xnnpack_optional.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/gen/osx_x86_64/obj/tensorflow/lite/tflite_with_xnnpack_optional.o -------------------------------------------------------------------------------- /tensorflow/lite/experimental/examples/unity/TensorFlowLitePlugin/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | -------------------------------------------------------------------------------- /tensorflow/lite/java/gpu_version_script.lds: -------------------------------------------------------------------------------- 1 | VERS_1.0 { 2 | # Export JNI and native C symbols. 3 | global: 4 | Java_*; 5 | JNI_OnLoad; 6 | JNI_OnUnload; 7 | TfLiteGpu*; 8 | 9 | # Hide everything else. 10 | local: 11 | *; 12 | }; 13 | -------------------------------------------------------------------------------- /tensorflow/lite/java/tflite_version_script.lds: -------------------------------------------------------------------------------- 1 | VERS_1.0 { 2 | # Export JNI and native C symbols. 3 | global: 4 | Java_*; 5 | JNI_OnLoad; 6 | JNI_OnUnload; 7 | TfLite*; 8 | 9 | # Hide everything else. 10 | local: 11 | *; 12 | }; 13 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Juba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Juba -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Lome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Lome -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aden -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Almaty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Almaty -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Amman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Amman -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Anadyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Anadyr -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aqtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aqtau -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aqtobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aqtobe -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Atyrau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Atyrau -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Baku -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Beirut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Beirut -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Brunei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Brunei -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Chita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Chita -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dacca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dacca -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dhaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dhaka -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dili -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dubai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dubai -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Gaza -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Harbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Harbin -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Hebron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Hebron -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Hovd -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kabul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kabul -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kuwait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kuwait -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Macao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Macao -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Macau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Macau -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Manila: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Manila -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Muscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Muscat -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Omsk -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Oral -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Qatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Qatar -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Riyadh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Riyadh -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Saigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Saigon -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Seoul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Seoul -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Taipei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Taipei -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tehran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tehran -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Thimbu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Thimbu -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tokyo -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tomsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tomsk -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Urumqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milinddeore/TfLite-Standalone-build-Linux-MacOS/HEAD/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Urumqi --------------------------------------------------------------------------------