├── Android.mk ├── Application.mk ├── README.md ├── eigen3 ├── BUILD ├── Eigen │ ├── Cholesky │ ├── Core │ ├── Eigenvalues │ ├── LU │ ├── QR │ └── SVD ├── LICENSE └── unsupported │ └── Eigen │ ├── CXX11 │ ├── Core │ ├── FixedPoint │ ├── NeuralNetworks │ ├── Tensor │ ├── ThreadPool │ └── src │ │ ├── FixedPoint │ │ ├── FixedPointTypes.h │ │ ├── MatMatProduct.h │ │ ├── MatMatProductAVX2.h │ │ ├── MatMatProductNEON.h │ │ ├── MatVecProduct.h │ │ ├── PacketMathAVX2.h │ │ ├── PacketMathAVX512.h │ │ ├── TypeCastingAVX2.h │ │ └── TypeCastingAVX512.h │ │ └── NeuralNetworks │ │ ├── Activations.h │ │ ├── Attention.h │ │ ├── BackwardCuboidConvolutions.h │ │ ├── BackwardSpatialConvolutions.h │ │ ├── CuboidConvolution.h │ │ ├── Patch3d.h │ │ ├── Pooling.h │ │ ├── SoftMax.h │ │ ├── SpatialConvolutions.h │ │ └── TensorConvolutionByFFT.h │ ├── MatrixFunctions │ └── SpecialFunctions ├── include ├── tensorflow │ └── contrib │ │ └── lite │ │ ├── BUILD │ │ ├── Makefile │ │ ├── README.md │ │ ├── allocation.cc │ │ ├── allocation.h │ │ ├── arena_planner.cc │ │ ├── arena_planner.h │ │ ├── build_def.bzl │ │ ├── build_ios_universal_lib.sh │ │ ├── build_rpi_lib.sh │ │ ├── builtin_op_data.h │ │ ├── builtin_ops.h │ │ ├── context.c │ │ ├── context.h │ │ ├── download_dependencies.sh │ │ ├── downloads │ │ ├── absl │ │ │ ├── .clang-format │ │ │ ├── .gitignore │ │ │ ├── ABSEIL_ISSUE_TEMPLATE.md │ │ │ ├── AUTHORS │ │ │ ├── CMake │ │ │ │ ├── AbseilHelpers.cmake │ │ │ │ └── README.md │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── WORKSPACE │ │ │ └── absl │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── algorithm │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── algorithm.h │ │ │ │ ├── algorithm_test.cc │ │ │ │ ├── container.h │ │ │ │ └── container_test.cc │ │ │ │ ├── base │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── attributes.h │ │ │ │ ├── bit_cast_test.cc │ │ │ │ ├── call_once.h │ │ │ │ ├── call_once_test.cc │ │ │ │ ├── casts.h │ │ │ │ ├── config.h │ │ │ │ ├── config_test.cc │ │ │ │ ├── dynamic_annotations.cc │ │ │ │ ├── dynamic_annotations.h │ │ │ │ ├── exception_safety_testing_test.cc │ │ │ │ ├── inline_variable_test.cc │ │ │ │ ├── inline_variable_test_a.cc │ │ │ │ ├── inline_variable_test_b.cc │ │ │ │ ├── internal │ │ │ │ │ ├── atomic_hook.h │ │ │ │ │ ├── cycleclock.cc │ │ │ │ │ ├── cycleclock.h │ │ │ │ │ ├── direct_mmap.h │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── endian_test.cc │ │ │ │ │ ├── exception_safety_testing.cc │ │ │ │ │ ├── exception_safety_testing.h │ │ │ │ │ ├── exception_testing.h │ │ │ │ │ ├── identity.h │ │ │ │ │ ├── inline_variable.h │ │ │ │ │ ├── inline_variable_testing.h │ │ │ │ │ ├── invoke.h │ │ │ │ │ ├── low_level_alloc.cc │ │ │ │ │ ├── low_level_alloc.h │ │ │ │ │ ├── low_level_alloc_test.cc │ │ │ │ │ ├── low_level_scheduling.h │ │ │ │ │ ├── per_thread_tls.h │ │ │ │ │ ├── pretty_function.h │ │ │ │ │ ├── raw_logging.cc │ │ │ │ │ ├── raw_logging.h │ │ │ │ │ ├── scheduling_mode.h │ │ │ │ │ ├── spinlock.cc │ │ │ │ │ ├── spinlock.h │ │ │ │ │ ├── spinlock_akaros.inc │ │ │ │ │ ├── spinlock_posix.inc │ │ │ │ │ ├── spinlock_wait.cc │ │ │ │ │ ├── spinlock_wait.h │ │ │ │ │ ├── spinlock_win32.inc │ │ │ │ │ ├── sysinfo.cc │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ ├── sysinfo_test.cc │ │ │ │ │ ├── thread_identity.cc │ │ │ │ │ ├── thread_identity.h │ │ │ │ │ ├── thread_identity_test.cc │ │ │ │ │ ├── throw_delegate.cc │ │ │ │ │ ├── throw_delegate.h │ │ │ │ │ ├── tsan_mutex_interface.h │ │ │ │ │ ├── unaligned_access.h │ │ │ │ │ ├── unscaledcycleclock.cc │ │ │ │ │ └── unscaledcycleclock.h │ │ │ │ ├── invoke_test.cc │ │ │ │ ├── log_severity.h │ │ │ │ ├── macros.h │ │ │ │ ├── optimization.h │ │ │ │ ├── policy_checks.h │ │ │ │ ├── port.h │ │ │ │ ├── raw_logging_test.cc │ │ │ │ ├── spinlock_test_common.cc │ │ │ │ ├── thread_annotations.h │ │ │ │ └── throw_delegate_test.cc │ │ │ │ ├── container │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── fixed_array.h │ │ │ │ ├── fixed_array_test.cc │ │ │ │ ├── inlined_vector.h │ │ │ │ ├── inlined_vector_test.cc │ │ │ │ └── internal │ │ │ │ │ ├── test_instance_tracker.cc │ │ │ │ │ ├── test_instance_tracker.h │ │ │ │ │ └── test_instance_tracker_test.cc │ │ │ │ ├── copts.bzl │ │ │ │ ├── debugging │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── failure_signal_handler.cc │ │ │ │ ├── failure_signal_handler.h │ │ │ │ ├── failure_signal_handler_test.cc │ │ │ │ ├── internal │ │ │ │ │ ├── address_is_readable.cc │ │ │ │ │ ├── address_is_readable.h │ │ │ │ │ ├── demangle.cc │ │ │ │ │ ├── demangle.h │ │ │ │ │ ├── demangle_test.cc │ │ │ │ │ ├── elf_mem_image.cc │ │ │ │ │ ├── elf_mem_image.h │ │ │ │ │ ├── examine_stack.cc │ │ │ │ │ ├── examine_stack.h │ │ │ │ │ ├── stack_consumption.cc │ │ │ │ │ ├── stack_consumption.h │ │ │ │ │ ├── stack_consumption_test.cc │ │ │ │ │ ├── stacktrace_aarch64-inl.inc │ │ │ │ │ ├── stacktrace_arm-inl.inc │ │ │ │ │ ├── stacktrace_config.h │ │ │ │ │ ├── stacktrace_generic-inl.inc │ │ │ │ │ ├── stacktrace_powerpc-inl.inc │ │ │ │ │ ├── stacktrace_unimplemented-inl.inc │ │ │ │ │ ├── stacktrace_win32-inl.inc │ │ │ │ │ ├── stacktrace_x86-inl.inc │ │ │ │ │ ├── symbolize.h │ │ │ │ │ ├── vdso_support.cc │ │ │ │ │ └── vdso_support.h │ │ │ │ ├── leak_check.cc │ │ │ │ ├── leak_check.h │ │ │ │ ├── leak_check_disable.cc │ │ │ │ ├── leak_check_fail_test.cc │ │ │ │ ├── leak_check_test.cc │ │ │ │ ├── stacktrace.cc │ │ │ │ ├── stacktrace.h │ │ │ │ ├── symbolize.cc │ │ │ │ ├── symbolize.h │ │ │ │ ├── symbolize_elf.inc │ │ │ │ ├── symbolize_test.cc │ │ │ │ ├── symbolize_unimplemented.inc │ │ │ │ └── symbolize_win32.inc │ │ │ │ ├── memory │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── memory.h │ │ │ │ └── memory_test.cc │ │ │ │ ├── meta │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── type_traits.h │ │ │ │ └── type_traits_test.cc │ │ │ │ ├── numeric │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── int128.cc │ │ │ │ ├── int128.h │ │ │ │ ├── int128_have_intrinsic.inc │ │ │ │ ├── int128_no_intrinsic.inc │ │ │ │ ├── int128_stream_test.cc │ │ │ │ └── int128_test.cc │ │ │ │ ├── strings │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ascii.cc │ │ │ │ ├── ascii.h │ │ │ │ ├── ascii_test.cc │ │ │ │ ├── escaping.cc │ │ │ │ ├── escaping.h │ │ │ │ ├── escaping_test.cc │ │ │ │ ├── internal │ │ │ │ │ ├── char_map.h │ │ │ │ │ ├── char_map_test.cc │ │ │ │ │ ├── escaping_test_common.inc │ │ │ │ │ ├── memutil.cc │ │ │ │ │ ├── memutil.h │ │ │ │ │ ├── memutil_test.cc │ │ │ │ │ ├── numbers_test_common.inc │ │ │ │ │ ├── ostringstream.cc │ │ │ │ │ ├── ostringstream.h │ │ │ │ │ ├── ostringstream_test.cc │ │ │ │ │ ├── resize_uninitialized.h │ │ │ │ │ ├── resize_uninitialized_test.cc │ │ │ │ │ ├── stl_type_traits.h │ │ │ │ │ ├── str_join_internal.h │ │ │ │ │ ├── str_split_internal.h │ │ │ │ │ ├── utf8.cc │ │ │ │ │ ├── utf8.h │ │ │ │ │ └── utf8_test.cc │ │ │ │ ├── match.cc │ │ │ │ ├── match.h │ │ │ │ ├── match_test.cc │ │ │ │ ├── numbers.cc │ │ │ │ ├── numbers.h │ │ │ │ ├── numbers_test.cc │ │ │ │ ├── str_cat.cc │ │ │ │ ├── str_cat.h │ │ │ │ ├── str_cat_test.cc │ │ │ │ ├── str_join.h │ │ │ │ ├── str_join_test.cc │ │ │ │ ├── str_replace.cc │ │ │ │ ├── str_replace.h │ │ │ │ ├── str_replace_test.cc │ │ │ │ ├── str_split.cc │ │ │ │ ├── str_split.h │ │ │ │ ├── str_split_test.cc │ │ │ │ ├── string_view.cc │ │ │ │ ├── string_view.h │ │ │ │ ├── string_view_test.cc │ │ │ │ ├── strip.h │ │ │ │ ├── strip_test.cc │ │ │ │ ├── substitute.cc │ │ │ │ ├── substitute.h │ │ │ │ ├── substitute_test.cc │ │ │ │ └── testdata │ │ │ │ │ ├── getline-1.txt │ │ │ │ │ └── getline-2.txt │ │ │ │ ├── synchronization │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── barrier.cc │ │ │ │ ├── barrier.h │ │ │ │ ├── barrier_test.cc │ │ │ │ ├── blocking_counter.cc │ │ │ │ ├── blocking_counter.h │ │ │ │ ├── blocking_counter_test.cc │ │ │ │ ├── internal │ │ │ │ │ ├── create_thread_identity.cc │ │ │ │ │ ├── create_thread_identity.h │ │ │ │ │ ├── graphcycles.cc │ │ │ │ │ ├── graphcycles.h │ │ │ │ │ ├── graphcycles_test.cc │ │ │ │ │ ├── kernel_timeout.h │ │ │ │ │ ├── mutex_nonprod.cc │ │ │ │ │ ├── mutex_nonprod.inc │ │ │ │ │ ├── per_thread_sem.cc │ │ │ │ │ ├── per_thread_sem.h │ │ │ │ │ ├── per_thread_sem_test.cc │ │ │ │ │ ├── thread_pool.h │ │ │ │ │ ├── waiter.cc │ │ │ │ │ └── waiter.h │ │ │ │ ├── lifetime_test.cc │ │ │ │ ├── mutex.cc │ │ │ │ ├── mutex.h │ │ │ │ ├── mutex_test.cc │ │ │ │ ├── notification.cc │ │ │ │ ├── notification.h │ │ │ │ └── notification_test.cc │ │ │ │ ├── time │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── clock.cc │ │ │ │ ├── clock.h │ │ │ │ ├── clock_test.cc │ │ │ │ ├── duration.cc │ │ │ │ ├── duration_test.cc │ │ │ │ ├── format.cc │ │ │ │ ├── format_test.cc │ │ │ │ ├── internal │ │ │ │ │ ├── cctz │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ └── cctz │ │ │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ │ │ │ ├── time_zone.h │ │ │ │ │ │ │ │ └── zone_info_source.h │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── civil_time_detail.cc │ │ │ │ │ │ │ ├── civil_time_test.cc │ │ │ │ │ │ │ ├── time_zone_fixed.cc │ │ │ │ │ │ │ ├── time_zone_fixed.h │ │ │ │ │ │ │ ├── time_zone_format.cc │ │ │ │ │ │ │ ├── time_zone_format_test.cc │ │ │ │ │ │ │ ├── time_zone_if.cc │ │ │ │ │ │ │ ├── time_zone_if.h │ │ │ │ │ │ │ ├── time_zone_impl.cc │ │ │ │ │ │ │ ├── time_zone_impl.h │ │ │ │ │ │ │ ├── time_zone_info.cc │ │ │ │ │ │ │ ├── time_zone_info.h │ │ │ │ │ │ │ ├── time_zone_libc.cc │ │ │ │ │ │ │ ├── time_zone_libc.h │ │ │ │ │ │ │ ├── time_zone_lookup.cc │ │ │ │ │ │ │ ├── time_zone_lookup_test.cc │ │ │ │ │ │ │ ├── time_zone_posix.cc │ │ │ │ │ │ │ ├── time_zone_posix.h │ │ │ │ │ │ │ ├── tzfile.h │ │ │ │ │ │ │ └── zone_info_source.cc │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ ├── README.zoneinfo │ │ │ │ │ │ │ ├── version │ │ │ │ │ │ │ └── zoneinfo │ │ │ │ │ │ │ ├── Africa │ │ │ │ │ │ │ ├── Abidjan │ │ │ │ │ │ │ ├── Accra │ │ │ │ │ │ │ ├── Addis_Ababa │ │ │ │ │ │ │ ├── Algiers │ │ │ │ │ │ │ ├── Asmara │ │ │ │ │ │ │ ├── Asmera │ │ │ │ │ │ │ ├── Bamako │ │ │ │ │ │ │ ├── Bangui │ │ │ │ │ │ │ ├── Banjul │ │ │ │ │ │ │ ├── Bissau │ │ │ │ │ │ │ ├── Blantyre │ │ │ │ │ │ │ ├── Brazzaville │ │ │ │ │ │ │ ├── Bujumbura │ │ │ │ │ │ │ ├── Cairo │ │ │ │ │ │ │ ├── Casablanca │ │ │ │ │ │ │ ├── Ceuta │ │ │ │ │ │ │ ├── Conakry │ │ │ │ │ │ │ ├── Dakar │ │ │ │ │ │ │ ├── Dar_es_Salaam │ │ │ │ │ │ │ ├── Djibouti │ │ │ │ │ │ │ ├── Douala │ │ │ │ │ │ │ ├── El_Aaiun │ │ │ │ │ │ │ ├── Freetown │ │ │ │ │ │ │ ├── Gaborone │ │ │ │ │ │ │ ├── Harare │ │ │ │ │ │ │ ├── Johannesburg │ │ │ │ │ │ │ ├── Juba │ │ │ │ │ │ │ ├── Kampala │ │ │ │ │ │ │ ├── Khartoum │ │ │ │ │ │ │ ├── Kigali │ │ │ │ │ │ │ ├── Kinshasa │ │ │ │ │ │ │ ├── Lagos │ │ │ │ │ │ │ ├── Libreville │ │ │ │ │ │ │ ├── Lome │ │ │ │ │ │ │ ├── Luanda │ │ │ │ │ │ │ ├── Lubumbashi │ │ │ │ │ │ │ ├── Lusaka │ │ │ │ │ │ │ ├── Malabo │ │ │ │ │ │ │ ├── Maputo │ │ │ │ │ │ │ ├── Maseru │ │ │ │ │ │ │ ├── Mbabane │ │ │ │ │ │ │ ├── Mogadishu │ │ │ │ │ │ │ ├── Monrovia │ │ │ │ │ │ │ ├── Nairobi │ │ │ │ │ │ │ ├── Ndjamena │ │ │ │ │ │ │ ├── Niamey │ │ │ │ │ │ │ ├── Nouakchott │ │ │ │ │ │ │ ├── Ouagadougou │ │ │ │ │ │ │ ├── Porto-Novo │ │ │ │ │ │ │ ├── Sao_Tome │ │ │ │ │ │ │ ├── Timbuktu │ │ │ │ │ │ │ ├── Tripoli │ │ │ │ │ │ │ ├── Tunis │ │ │ │ │ │ │ └── Windhoek │ │ │ │ │ │ │ ├── America │ │ │ │ │ │ │ ├── Adak │ │ │ │ │ │ │ ├── Anchorage │ │ │ │ │ │ │ ├── Anguilla │ │ │ │ │ │ │ ├── Antigua │ │ │ │ │ │ │ ├── Araguaina │ │ │ │ │ │ │ ├── Argentina │ │ │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ │ │ ├── La_Rioja │ │ │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ │ │ │ ├── Salta │ │ │ │ │ │ │ │ ├── San_Juan │ │ │ │ │ │ │ │ ├── San_Luis │ │ │ │ │ │ │ │ ├── Tucuman │ │ │ │ │ │ │ │ └── Ushuaia │ │ │ │ │ │ │ ├── Aruba │ │ │ │ │ │ │ ├── Asuncion │ │ │ │ │ │ │ ├── Atikokan │ │ │ │ │ │ │ ├── Atka │ │ │ │ │ │ │ ├── Bahia │ │ │ │ │ │ │ ├── Bahia_Banderas │ │ │ │ │ │ │ ├── Barbados │ │ │ │ │ │ │ ├── Belem │ │ │ │ │ │ │ ├── Belize │ │ │ │ │ │ │ ├── Blanc-Sablon │ │ │ │ │ │ │ ├── Boa_Vista │ │ │ │ │ │ │ ├── Bogota │ │ │ │ │ │ │ ├── Boise │ │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ │ ├── Cambridge_Bay │ │ │ │ │ │ │ ├── Campo_Grande │ │ │ │ │ │ │ ├── Cancun │ │ │ │ │ │ │ ├── Caracas │ │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ │ ├── Cayenne │ │ │ │ │ │ │ ├── Cayman │ │ │ │ │ │ │ ├── Chicago │ │ │ │ │ │ │ ├── Chihuahua │ │ │ │ │ │ │ ├── Coral_Harbour │ │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ │ ├── Costa_Rica │ │ │ │ │ │ │ ├── Creston │ │ │ │ │ │ │ ├── Cuiaba │ │ │ │ │ │ │ ├── Curacao │ │ │ │ │ │ │ ├── Danmarkshavn │ │ │ │ │ │ │ ├── Dawson │ │ │ │ │ │ │ ├── Dawson_Creek │ │ │ │ │ │ │ ├── Denver │ │ │ │ │ │ │ ├── Detroit │ │ │ │ │ │ │ ├── Dominica │ │ │ │ │ │ │ ├── Edmonton │ │ │ │ │ │ │ ├── Eirunepe │ │ │ │ │ │ │ ├── El_Salvador │ │ │ │ │ │ │ ├── Ensenada │ │ │ │ │ │ │ ├── Fort_Nelson │ │ │ │ │ │ │ ├── Fort_Wayne │ │ │ │ │ │ │ ├── Fortaleza │ │ │ │ │ │ │ ├── Glace_Bay │ │ │ │ │ │ │ ├── Godthab │ │ │ │ │ │ │ ├── Goose_Bay │ │ │ │ │ │ │ ├── Grand_Turk │ │ │ │ │ │ │ ├── Grenada │ │ │ │ │ │ │ ├── Guadeloupe │ │ │ │ │ │ │ ├── Guatemala │ │ │ │ │ │ │ ├── Guayaquil │ │ │ │ │ │ │ ├── Guyana │ │ │ │ │ │ │ ├── Halifax │ │ │ │ │ │ │ ├── Havana │ │ │ │ │ │ │ ├── Hermosillo │ │ │ │ │ │ │ ├── Indiana │ │ │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ │ │ ├── Knox │ │ │ │ │ │ │ │ ├── Marengo │ │ │ │ │ │ │ │ ├── Petersburg │ │ │ │ │ │ │ │ ├── Tell_City │ │ │ │ │ │ │ │ ├── Vevay │ │ │ │ │ │ │ │ ├── Vincennes │ │ │ │ │ │ │ │ └── Winamac │ │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ │ ├── Inuvik │ │ │ │ │ │ │ ├── Iqaluit │ │ │ │ │ │ │ ├── Jamaica │ │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ │ ├── Juneau │ │ │ │ │ │ │ ├── Kentucky │ │ │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ │ │ └── Monticello │ │ │ │ │ │ │ ├── Knox_IN │ │ │ │ │ │ │ ├── Kralendijk │ │ │ │ │ │ │ ├── La_Paz │ │ │ │ │ │ │ ├── Lima │ │ │ │ │ │ │ ├── Los_Angeles │ │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ │ ├── Lower_Princes │ │ │ │ │ │ │ ├── Maceio │ │ │ │ │ │ │ ├── Managua │ │ │ │ │ │ │ ├── Manaus │ │ │ │ │ │ │ ├── Marigot │ │ │ │ │ │ │ ├── Martinique │ │ │ │ │ │ │ ├── Matamoros │ │ │ │ │ │ │ ├── Mazatlan │ │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ │ ├── Menominee │ │ │ │ │ │ │ ├── Merida │ │ │ │ │ │ │ ├── Metlakatla │ │ │ │ │ │ │ ├── Mexico_City │ │ │ │ │ │ │ ├── Miquelon │ │ │ │ │ │ │ ├── Moncton │ │ │ │ │ │ │ ├── Monterrey │ │ │ │ │ │ │ ├── Montevideo │ │ │ │ │ │ │ ├── Montreal │ │ │ │ │ │ │ ├── Montserrat │ │ │ │ │ │ │ ├── Nassau │ │ │ │ │ │ │ ├── New_York │ │ │ │ │ │ │ ├── Nipigon │ │ │ │ │ │ │ ├── Nome │ │ │ │ │ │ │ ├── Noronha │ │ │ │ │ │ │ ├── North_Dakota │ │ │ │ │ │ │ │ ├── Beulah │ │ │ │ │ │ │ │ ├── Center │ │ │ │ │ │ │ │ └── New_Salem │ │ │ │ │ │ │ ├── Ojinaga │ │ │ │ │ │ │ ├── Panama │ │ │ │ │ │ │ ├── Pangnirtung │ │ │ │ │ │ │ ├── Paramaribo │ │ │ │ │ │ │ ├── Phoenix │ │ │ │ │ │ │ ├── Port-au-Prince │ │ │ │ │ │ │ ├── Port_of_Spain │ │ │ │ │ │ │ ├── Porto_Acre │ │ │ │ │ │ │ ├── Porto_Velho │ │ │ │ │ │ │ ├── Puerto_Rico │ │ │ │ │ │ │ ├── Punta_Arenas │ │ │ │ │ │ │ ├── Rainy_River │ │ │ │ │ │ │ ├── Rankin_Inlet │ │ │ │ │ │ │ ├── Recife │ │ │ │ │ │ │ ├── Regina │ │ │ │ │ │ │ ├── Resolute │ │ │ │ │ │ │ ├── Rio_Branco │ │ │ │ │ │ │ ├── Rosario │ │ │ │ │ │ │ ├── Santa_Isabel │ │ │ │ │ │ │ ├── Santarem │ │ │ │ │ │ │ ├── Santiago │ │ │ │ │ │ │ ├── Santo_Domingo │ │ │ │ │ │ │ ├── Sao_Paulo │ │ │ │ │ │ │ ├── Scoresbysund │ │ │ │ │ │ │ ├── Shiprock │ │ │ │ │ │ │ ├── Sitka │ │ │ │ │ │ │ ├── St_Barthelemy │ │ │ │ │ │ │ ├── St_Johns │ │ │ │ │ │ │ ├── St_Kitts │ │ │ │ │ │ │ ├── St_Lucia │ │ │ │ │ │ │ ├── St_Thomas │ │ │ │ │ │ │ ├── St_Vincent │ │ │ │ │ │ │ ├── Swift_Current │ │ │ │ │ │ │ ├── Tegucigalpa │ │ │ │ │ │ │ ├── Thule │ │ │ │ │ │ │ ├── Thunder_Bay │ │ │ │ │ │ │ ├── Tijuana │ │ │ │ │ │ │ ├── Toronto │ │ │ │ │ │ │ ├── Tortola │ │ │ │ │ │ │ ├── Vancouver │ │ │ │ │ │ │ ├── Virgin │ │ │ │ │ │ │ ├── Whitehorse │ │ │ │ │ │ │ ├── Winnipeg │ │ │ │ │ │ │ ├── Yakutat │ │ │ │ │ │ │ └── Yellowknife │ │ │ │ │ │ │ ├── Antarctica │ │ │ │ │ │ │ ├── Casey │ │ │ │ │ │ │ ├── Davis │ │ │ │ │ │ │ ├── DumontDUrville │ │ │ │ │ │ │ ├── Macquarie │ │ │ │ │ │ │ ├── Mawson │ │ │ │ │ │ │ ├── McMurdo │ │ │ │ │ │ │ ├── Palmer │ │ │ │ │ │ │ ├── Rothera │ │ │ │ │ │ │ ├── South_Pole │ │ │ │ │ │ │ ├── Syowa │ │ │ │ │ │ │ ├── Troll │ │ │ │ │ │ │ └── Vostok │ │ │ │ │ │ │ ├── Arctic │ │ │ │ │ │ │ └── Longyearbyen │ │ │ │ │ │ │ ├── Asia │ │ │ │ │ │ │ ├── Aden │ │ │ │ │ │ │ ├── Almaty │ │ │ │ │ │ │ ├── Amman │ │ │ │ │ │ │ ├── Anadyr │ │ │ │ │ │ │ ├── Aqtau │ │ │ │ │ │ │ ├── Aqtobe │ │ │ │ │ │ │ ├── Ashgabat │ │ │ │ │ │ │ ├── Ashkhabad │ │ │ │ │ │ │ ├── Atyrau │ │ │ │ │ │ │ ├── Baghdad │ │ │ │ │ │ │ ├── Bahrain │ │ │ │ │ │ │ ├── Baku │ │ │ │ │ │ │ ├── Bangkok │ │ │ │ │ │ │ ├── Barnaul │ │ │ │ │ │ │ ├── Beirut │ │ │ │ │ │ │ ├── Bishkek │ │ │ │ │ │ │ ├── Brunei │ │ │ │ │ │ │ ├── Calcutta │ │ │ │ │ │ │ ├── Chita │ │ │ │ │ │ │ ├── Choibalsan │ │ │ │ │ │ │ ├── Chongqing │ │ │ │ │ │ │ ├── Chungking │ │ │ │ │ │ │ ├── Colombo │ │ │ │ │ │ │ ├── Dacca │ │ │ │ │ │ │ ├── Damascus │ │ │ │ │ │ │ ├── Dhaka │ │ │ │ │ │ │ ├── Dili │ │ │ │ │ │ │ ├── Dubai │ │ │ │ │ │ │ ├── Dushanbe │ │ │ │ │ │ │ ├── Famagusta │ │ │ │ │ │ │ ├── Gaza │ │ │ │ │ │ │ ├── Harbin │ │ │ │ │ │ │ ├── Hebron │ │ │ │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ │ │ │ ├── Hong_Kong │ │ │ │ │ │ │ ├── Hovd │ │ │ │ │ │ │ ├── Irkutsk │ │ │ │ │ │ │ ├── Istanbul │ │ │ │ │ │ │ ├── Jakarta │ │ │ │ │ │ │ ├── Jayapura │ │ │ │ │ │ │ ├── Jerusalem │ │ │ │ │ │ │ ├── Kabul │ │ │ │ │ │ │ ├── Kamchatka │ │ │ │ │ │ │ ├── Karachi │ │ │ │ │ │ │ ├── Kashgar │ │ │ │ │ │ │ ├── Kathmandu │ │ │ │ │ │ │ ├── Katmandu │ │ │ │ │ │ │ ├── Khandyga │ │ │ │ │ │ │ ├── Kolkata │ │ │ │ │ │ │ ├── Krasnoyarsk │ │ │ │ │ │ │ ├── Kuala_Lumpur │ │ │ │ │ │ │ ├── Kuching │ │ │ │ │ │ │ ├── Kuwait │ │ │ │ │ │ │ ├── Macao │ │ │ │ │ │ │ ├── Macau │ │ │ │ │ │ │ ├── Magadan │ │ │ │ │ │ │ ├── Makassar │ │ │ │ │ │ │ ├── Manila │ │ │ │ │ │ │ ├── Muscat │ │ │ │ │ │ │ ├── Nicosia │ │ │ │ │ │ │ ├── Novokuznetsk │ │ │ │ │ │ │ ├── Novosibirsk │ │ │ │ │ │ │ ├── Omsk │ │ │ │ │ │ │ ├── Oral │ │ │ │ │ │ │ ├── Phnom_Penh │ │ │ │ │ │ │ ├── Pontianak │ │ │ │ │ │ │ ├── Pyongyang │ │ │ │ │ │ │ ├── Qatar │ │ │ │ │ │ │ ├── Qyzylorda │ │ │ │ │ │ │ ├── Rangoon │ │ │ │ │ │ │ ├── Riyadh │ │ │ │ │ │ │ ├── Saigon │ │ │ │ │ │ │ ├── Sakhalin │ │ │ │ │ │ │ ├── Samarkand │ │ │ │ │ │ │ ├── Seoul │ │ │ │ │ │ │ ├── Shanghai │ │ │ │ │ │ │ ├── Singapore │ │ │ │ │ │ │ ├── Srednekolymsk │ │ │ │ │ │ │ ├── Taipei │ │ │ │ │ │ │ ├── Tashkent │ │ │ │ │ │ │ ├── Tbilisi │ │ │ │ │ │ │ ├── Tehran │ │ │ │ │ │ │ ├── Tel_Aviv │ │ │ │ │ │ │ ├── Thimbu │ │ │ │ │ │ │ ├── Thimphu │ │ │ │ │ │ │ ├── Tokyo │ │ │ │ │ │ │ ├── Tomsk │ │ │ │ │ │ │ ├── Ujung_Pandang │ │ │ │ │ │ │ ├── Ulaanbaatar │ │ │ │ │ │ │ ├── Ulan_Bator │ │ │ │ │ │ │ ├── Urumqi │ │ │ │ │ │ │ ├── Ust-Nera │ │ │ │ │ │ │ ├── Vientiane │ │ │ │ │ │ │ ├── Vladivostok │ │ │ │ │ │ │ ├── Yakutsk │ │ │ │ │ │ │ ├── Yangon │ │ │ │ │ │ │ ├── Yekaterinburg │ │ │ │ │ │ │ └── Yerevan │ │ │ │ │ │ │ ├── Atlantic │ │ │ │ │ │ │ ├── Azores │ │ │ │ │ │ │ ├── Bermuda │ │ │ │ │ │ │ ├── Canary │ │ │ │ │ │ │ ├── Cape_Verde │ │ │ │ │ │ │ ├── Faeroe │ │ │ │ │ │ │ ├── Faroe │ │ │ │ │ │ │ ├── Jan_Mayen │ │ │ │ │ │ │ ├── Madeira │ │ │ │ │ │ │ ├── Reykjavik │ │ │ │ │ │ │ ├── South_Georgia │ │ │ │ │ │ │ ├── St_Helena │ │ │ │ │ │ │ └── Stanley │ │ │ │ │ │ │ ├── Australia │ │ │ │ │ │ │ ├── ACT │ │ │ │ │ │ │ ├── Adelaide │ │ │ │ │ │ │ ├── Brisbane │ │ │ │ │ │ │ ├── Broken_Hill │ │ │ │ │ │ │ ├── Canberra │ │ │ │ │ │ │ ├── Currie │ │ │ │ │ │ │ ├── Darwin │ │ │ │ │ │ │ ├── Eucla │ │ │ │ │ │ │ ├── Hobart │ │ │ │ │ │ │ ├── LHI │ │ │ │ │ │ │ ├── Lindeman │ │ │ │ │ │ │ ├── Lord_Howe │ │ │ │ │ │ │ ├── Melbourne │ │ │ │ │ │ │ ├── NSW │ │ │ │ │ │ │ ├── North │ │ │ │ │ │ │ ├── Perth │ │ │ │ │ │ │ ├── Queensland │ │ │ │ │ │ │ ├── South │ │ │ │ │ │ │ ├── Sydney │ │ │ │ │ │ │ ├── Tasmania │ │ │ │ │ │ │ ├── Victoria │ │ │ │ │ │ │ ├── West │ │ │ │ │ │ │ └── Yancowinna │ │ │ │ │ │ │ ├── Brazil │ │ │ │ │ │ │ ├── Acre │ │ │ │ │ │ │ ├── DeNoronha │ │ │ │ │ │ │ ├── East │ │ │ │ │ │ │ └── West │ │ │ │ │ │ │ ├── CET │ │ │ │ │ │ │ ├── CST6CDT │ │ │ │ │ │ │ ├── Canada │ │ │ │ │ │ │ ├── Atlantic │ │ │ │ │ │ │ ├── Central │ │ │ │ │ │ │ ├── Eastern │ │ │ │ │ │ │ ├── Mountain │ │ │ │ │ │ │ ├── Newfoundland │ │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ │ ├── Saskatchewan │ │ │ │ │ │ │ └── Yukon │ │ │ │ │ │ │ ├── Chile │ │ │ │ │ │ │ ├── Continental │ │ │ │ │ │ │ └── EasterIsland │ │ │ │ │ │ │ ├── Cuba │ │ │ │ │ │ │ ├── EET │ │ │ │ │ │ │ ├── EST │ │ │ │ │ │ │ ├── EST5EDT │ │ │ │ │ │ │ ├── Egypt │ │ │ │ │ │ │ ├── Eire │ │ │ │ │ │ │ ├── Etc │ │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ │ ├── GMT+1 │ │ │ │ │ │ │ ├── GMT+10 │ │ │ │ │ │ │ ├── GMT+11 │ │ │ │ │ │ │ ├── GMT+12 │ │ │ │ │ │ │ ├── GMT+2 │ │ │ │ │ │ │ ├── GMT+3 │ │ │ │ │ │ │ ├── GMT+4 │ │ │ │ │ │ │ ├── GMT+5 │ │ │ │ │ │ │ ├── GMT+6 │ │ │ │ │ │ │ ├── GMT+7 │ │ │ │ │ │ │ ├── GMT+8 │ │ │ │ │ │ │ ├── GMT+9 │ │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ │ ├── GMT-1 │ │ │ │ │ │ │ ├── GMT-10 │ │ │ │ │ │ │ ├── GMT-11 │ │ │ │ │ │ │ ├── GMT-12 │ │ │ │ │ │ │ ├── GMT-13 │ │ │ │ │ │ │ ├── GMT-14 │ │ │ │ │ │ │ ├── GMT-2 │ │ │ │ │ │ │ ├── GMT-3 │ │ │ │ │ │ │ ├── GMT-4 │ │ │ │ │ │ │ ├── GMT-5 │ │ │ │ │ │ │ ├── GMT-6 │ │ │ │ │ │ │ ├── GMT-7 │ │ │ │ │ │ │ ├── GMT-8 │ │ │ │ │ │ │ ├── GMT-9 │ │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ │ ├── Universal │ │ │ │ │ │ │ └── Zulu │ │ │ │ │ │ │ ├── Europe │ │ │ │ │ │ │ ├── Amsterdam │ │ │ │ │ │ │ ├── Andorra │ │ │ │ │ │ │ ├── Astrakhan │ │ │ │ │ │ │ ├── Athens │ │ │ │ │ │ │ ├── Belfast │ │ │ │ │ │ │ ├── Belgrade │ │ │ │ │ │ │ ├── Berlin │ │ │ │ │ │ │ ├── Bratislava │ │ │ │ │ │ │ ├── Brussels │ │ │ │ │ │ │ ├── Bucharest │ │ │ │ │ │ │ ├── Budapest │ │ │ │ │ │ │ ├── Busingen │ │ │ │ │ │ │ ├── Chisinau │ │ │ │ │ │ │ ├── Copenhagen │ │ │ │ │ │ │ ├── Dublin │ │ │ │ │ │ │ ├── Gibraltar │ │ │ │ │ │ │ ├── Guernsey │ │ │ │ │ │ │ ├── Helsinki │ │ │ │ │ │ │ ├── Isle_of_Man │ │ │ │ │ │ │ ├── Istanbul │ │ │ │ │ │ │ ├── Jersey │ │ │ │ │ │ │ ├── Kaliningrad │ │ │ │ │ │ │ ├── Kiev │ │ │ │ │ │ │ ├── Kirov │ │ │ │ │ │ │ ├── Lisbon │ │ │ │ │ │ │ ├── Ljubljana │ │ │ │ │ │ │ ├── London │ │ │ │ │ │ │ ├── Luxembourg │ │ │ │ │ │ │ ├── Madrid │ │ │ │ │ │ │ ├── Malta │ │ │ │ │ │ │ ├── Mariehamn │ │ │ │ │ │ │ ├── Minsk │ │ │ │ │ │ │ ├── Monaco │ │ │ │ │ │ │ ├── Moscow │ │ │ │ │ │ │ ├── Nicosia │ │ │ │ │ │ │ ├── Oslo │ │ │ │ │ │ │ ├── Paris │ │ │ │ │ │ │ ├── Podgorica │ │ │ │ │ │ │ ├── Prague │ │ │ │ │ │ │ ├── Riga │ │ │ │ │ │ │ ├── Rome │ │ │ │ │ │ │ ├── Samara │ │ │ │ │ │ │ ├── San_Marino │ │ │ │ │ │ │ ├── Sarajevo │ │ │ │ │ │ │ ├── Saratov │ │ │ │ │ │ │ ├── Simferopol │ │ │ │ │ │ │ ├── Skopje │ │ │ │ │ │ │ ├── Sofia │ │ │ │ │ │ │ ├── Stockholm │ │ │ │ │ │ │ ├── Tallinn │ │ │ │ │ │ │ ├── Tirane │ │ │ │ │ │ │ ├── Tiraspol │ │ │ │ │ │ │ ├── Ulyanovsk │ │ │ │ │ │ │ ├── Uzhgorod │ │ │ │ │ │ │ ├── Vaduz │ │ │ │ │ │ │ ├── Vatican │ │ │ │ │ │ │ ├── Vienna │ │ │ │ │ │ │ ├── Vilnius │ │ │ │ │ │ │ ├── Volgograd │ │ │ │ │ │ │ ├── Warsaw │ │ │ │ │ │ │ ├── Zagreb │ │ │ │ │ │ │ ├── Zaporozhye │ │ │ │ │ │ │ └── Zurich │ │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ │ ├── GB │ │ │ │ │ │ │ ├── GB-Eire │ │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ │ ├── HST │ │ │ │ │ │ │ ├── Hongkong │ │ │ │ │ │ │ ├── Iceland │ │ │ │ │ │ │ ├── Indian │ │ │ │ │ │ │ ├── Antananarivo │ │ │ │ │ │ │ ├── Chagos │ │ │ │ │ │ │ ├── Christmas │ │ │ │ │ │ │ ├── Cocos │ │ │ │ │ │ │ ├── Comoro │ │ │ │ │ │ │ ├── Kerguelen │ │ │ │ │ │ │ ├── Mahe │ │ │ │ │ │ │ ├── Maldives │ │ │ │ │ │ │ ├── Mauritius │ │ │ │ │ │ │ ├── Mayotte │ │ │ │ │ │ │ └── Reunion │ │ │ │ │ │ │ ├── Iran │ │ │ │ │ │ │ ├── Israel │ │ │ │ │ │ │ ├── Jamaica │ │ │ │ │ │ │ ├── Japan │ │ │ │ │ │ │ ├── Kwajalein │ │ │ │ │ │ │ ├── Libya │ │ │ │ │ │ │ ├── MET │ │ │ │ │ │ │ ├── MST │ │ │ │ │ │ │ ├── MST7MDT │ │ │ │ │ │ │ ├── Mexico │ │ │ │ │ │ │ ├── BajaNorte │ │ │ │ │ │ │ ├── BajaSur │ │ │ │ │ │ │ └── General │ │ │ │ │ │ │ ├── NZ │ │ │ │ │ │ │ ├── NZ-CHAT │ │ │ │ │ │ │ ├── Navajo │ │ │ │ │ │ │ ├── PRC │ │ │ │ │ │ │ ├── PST8PDT │ │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ │ ├── Apia │ │ │ │ │ │ │ ├── Auckland │ │ │ │ │ │ │ ├── Bougainville │ │ │ │ │ │ │ ├── Chatham │ │ │ │ │ │ │ ├── Chuuk │ │ │ │ │ │ │ ├── Easter │ │ │ │ │ │ │ ├── Efate │ │ │ │ │ │ │ ├── Enderbury │ │ │ │ │ │ │ ├── Fakaofo │ │ │ │ │ │ │ ├── Fiji │ │ │ │ │ │ │ ├── Funafuti │ │ │ │ │ │ │ ├── Galapagos │ │ │ │ │ │ │ ├── Gambier │ │ │ │ │ │ │ ├── Guadalcanal │ │ │ │ │ │ │ ├── Guam │ │ │ │ │ │ │ ├── Honolulu │ │ │ │ │ │ │ ├── Johnston │ │ │ │ │ │ │ ├── Kiritimati │ │ │ │ │ │ │ ├── Kosrae │ │ │ │ │ │ │ ├── Kwajalein │ │ │ │ │ │ │ ├── Majuro │ │ │ │ │ │ │ ├── Marquesas │ │ │ │ │ │ │ ├── Midway │ │ │ │ │ │ │ ├── Nauru │ │ │ │ │ │ │ ├── Niue │ │ │ │ │ │ │ ├── Norfolk │ │ │ │ │ │ │ ├── Noumea │ │ │ │ │ │ │ ├── Pago_Pago │ │ │ │ │ │ │ ├── Palau │ │ │ │ │ │ │ ├── Pitcairn │ │ │ │ │ │ │ ├── Pohnpei │ │ │ │ │ │ │ ├── Ponape │ │ │ │ │ │ │ ├── Port_Moresby │ │ │ │ │ │ │ ├── Rarotonga │ │ │ │ │ │ │ ├── Saipan │ │ │ │ │ │ │ ├── Samoa │ │ │ │ │ │ │ ├── Tahiti │ │ │ │ │ │ │ ├── Tarawa │ │ │ │ │ │ │ ├── Tongatapu │ │ │ │ │ │ │ ├── Truk │ │ │ │ │ │ │ ├── Wake │ │ │ │ │ │ │ ├── Wallis │ │ │ │ │ │ │ └── Yap │ │ │ │ │ │ │ ├── Poland │ │ │ │ │ │ │ ├── Portugal │ │ │ │ │ │ │ ├── ROC │ │ │ │ │ │ │ ├── ROK │ │ │ │ │ │ │ ├── Singapore │ │ │ │ │ │ │ ├── Turkey │ │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ │ ├── US │ │ │ │ │ │ │ ├── Alaska │ │ │ │ │ │ │ ├── Aleutian │ │ │ │ │ │ │ ├── Arizona │ │ │ │ │ │ │ ├── Central │ │ │ │ │ │ │ ├── East-Indiana │ │ │ │ │ │ │ ├── Eastern │ │ │ │ │ │ │ ├── Hawaii │ │ │ │ │ │ │ ├── Indiana-Starke │ │ │ │ │ │ │ ├── Michigan │ │ │ │ │ │ │ ├── Mountain │ │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ │ └── Samoa │ │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ │ ├── Universal │ │ │ │ │ │ │ ├── W-SU │ │ │ │ │ │ │ ├── WET │ │ │ │ │ │ │ ├── Zulu │ │ │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ │ │ ├── localtime │ │ │ │ │ │ │ └── zone1970.tab │ │ │ │ │ ├── get_current_time_ios.inc │ │ │ │ │ ├── get_current_time_posix.inc │ │ │ │ │ ├── get_current_time_windows.inc │ │ │ │ │ ├── test_util.cc │ │ │ │ │ ├── test_util.h │ │ │ │ │ └── zoneinfo.inc │ │ │ │ ├── time.cc │ │ │ │ ├── time.h │ │ │ │ ├── time_norm_test.cc │ │ │ │ ├── time_test.cc │ │ │ │ └── time_zone_test.cc │ │ │ │ ├── types │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── any.h │ │ │ │ ├── any_exception_safety_test.cc │ │ │ │ ├── any_test.cc │ │ │ │ ├── bad_any_cast.cc │ │ │ │ ├── bad_any_cast.h │ │ │ │ ├── bad_optional_access.cc │ │ │ │ ├── bad_optional_access.h │ │ │ │ ├── bad_variant_access.cc │ │ │ │ ├── bad_variant_access.h │ │ │ │ ├── internal │ │ │ │ │ └── variant.h │ │ │ │ ├── optional.cc │ │ │ │ ├── optional.h │ │ │ │ ├── optional_test.cc │ │ │ │ ├── span.h │ │ │ │ ├── span_test.cc │ │ │ │ ├── variant.h │ │ │ │ └── variant_test.cc │ │ │ │ └── utility │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── utility.h │ │ │ │ └── utility_test.cc │ │ ├── eigen │ │ │ ├── .hg_archival.txt │ │ │ ├── .hgeol │ │ │ ├── .hgignore │ │ │ ├── .hgtags │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING.BSD │ │ │ ├── COPYING.GPL │ │ │ ├── COPYING.LGPL │ │ │ ├── COPYING.MINPACK │ │ │ ├── COPYING.MPL2 │ │ │ ├── COPYING.README │ │ │ ├── CTestConfig.cmake │ │ │ ├── CTestCustom.cmake.in │ │ │ ├── Eigen │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Cholesky │ │ │ │ ├── CholmodSupport │ │ │ │ ├── Core │ │ │ │ ├── Dense │ │ │ │ ├── Eigen │ │ │ │ ├── Eigenvalues │ │ │ │ ├── Geometry │ │ │ │ ├── Householder │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ ├── Jacobi │ │ │ │ ├── KLUSupport │ │ │ │ ├── LU │ │ │ │ ├── MetisSupport │ │ │ │ ├── OrderingMethods │ │ │ │ ├── PaStiXSupport │ │ │ │ ├── PardisoSupport │ │ │ │ ├── QR │ │ │ │ ├── QtAlignedMalloc │ │ │ │ ├── SPQRSupport │ │ │ │ ├── SVD │ │ │ │ ├── Sparse │ │ │ │ ├── SparseCholesky │ │ │ │ ├── SparseCore │ │ │ │ ├── SparseLU │ │ │ │ ├── SparseQR │ │ │ │ ├── StdDeque │ │ │ │ ├── StdList │ │ │ │ ├── StdVector │ │ │ │ ├── SuperLUSupport │ │ │ │ ├── UmfPackSupport │ │ │ │ └── src │ │ │ │ │ ├── Cholesky │ │ │ │ │ ├── LDLT.h │ │ │ │ │ ├── LLT.h │ │ │ │ │ └── LLT_LAPACKE.h │ │ │ │ │ ├── CholmodSupport │ │ │ │ │ └── CholmodSupport.h │ │ │ │ │ ├── Core │ │ │ │ │ ├── ArithmeticSequence.h │ │ │ │ │ ├── Array.h │ │ │ │ │ ├── ArrayBase.h │ │ │ │ │ ├── ArrayWrapper.h │ │ │ │ │ ├── Assign.h │ │ │ │ │ ├── AssignEvaluator.h │ │ │ │ │ ├── Assign_MKL.h │ │ │ │ │ ├── BandMatrix.h │ │ │ │ │ ├── Block.h │ │ │ │ │ ├── BooleanRedux.h │ │ │ │ │ ├── CommaInitializer.h │ │ │ │ │ ├── ConditionEstimator.h │ │ │ │ │ ├── CoreEvaluators.h │ │ │ │ │ ├── CoreIterators.h │ │ │ │ │ ├── CwiseBinaryOp.h │ │ │ │ │ ├── CwiseNullaryOp.h │ │ │ │ │ ├── CwiseTernaryOp.h │ │ │ │ │ ├── CwiseUnaryOp.h │ │ │ │ │ ├── CwiseUnaryView.h │ │ │ │ │ ├── DenseBase.h │ │ │ │ │ ├── DenseCoeffsBase.h │ │ │ │ │ ├── DenseStorage.h │ │ │ │ │ ├── Diagonal.h │ │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ │ ├── DiagonalProduct.h │ │ │ │ │ ├── Dot.h │ │ │ │ │ ├── EigenBase.h │ │ │ │ │ ├── ForceAlignedAccess.h │ │ │ │ │ ├── Fuzzy.h │ │ │ │ │ ├── GeneralProduct.h │ │ │ │ │ ├── GenericPacketMath.h │ │ │ │ │ ├── GlobalFunctions.h │ │ │ │ │ ├── IO.h │ │ │ │ │ ├── IndexedView.h │ │ │ │ │ ├── Inverse.h │ │ │ │ │ ├── Map.h │ │ │ │ │ ├── MapBase.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── MathFunctionsImpl.h │ │ │ │ │ ├── Matrix.h │ │ │ │ │ ├── MatrixBase.h │ │ │ │ │ ├── NestByValue.h │ │ │ │ │ ├── NoAlias.h │ │ │ │ │ ├── NumTraits.h │ │ │ │ │ ├── PermutationMatrix.h │ │ │ │ │ ├── PlainObjectBase.h │ │ │ │ │ ├── Product.h │ │ │ │ │ ├── ProductEvaluators.h │ │ │ │ │ ├── Random.h │ │ │ │ │ ├── Redux.h │ │ │ │ │ ├── Ref.h │ │ │ │ │ ├── Replicate.h │ │ │ │ │ ├── ReturnByValue.h │ │ │ │ │ ├── Reverse.h │ │ │ │ │ ├── Select.h │ │ │ │ │ ├── SelfAdjointView.h │ │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ │ ├── Solve.h │ │ │ │ │ ├── SolveTriangular.h │ │ │ │ │ ├── SolverBase.h │ │ │ │ │ ├── StableNorm.h │ │ │ │ │ ├── Stride.h │ │ │ │ │ ├── Swap.h │ │ │ │ │ ├── Transpose.h │ │ │ │ │ ├── Transpositions.h │ │ │ │ │ ├── TriangularMatrix.h │ │ │ │ │ ├── VectorBlock.h │ │ │ │ │ ├── VectorwiseOp.h │ │ │ │ │ ├── Visitor.h │ │ │ │ │ ├── arch │ │ │ │ │ │ ├── AVX │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── AVX512 │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── CUDA │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── Half.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── Default │ │ │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ │ │ └── Settings.h │ │ │ │ │ │ ├── NEON │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── SSE │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ └── ZVector │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── functors │ │ │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ │ │ ├── BinaryFunctors.h │ │ │ │ │ │ ├── NullaryFunctors.h │ │ │ │ │ │ ├── StlFunctors.h │ │ │ │ │ │ ├── TernaryFunctors.h │ │ │ │ │ │ └── UnaryFunctors.h │ │ │ │ │ ├── products │ │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ │ │ ├── Parallelizer.h │ │ │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ │ │ └── TriangularSolverVector.h │ │ │ │ │ └── util │ │ │ │ │ │ ├── BlasUtil.h │ │ │ │ │ │ ├── Constants.h │ │ │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ │ │ ├── IntegralConstant.h │ │ │ │ │ │ ├── MKL_support.h │ │ │ │ │ │ ├── Macros.h │ │ │ │ │ │ ├── Memory.h │ │ │ │ │ │ ├── Meta.h │ │ │ │ │ │ ├── NonMPL2.h │ │ │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ │ │ ├── StaticAssert.h │ │ │ │ │ │ ├── SymbolicIndex.h │ │ │ │ │ │ └── XprHelper.h │ │ │ │ │ ├── Eigenvalues │ │ │ │ │ ├── ComplexEigenSolver.h │ │ │ │ │ ├── ComplexSchur.h │ │ │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ │ │ ├── EigenSolver.h │ │ │ │ │ ├── GeneralizedEigenSolver.h │ │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ │ │ ├── HessenbergDecomposition.h │ │ │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ │ │ ├── RealQZ.h │ │ │ │ │ ├── RealSchur.h │ │ │ │ │ ├── RealSchur_LAPACKE.h │ │ │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ │ │ └── Tridiagonalization.h │ │ │ │ │ ├── Geometry │ │ │ │ │ ├── AlignedBox.h │ │ │ │ │ ├── AngleAxis.h │ │ │ │ │ ├── EulerAngles.h │ │ │ │ │ ├── Homogeneous.h │ │ │ │ │ ├── Hyperplane.h │ │ │ │ │ ├── OrthoMethods.h │ │ │ │ │ ├── ParametrizedLine.h │ │ │ │ │ ├── Quaternion.h │ │ │ │ │ ├── Rotation2D.h │ │ │ │ │ ├── RotationBase.h │ │ │ │ │ ├── Scaling.h │ │ │ │ │ ├── Transform.h │ │ │ │ │ ├── Translation.h │ │ │ │ │ ├── Umeyama.h │ │ │ │ │ └── arch │ │ │ │ │ │ └── Geometry_SSE.h │ │ │ │ │ ├── Householder │ │ │ │ │ ├── BlockHouseholder.h │ │ │ │ │ ├── Householder.h │ │ │ │ │ └── HouseholderSequence.h │ │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ │ ├── BasicPreconditioners.h │ │ │ │ │ ├── BiCGSTAB.h │ │ │ │ │ ├── ConjugateGradient.h │ │ │ │ │ ├── IncompleteCholesky.h │ │ │ │ │ ├── IncompleteLUT.h │ │ │ │ │ ├── IterativeSolverBase.h │ │ │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ │ │ └── SolveWithGuess.h │ │ │ │ │ ├── Jacobi │ │ │ │ │ └── Jacobi.h │ │ │ │ │ ├── KLUSupport │ │ │ │ │ └── KLUSupport.h │ │ │ │ │ ├── LU │ │ │ │ │ ├── Determinant.h │ │ │ │ │ ├── FullPivLU.h │ │ │ │ │ ├── InverseImpl.h │ │ │ │ │ ├── PartialPivLU.h │ │ │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ │ │ └── arch │ │ │ │ │ │ └── Inverse_SSE.h │ │ │ │ │ ├── MetisSupport │ │ │ │ │ └── MetisSupport.h │ │ │ │ │ ├── OrderingMethods │ │ │ │ │ ├── Amd.h │ │ │ │ │ ├── Eigen_Colamd.h │ │ │ │ │ └── Ordering.h │ │ │ │ │ ├── PaStiXSupport │ │ │ │ │ └── PaStiXSupport.h │ │ │ │ │ ├── PardisoSupport │ │ │ │ │ └── PardisoSupport.h │ │ │ │ │ ├── QR │ │ │ │ │ ├── ColPivHouseholderQR.h │ │ │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ │ │ ├── FullPivHouseholderQR.h │ │ │ │ │ ├── HouseholderQR.h │ │ │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ │ │ ├── SPQRSupport │ │ │ │ │ └── SuiteSparseQRSupport.h │ │ │ │ │ ├── SVD │ │ │ │ │ ├── BDCSVD.h │ │ │ │ │ ├── JacobiSVD.h │ │ │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ │ │ ├── SVDBase.h │ │ │ │ │ └── UpperBidiagonalization.h │ │ │ │ │ ├── SparseCholesky │ │ │ │ │ ├── SimplicialCholesky.h │ │ │ │ │ └── SimplicialCholesky_impl.h │ │ │ │ │ ├── SparseCore │ │ │ │ │ ├── AmbiVector.h │ │ │ │ │ ├── CompressedStorage.h │ │ │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ │ │ ├── MappedSparseMatrix.h │ │ │ │ │ ├── SparseAssign.h │ │ │ │ │ ├── SparseBlock.h │ │ │ │ │ ├── SparseColEtree.h │ │ │ │ │ ├── SparseCompressedBase.h │ │ │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ │ │ ├── SparseDenseProduct.h │ │ │ │ │ ├── SparseDiagonalProduct.h │ │ │ │ │ ├── SparseDot.h │ │ │ │ │ ├── SparseFuzzy.h │ │ │ │ │ ├── SparseMap.h │ │ │ │ │ ├── SparseMatrix.h │ │ │ │ │ ├── SparseMatrixBase.h │ │ │ │ │ ├── SparsePermutation.h │ │ │ │ │ ├── SparseProduct.h │ │ │ │ │ ├── SparseRedux.h │ │ │ │ │ ├── SparseRef.h │ │ │ │ │ ├── SparseSelfAdjointView.h │ │ │ │ │ ├── SparseSolverBase.h │ │ │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ │ │ ├── SparseTranspose.h │ │ │ │ │ ├── SparseTriangularView.h │ │ │ │ │ ├── SparseUtil.h │ │ │ │ │ ├── SparseVector.h │ │ │ │ │ ├── SparseView.h │ │ │ │ │ └── TriangularSolver.h │ │ │ │ │ ├── SparseLU │ │ │ │ │ ├── SparseLU.h │ │ │ │ │ ├── SparseLUImpl.h │ │ │ │ │ ├── SparseLU_Memory.h │ │ │ │ │ ├── SparseLU_Structs.h │ │ │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ │ │ ├── SparseLU_Utils.h │ │ │ │ │ ├── SparseLU_column_bmod.h │ │ │ │ │ ├── SparseLU_column_dfs.h │ │ │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ │ │ ├── SparseLU_panel_bmod.h │ │ │ │ │ ├── SparseLU_panel_dfs.h │ │ │ │ │ ├── SparseLU_pivotL.h │ │ │ │ │ ├── SparseLU_pruneL.h │ │ │ │ │ └── SparseLU_relax_snode.h │ │ │ │ │ ├── SparseQR │ │ │ │ │ └── SparseQR.h │ │ │ │ │ ├── StlSupport │ │ │ │ │ ├── StdDeque.h │ │ │ │ │ ├── StdList.h │ │ │ │ │ ├── StdVector.h │ │ │ │ │ └── details.h │ │ │ │ │ ├── SuperLUSupport │ │ │ │ │ └── SuperLUSupport.h │ │ │ │ │ ├── UmfPackSupport │ │ │ │ │ └── UmfPackSupport.h │ │ │ │ │ ├── misc │ │ │ │ │ ├── Image.h │ │ │ │ │ ├── Kernel.h │ │ │ │ │ ├── RealSvd2x2.h │ │ │ │ │ ├── blas.h │ │ │ │ │ ├── lapack.h │ │ │ │ │ ├── lapacke.h │ │ │ │ │ └── lapacke_mangling.h │ │ │ │ │ └── plugins │ │ │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ │ │ ├── BlockMethods.h │ │ │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ │ │ ├── IndexedViewMethods.h │ │ │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ │ │ └── MatrixCwiseUnaryOps.h │ │ │ ├── INSTALL │ │ │ ├── README.md │ │ │ ├── bench │ │ │ │ ├── BenchSparseUtil.h │ │ │ │ ├── BenchTimer.h │ │ │ │ ├── BenchUtil.h │ │ │ │ ├── README.txt │ │ │ │ ├── analyze-blocking-sizes.cpp │ │ │ │ ├── basicbench.cxxlist │ │ │ │ ├── basicbenchmark.cpp │ │ │ │ ├── basicbenchmark.h │ │ │ │ ├── benchBlasGemm.cpp │ │ │ │ ├── benchCholesky.cpp │ │ │ │ ├── benchEigenSolver.cpp │ │ │ │ ├── benchFFT.cpp │ │ │ │ ├── benchGeometry.cpp │ │ │ │ ├── benchVecAdd.cpp │ │ │ │ ├── bench_gemm.cpp │ │ │ │ ├── bench_multi_compilers.sh │ │ │ │ ├── bench_norm.cpp │ │ │ │ ├── bench_reverse.cpp │ │ │ │ ├── bench_sum.cpp │ │ │ │ ├── bench_unrolling │ │ │ │ ├── benchmark-blocking-sizes.cpp │ │ │ │ ├── benchmark.cpp │ │ │ │ ├── benchmarkSlice.cpp │ │ │ │ ├── benchmarkX.cpp │ │ │ │ ├── benchmarkXcwise.cpp │ │ │ │ ├── benchmark_suite │ │ │ │ ├── btl │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── README │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── action_aat_product.hh │ │ │ │ │ │ ├── action_ata_product.hh │ │ │ │ │ │ ├── action_atv_product.hh │ │ │ │ │ │ ├── action_axpby.hh │ │ │ │ │ │ ├── action_axpy.hh │ │ │ │ │ │ ├── action_cholesky.hh │ │ │ │ │ │ ├── action_ger.hh │ │ │ │ │ │ ├── action_hessenberg.hh │ │ │ │ │ │ ├── action_lu_decomp.hh │ │ │ │ │ │ ├── action_lu_solve.hh │ │ │ │ │ │ ├── action_matrix_matrix_product.hh │ │ │ │ │ │ ├── action_matrix_matrix_product_bis.hh │ │ │ │ │ │ ├── action_matrix_vector_product.hh │ │ │ │ │ │ ├── action_partial_lu.hh │ │ │ │ │ │ ├── action_rot.hh │ │ │ │ │ │ ├── action_symv.hh │ │ │ │ │ │ ├── action_syr2.hh │ │ │ │ │ │ ├── action_trisolve.hh │ │ │ │ │ │ ├── action_trisolve_matrix.hh │ │ │ │ │ │ ├── action_trmm.hh │ │ │ │ │ │ └── basic_actions.hh │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── FindACML.cmake │ │ │ │ │ │ ├── FindATLAS.cmake │ │ │ │ │ │ ├── FindBLAZE.cmake │ │ │ │ │ │ ├── FindBlitz.cmake │ │ │ │ │ │ ├── FindCBLAS.cmake │ │ │ │ │ │ ├── FindGMM.cmake │ │ │ │ │ │ ├── FindMKL.cmake │ │ │ │ │ │ ├── FindMTL4.cmake │ │ │ │ │ │ ├── FindOPENBLAS.cmake │ │ │ │ │ │ ├── FindPackageHandleStandardArgs.cmake │ │ │ │ │ │ ├── FindTvmet.cmake │ │ │ │ │ │ └── MacroOptionalAddSubdirectory.cmake │ │ │ │ │ ├── data │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── action_settings.txt │ │ │ │ │ │ ├── gnuplot_common_settings.hh │ │ │ │ │ │ ├── go_mean │ │ │ │ │ │ ├── mean.cxx │ │ │ │ │ │ ├── mk_gnuplot_script.sh │ │ │ │ │ │ ├── mk_mean_script.sh │ │ │ │ │ │ ├── mk_new_gnuplot.sh │ │ │ │ │ │ ├── perlib_plot_settings.txt │ │ │ │ │ │ ├── regularize.cxx │ │ │ │ │ │ ├── smooth.cxx │ │ │ │ │ │ └── smooth_all.sh │ │ │ │ │ ├── generic_bench │ │ │ │ │ │ ├── bench.hh │ │ │ │ │ │ ├── bench_parameter.hh │ │ │ │ │ │ ├── btl.hh │ │ │ │ │ │ ├── init │ │ │ │ │ │ │ ├── init_function.hh │ │ │ │ │ │ │ ├── init_matrix.hh │ │ │ │ │ │ │ └── init_vector.hh │ │ │ │ │ │ ├── static │ │ │ │ │ │ │ ├── bench_static.hh │ │ │ │ │ │ │ ├── intel_bench_fixed_size.hh │ │ │ │ │ │ │ └── static_size_generator.hh │ │ │ │ │ │ ├── timers │ │ │ │ │ │ │ ├── STL_perf_analyzer.hh │ │ │ │ │ │ │ ├── STL_timer.hh │ │ │ │ │ │ │ ├── mixed_perf_analyzer.hh │ │ │ │ │ │ │ ├── portable_perf_analyzer.hh │ │ │ │ │ │ │ ├── portable_perf_analyzer_old.hh │ │ │ │ │ │ │ ├── portable_timer.hh │ │ │ │ │ │ │ ├── x86_perf_analyzer.hh │ │ │ │ │ │ │ └── x86_timer.hh │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── size_lin_log.hh │ │ │ │ │ │ │ ├── size_log.hh │ │ │ │ │ │ │ ├── utilities.h │ │ │ │ │ │ │ └── xy_file.hh │ │ │ │ │ └── libs │ │ │ │ │ │ ├── BLAS │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── blas.h │ │ │ │ │ │ ├── blas_interface.hh │ │ │ │ │ │ ├── blas_interface_impl.hh │ │ │ │ │ │ ├── c_interface_base.h │ │ │ │ │ │ └── main.cpp │ │ │ │ │ │ ├── STL │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── STL_interface.hh │ │ │ │ │ │ └── main.cpp │ │ │ │ │ │ ├── blaze │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── blaze_interface.hh │ │ │ │ │ │ └── main.cpp │ │ │ │ │ │ ├── blitz │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── blitz_LU_solve_interface.hh │ │ │ │ │ │ ├── blitz_interface.hh │ │ │ │ │ │ ├── btl_blitz.cpp │ │ │ │ │ │ ├── btl_tiny_blitz.cpp │ │ │ │ │ │ └── tiny_blitz_interface.hh │ │ │ │ │ │ ├── eigen2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── btl_tiny_eigen2.cpp │ │ │ │ │ │ ├── eigen2_interface.hh │ │ │ │ │ │ ├── main_adv.cpp │ │ │ │ │ │ ├── main_linear.cpp │ │ │ │ │ │ ├── main_matmat.cpp │ │ │ │ │ │ └── main_vecmat.cpp │ │ │ │ │ │ ├── eigen3 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── btl_tiny_eigen3.cpp │ │ │ │ │ │ ├── eigen3_interface.hh │ │ │ │ │ │ ├── main_adv.cpp │ │ │ │ │ │ ├── main_linear.cpp │ │ │ │ │ │ ├── main_matmat.cpp │ │ │ │ │ │ └── main_vecmat.cpp │ │ │ │ │ │ ├── gmm │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── gmm_LU_solve_interface.hh │ │ │ │ │ │ ├── gmm_interface.hh │ │ │ │ │ │ └── main.cpp │ │ │ │ │ │ ├── mtl4 │ │ │ │ │ │ ├── .kdbgrc.main │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── mtl4_LU_solve_interface.hh │ │ │ │ │ │ └── mtl4_interface.hh │ │ │ │ │ │ ├── tensors │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main_linear.cpp │ │ │ │ │ │ ├── main_matmat.cpp │ │ │ │ │ │ ├── main_vecmat.cpp │ │ │ │ │ │ └── tensor_interface.hh │ │ │ │ │ │ ├── tvmet │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ └── tvmet_interface.hh │ │ │ │ │ │ └── ublas │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ └── ublas_interface.hh │ │ │ │ ├── check_cache_queries.cpp │ │ │ │ ├── dense_solvers.cpp │ │ │ │ ├── eig33.cpp │ │ │ │ ├── geometry.cpp │ │ │ │ ├── perf_monitoring │ │ │ │ │ ├── changesets.txt │ │ │ │ │ ├── gemm.cpp │ │ │ │ │ ├── gemm_common.h │ │ │ │ │ ├── gemm_settings.txt │ │ │ │ │ ├── gemm_square_settings.txt │ │ │ │ │ ├── gemv.cpp │ │ │ │ │ ├── gemv_common.h │ │ │ │ │ ├── gemv_settings.txt │ │ │ │ │ ├── gemv_square_settings.txt │ │ │ │ │ ├── gemvt.cpp │ │ │ │ │ ├── lazy_gemm.cpp │ │ │ │ │ ├── lazy_gemm_settings.txt │ │ │ │ │ ├── llt.cpp │ │ │ │ │ ├── make_plot.sh │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── chart_footer.html │ │ │ │ │ │ ├── chart_header.html │ │ │ │ │ │ ├── footer.html │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ ├── s1.js │ │ │ │ │ │ └── s2.js │ │ │ │ │ ├── run.sh │ │ │ │ │ ├── runall.sh │ │ │ │ │ ├── trmv_lo.cpp │ │ │ │ │ ├── trmv_lot.cpp │ │ │ │ │ ├── trmv_up.cpp │ │ │ │ │ └── trmv_upt.cpp │ │ │ │ ├── product_threshold.cpp │ │ │ │ ├── quat_slerp.cpp │ │ │ │ ├── quatmul.cpp │ │ │ │ ├── sparse_cholesky.cpp │ │ │ │ ├── sparse_dense_product.cpp │ │ │ │ ├── sparse_lu.cpp │ │ │ │ ├── sparse_product.cpp │ │ │ │ ├── sparse_randomsetter.cpp │ │ │ │ ├── sparse_setter.cpp │ │ │ │ ├── sparse_transpose.cpp │ │ │ │ ├── sparse_trisolver.cpp │ │ │ │ ├── spbench │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── sp_solver.cpp │ │ │ │ │ ├── spbench.dtd │ │ │ │ │ ├── spbenchsolver.cpp │ │ │ │ │ ├── spbenchsolver.h │ │ │ │ │ ├── spbenchstyle.h │ │ │ │ │ └── test_sparseLU.cpp │ │ │ │ ├── spmv.cpp │ │ │ │ ├── tensors │ │ │ │ │ ├── README │ │ │ │ │ ├── benchmark.h │ │ │ │ │ ├── benchmark_main.cc │ │ │ │ │ ├── contraction_benchmarks_cpu.cc │ │ │ │ │ ├── tensor_benchmarks.h │ │ │ │ │ ├── tensor_benchmarks_cpu.cc │ │ │ │ │ ├── tensor_benchmarks_fp16_gpu.cu │ │ │ │ │ ├── tensor_benchmarks_gpu.cu │ │ │ │ │ ├── tensor_benchmarks_sycl.cc │ │ │ │ │ └── tensor_benchmarks_sycl_include_headers.cc │ │ │ │ └── vdw_new.cpp │ │ │ ├── blas │ │ │ │ ├── BandTriangularSolver.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GeneralRank1Update.h │ │ │ │ ├── PackedSelfadjointProduct.h │ │ │ │ ├── PackedTriangularMatrixVector.h │ │ │ │ ├── PackedTriangularSolverVector.h │ │ │ │ ├── README.txt │ │ │ │ ├── Rank2Update.h │ │ │ │ ├── common.h │ │ │ │ ├── complex_double.cpp │ │ │ │ ├── complex_single.cpp │ │ │ │ ├── double.cpp │ │ │ │ ├── f2c │ │ │ │ │ ├── chbmv.c │ │ │ │ │ ├── chpmv.c │ │ │ │ │ ├── complexdots.c │ │ │ │ │ ├── ctbmv.c │ │ │ │ │ ├── d_cnjg.c │ │ │ │ │ ├── datatypes.h │ │ │ │ │ ├── drotm.c │ │ │ │ │ ├── drotmg.c │ │ │ │ │ ├── dsbmv.c │ │ │ │ │ ├── dspmv.c │ │ │ │ │ ├── dtbmv.c │ │ │ │ │ ├── lsame.c │ │ │ │ │ ├── r_cnjg.c │ │ │ │ │ ├── srotm.c │ │ │ │ │ ├── srotmg.c │ │ │ │ │ ├── ssbmv.c │ │ │ │ │ ├── sspmv.c │ │ │ │ │ ├── stbmv.c │ │ │ │ │ ├── zhbmv.c │ │ │ │ │ ├── zhpmv.c │ │ │ │ │ └── ztbmv.c │ │ │ │ ├── fortran │ │ │ │ │ └── complexdots.f │ │ │ │ ├── level1_cplx_impl.h │ │ │ │ ├── level1_impl.h │ │ │ │ ├── level1_real_impl.h │ │ │ │ ├── level2_cplx_impl.h │ │ │ │ ├── level2_impl.h │ │ │ │ ├── level2_real_impl.h │ │ │ │ ├── level3_impl.h │ │ │ │ ├── single.cpp │ │ │ │ ├── testing │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── cblat1.f │ │ │ │ │ ├── cblat2.dat │ │ │ │ │ ├── cblat2.f │ │ │ │ │ ├── cblat3.dat │ │ │ │ │ ├── cblat3.f │ │ │ │ │ ├── dblat1.f │ │ │ │ │ ├── dblat2.dat │ │ │ │ │ ├── dblat2.f │ │ │ │ │ ├── dblat3.dat │ │ │ │ │ ├── dblat3.f │ │ │ │ │ ├── runblastest.sh │ │ │ │ │ ├── sblat1.f │ │ │ │ │ ├── sblat2.dat │ │ │ │ │ ├── sblat2.f │ │ │ │ │ ├── sblat3.dat │ │ │ │ │ ├── sblat3.f │ │ │ │ │ ├── zblat1.f │ │ │ │ │ ├── zblat2.dat │ │ │ │ │ ├── zblat2.f │ │ │ │ │ ├── zblat3.dat │ │ │ │ │ └── zblat3.f │ │ │ │ └── xerbla.cpp │ │ │ ├── cmake │ │ │ │ ├── Eigen3Config.cmake.in │ │ │ │ ├── Eigen3ConfigLegacy.cmake.in │ │ │ │ ├── EigenConfigureTesting.cmake │ │ │ │ ├── EigenDetermineOSVersion.cmake │ │ │ │ ├── EigenDetermineVSServicePack.cmake │ │ │ │ ├── EigenTesting.cmake │ │ │ │ ├── EigenUninstall.cmake │ │ │ │ ├── FindAdolc.cmake │ │ │ │ ├── FindBLAS.cmake │ │ │ │ ├── FindBLASEXT.cmake │ │ │ │ ├── FindCholmod.cmake │ │ │ │ ├── FindComputeCpp.cmake │ │ │ │ ├── FindEigen2.cmake │ │ │ │ ├── FindEigen3.cmake │ │ │ │ ├── FindFFTW.cmake │ │ │ │ ├── FindGLEW.cmake │ │ │ │ ├── FindGMP.cmake │ │ │ │ ├── FindGSL.cmake │ │ │ │ ├── FindGoogleHash.cmake │ │ │ │ ├── FindHWLOC.cmake │ │ │ │ ├── FindKLU.cmake │ │ │ │ ├── FindLAPACK.cmake │ │ │ │ ├── FindMPFR.cmake │ │ │ │ ├── FindMetis.cmake │ │ │ │ ├── FindPTSCOTCH.cmake │ │ │ │ ├── FindPastix.cmake │ │ │ │ ├── FindSPQR.cmake │ │ │ │ ├── FindScotch.cmake │ │ │ │ ├── FindStandardMathLibrary.cmake │ │ │ │ ├── FindSuperLU.cmake │ │ │ │ ├── FindTriSYCL.cmake │ │ │ │ ├── FindUmfpack.cmake │ │ │ │ ├── FindXsmm.cmake │ │ │ │ ├── RegexUtils.cmake │ │ │ │ ├── UseEigen3.cmake │ │ │ │ └── language_support.cmake │ │ │ ├── debug │ │ │ │ ├── gdb │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── printers.py │ │ │ │ └── msvc │ │ │ │ │ ├── eigen.natvis │ │ │ │ │ └── eigen_autoexp_part.dat │ │ │ ├── demos │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── mandelbrot │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── README │ │ │ │ │ ├── mandelbrot.cpp │ │ │ │ │ └── mandelbrot.h │ │ │ │ ├── mix_eigen_and_c │ │ │ │ │ ├── README │ │ │ │ │ ├── binary_library.cpp │ │ │ │ │ ├── binary_library.h │ │ │ │ │ └── example.c │ │ │ │ └── opengl │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── README │ │ │ │ │ ├── camera.cpp │ │ │ │ │ ├── camera.h │ │ │ │ │ ├── gpuhelper.cpp │ │ │ │ │ ├── gpuhelper.h │ │ │ │ │ ├── icosphere.cpp │ │ │ │ │ ├── icosphere.h │ │ │ │ │ ├── quaternion_demo.cpp │ │ │ │ │ ├── quaternion_demo.h │ │ │ │ │ ├── trackball.cpp │ │ │ │ │ └── trackball.h │ │ │ ├── doc │ │ │ │ ├── A05_PortingFrom2To3.dox │ │ │ │ ├── AsciiQuickReference.txt │ │ │ │ ├── B01_Experimental.dox │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ClassHierarchy.dox │ │ │ │ ├── CoeffwiseMathFunctionsTable.dox │ │ │ │ ├── CustomizingEigen_CustomScalar.dox │ │ │ │ ├── CustomizingEigen_InheritingMatrix.dox │ │ │ │ ├── CustomizingEigen_NullaryExpr.dox │ │ │ │ ├── CustomizingEigen_Plugins.dox │ │ │ │ ├── DenseDecompositionBenchmark.dox │ │ │ │ ├── Doxyfile.in │ │ │ │ ├── Eigen_Silly_Professor_64x64.png │ │ │ │ ├── FixedSizeVectorizable.dox │ │ │ │ ├── FunctionsTakingEigenTypes.dox │ │ │ │ ├── HiPerformance.dox │ │ │ │ ├── InplaceDecomposition.dox │ │ │ │ ├── InsideEigenExample.dox │ │ │ │ ├── LeastSquares.dox │ │ │ │ ├── Manual.dox │ │ │ │ ├── MatrixfreeSolverExample.dox │ │ │ │ ├── NewExpressionType.dox │ │ │ │ ├── Overview.dox │ │ │ │ ├── PassingByValue.dox │ │ │ │ ├── Pitfalls.dox │ │ │ │ ├── PreprocessorDirectives.dox │ │ │ │ ├── QuickReference.dox │ │ │ │ ├── QuickStartGuide.dox │ │ │ │ ├── SparseLinearSystems.dox │ │ │ │ ├── SparseQuickReference.dox │ │ │ │ ├── StlContainers.dox │ │ │ │ ├── StorageOrders.dox │ │ │ │ ├── StructHavingEigenMembers.dox │ │ │ │ ├── TemplateKeyword.dox │ │ │ │ ├── TopicAliasing.dox │ │ │ │ ├── TopicAssertions.dox │ │ │ │ ├── TopicCMakeGuide.dox │ │ │ │ ├── TopicEigenExpressionTemplates.dox │ │ │ │ ├── TopicLazyEvaluation.dox │ │ │ │ ├── TopicLinearAlgebraDecompositions.dox │ │ │ │ ├── TopicMultithreading.dox │ │ │ │ ├── TopicResizing.dox │ │ │ │ ├── TopicScalarTypes.dox │ │ │ │ ├── TopicVectorization.dox │ │ │ │ ├── TutorialAdvancedInitialization.dox │ │ │ │ ├── TutorialArrayClass.dox │ │ │ │ ├── TutorialBlockOperations.dox │ │ │ │ ├── TutorialGeometry.dox │ │ │ │ ├── TutorialLinearAlgebra.dox │ │ │ │ ├── TutorialMapClass.dox │ │ │ │ ├── TutorialMatrixArithmetic.dox │ │ │ │ ├── TutorialMatrixClass.dox │ │ │ │ ├── TutorialReductionsVisitorsBroadcasting.dox │ │ │ │ ├── TutorialReshapeSlicing.dox │ │ │ │ ├── TutorialSparse.dox │ │ │ │ ├── TutorialSparse_example_details.dox │ │ │ │ ├── UnalignedArrayAssert.dox │ │ │ │ ├── UsingBlasLapackBackends.dox │ │ │ │ ├── UsingIntelMKL.dox │ │ │ │ ├── UsingNVCC.dox │ │ │ │ ├── WrongStackAlignment.dox │ │ │ │ ├── eigen_navtree_hacks.js │ │ │ │ ├── eigendoxy.css │ │ │ │ ├── eigendoxy_footer.html.in │ │ │ │ ├── eigendoxy_header.html.in │ │ │ │ ├── eigendoxy_layout.xml.in │ │ │ │ ├── eigendoxy_tabs.css │ │ │ │ ├── examples │ │ │ │ │ ├── .krazy │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CustomizingEigen_Inheritance.cpp │ │ │ │ │ ├── Cwise_erf.cpp │ │ │ │ │ ├── Cwise_erfc.cpp │ │ │ │ │ ├── Cwise_lgamma.cpp │ │ │ │ │ ├── DenseBase_middleCols_int.cpp │ │ │ │ │ ├── DenseBase_middleRows_int.cpp │ │ │ │ │ ├── DenseBase_template_int_middleCols.cpp │ │ │ │ │ ├── DenseBase_template_int_middleRows.cpp │ │ │ │ │ ├── QuickStart_example.cpp │ │ │ │ │ ├── QuickStart_example2_dynamic.cpp │ │ │ │ │ ├── QuickStart_example2_fixed.cpp │ │ │ │ │ ├── TemplateKeyword_flexible.cpp │ │ │ │ │ ├── TemplateKeyword_simple.cpp │ │ │ │ │ ├── TutorialInplaceLU.cpp │ │ │ │ │ ├── TutorialLinAlgComputeTwice.cpp │ │ │ │ │ ├── TutorialLinAlgExComputeSolveError.cpp │ │ │ │ │ ├── TutorialLinAlgExSolveColPivHouseholderQR.cpp │ │ │ │ │ ├── TutorialLinAlgExSolveLDLT.cpp │ │ │ │ │ ├── TutorialLinAlgInverseDeterminant.cpp │ │ │ │ │ ├── TutorialLinAlgRankRevealing.cpp │ │ │ │ │ ├── TutorialLinAlgSVDSolve.cpp │ │ │ │ │ ├── TutorialLinAlgSelfAdjointEigenSolver.cpp │ │ │ │ │ ├── TutorialLinAlgSetThreshold.cpp │ │ │ │ │ ├── Tutorial_ArrayClass_accessors.cpp │ │ │ │ │ ├── Tutorial_ArrayClass_addition.cpp │ │ │ │ │ ├── Tutorial_ArrayClass_cwise_other.cpp │ │ │ │ │ ├── Tutorial_ArrayClass_interop.cpp │ │ │ │ │ ├── Tutorial_ArrayClass_interop_matrix.cpp │ │ │ │ │ ├── Tutorial_ArrayClass_mult.cpp │ │ │ │ │ ├── Tutorial_BlockOperations_block_assignment.cpp │ │ │ │ │ ├── Tutorial_BlockOperations_colrow.cpp │ │ │ │ │ ├── Tutorial_BlockOperations_corner.cpp │ │ │ │ │ ├── Tutorial_BlockOperations_print_block.cpp │ │ │ │ │ ├── Tutorial_BlockOperations_vector.cpp │ │ │ │ │ ├── Tutorial_PartialLU_solve.cpp │ │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp │ │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp │ │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp │ │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp │ │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp │ │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp │ │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp │ │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp │ │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp │ │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp │ │ │ │ │ ├── Tutorial_simple_example_dynamic_size.cpp │ │ │ │ │ ├── Tutorial_simple_example_fixed_size.cpp │ │ │ │ │ ├── class_Block.cpp │ │ │ │ │ ├── class_CwiseBinaryOp.cpp │ │ │ │ │ ├── class_CwiseUnaryOp.cpp │ │ │ │ │ ├── class_CwiseUnaryOp_ptrfun.cpp │ │ │ │ │ ├── class_FixedBlock.cpp │ │ │ │ │ ├── class_FixedVectorBlock.cpp │ │ │ │ │ ├── class_VectorBlock.cpp │ │ │ │ │ ├── function_taking_eigenbase.cpp │ │ │ │ │ ├── function_taking_ref.cpp │ │ │ │ │ ├── make_circulant.cpp │ │ │ │ │ ├── make_circulant.cpp.entry │ │ │ │ │ ├── make_circulant.cpp.evaluator │ │ │ │ │ ├── make_circulant.cpp.expression │ │ │ │ │ ├── make_circulant.cpp.main │ │ │ │ │ ├── make_circulant.cpp.preamble │ │ │ │ │ ├── make_circulant.cpp.traits │ │ │ │ │ ├── make_circulant2.cpp │ │ │ │ │ ├── matrixfree_cg.cpp │ │ │ │ │ ├── nullary_indexing.cpp │ │ │ │ │ ├── tut_arithmetic_add_sub.cpp │ │ │ │ │ ├── tut_arithmetic_dot_cross.cpp │ │ │ │ │ ├── tut_arithmetic_matrix_mul.cpp │ │ │ │ │ ├── tut_arithmetic_redux_basic.cpp │ │ │ │ │ ├── tut_arithmetic_scalar_mul_div.cpp │ │ │ │ │ ├── tut_matrix_coefficient_accessors.cpp │ │ │ │ │ ├── tut_matrix_resize.cpp │ │ │ │ │ └── tut_matrix_resize_fixed_size.cpp │ │ │ │ ├── ftv2node.png │ │ │ │ ├── ftv2pnode.png │ │ │ │ ├── snippets │ │ │ │ │ ├── .krazy │ │ │ │ │ ├── AngleAxis_mimic_euler.cpp │ │ │ │ │ ├── BiCGSTAB_simple.cpp │ │ │ │ │ ├── BiCGSTAB_step_by_step.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ColPivHouseholderQR_solve.cpp │ │ │ │ │ ├── ComplexEigenSolver_compute.cpp │ │ │ │ │ ├── ComplexEigenSolver_eigenvalues.cpp │ │ │ │ │ ├── ComplexEigenSolver_eigenvectors.cpp │ │ │ │ │ ├── ComplexSchur_compute.cpp │ │ │ │ │ ├── ComplexSchur_matrixT.cpp │ │ │ │ │ ├── ComplexSchur_matrixU.cpp │ │ │ │ │ ├── Cwise_abs.cpp │ │ │ │ │ ├── Cwise_abs2.cpp │ │ │ │ │ ├── Cwise_acos.cpp │ │ │ │ │ ├── Cwise_arg.cpp │ │ │ │ │ ├── Cwise_array_power_array.cpp │ │ │ │ │ ├── Cwise_asin.cpp │ │ │ │ │ ├── Cwise_atan.cpp │ │ │ │ │ ├── Cwise_boolean_and.cpp │ │ │ │ │ ├── Cwise_boolean_not.cpp │ │ │ │ │ ├── Cwise_boolean_or.cpp │ │ │ │ │ ├── Cwise_boolean_xor.cpp │ │ │ │ │ ├── Cwise_ceil.cpp │ │ │ │ │ ├── Cwise_cos.cpp │ │ │ │ │ ├── Cwise_cosh.cpp │ │ │ │ │ ├── Cwise_cube.cpp │ │ │ │ │ ├── Cwise_equal_equal.cpp │ │ │ │ │ ├── Cwise_exp.cpp │ │ │ │ │ ├── Cwise_floor.cpp │ │ │ │ │ ├── Cwise_greater.cpp │ │ │ │ │ ├── Cwise_greater_equal.cpp │ │ │ │ │ ├── Cwise_inverse.cpp │ │ │ │ │ ├── Cwise_isFinite.cpp │ │ │ │ │ ├── Cwise_isInf.cpp │ │ │ │ │ ├── Cwise_isNaN.cpp │ │ │ │ │ ├── Cwise_less.cpp │ │ │ │ │ ├── Cwise_less_equal.cpp │ │ │ │ │ ├── Cwise_log.cpp │ │ │ │ │ ├── Cwise_log10.cpp │ │ │ │ │ ├── Cwise_max.cpp │ │ │ │ │ ├── Cwise_min.cpp │ │ │ │ │ ├── Cwise_minus.cpp │ │ │ │ │ ├── Cwise_minus_equal.cpp │ │ │ │ │ ├── Cwise_not_equal.cpp │ │ │ │ │ ├── Cwise_plus.cpp │ │ │ │ │ ├── Cwise_plus_equal.cpp │ │ │ │ │ ├── Cwise_pow.cpp │ │ │ │ │ ├── Cwise_product.cpp │ │ │ │ │ ├── Cwise_quotient.cpp │ │ │ │ │ ├── Cwise_round.cpp │ │ │ │ │ ├── Cwise_scalar_power_array.cpp │ │ │ │ │ ├── Cwise_sign.cpp │ │ │ │ │ ├── Cwise_sin.cpp │ │ │ │ │ ├── Cwise_sinh.cpp │ │ │ │ │ ├── Cwise_slash_equal.cpp │ │ │ │ │ ├── Cwise_sqrt.cpp │ │ │ │ │ ├── Cwise_square.cpp │ │ │ │ │ ├── Cwise_tan.cpp │ │ │ │ │ ├── Cwise_tanh.cpp │ │ │ │ │ ├── Cwise_times_equal.cpp │ │ │ │ │ ├── DenseBase_LinSpaced.cpp │ │ │ │ │ ├── DenseBase_LinSpacedInt.cpp │ │ │ │ │ ├── DenseBase_LinSpaced_seq.cpp │ │ │ │ │ ├── DenseBase_setLinSpaced.cpp │ │ │ │ │ ├── DirectionWise_hnormalized.cpp │ │ │ │ │ ├── DirectionWise_replicate.cpp │ │ │ │ │ ├── DirectionWise_replicate_int.cpp │ │ │ │ │ ├── EigenSolver_EigenSolver_MatrixType.cpp │ │ │ │ │ ├── EigenSolver_compute.cpp │ │ │ │ │ ├── EigenSolver_eigenvalues.cpp │ │ │ │ │ ├── EigenSolver_eigenvectors.cpp │ │ │ │ │ ├── EigenSolver_pseudoEigenvectors.cpp │ │ │ │ │ ├── FullPivHouseholderQR_solve.cpp │ │ │ │ │ ├── FullPivLU_image.cpp │ │ │ │ │ ├── FullPivLU_kernel.cpp │ │ │ │ │ ├── FullPivLU_solve.cpp │ │ │ │ │ ├── GeneralizedEigenSolver.cpp │ │ │ │ │ ├── HessenbergDecomposition_compute.cpp │ │ │ │ │ ├── HessenbergDecomposition_matrixH.cpp │ │ │ │ │ ├── HessenbergDecomposition_packedMatrix.cpp │ │ │ │ │ ├── HouseholderQR_householderQ.cpp │ │ │ │ │ ├── HouseholderQR_solve.cpp │ │ │ │ │ ├── HouseholderSequence_HouseholderSequence.cpp │ │ │ │ │ ├── IOFormat.cpp │ │ │ │ │ ├── JacobiSVD_basic.cpp │ │ │ │ │ ├── Jacobi_makeGivens.cpp │ │ │ │ │ ├── Jacobi_makeJacobi.cpp │ │ │ │ │ ├── LLT_example.cpp │ │ │ │ │ ├── LLT_solve.cpp │ │ │ │ │ ├── LeastSquaresNormalEquations.cpp │ │ │ │ │ ├── LeastSquaresQR.cpp │ │ │ │ │ ├── Map_general_stride.cpp │ │ │ │ │ ├── Map_inner_stride.cpp │ │ │ │ │ ├── Map_outer_stride.cpp │ │ │ │ │ ├── Map_placement_new.cpp │ │ │ │ │ ├── Map_simple.cpp │ │ │ │ │ ├── MatrixBase_adjoint.cpp │ │ │ │ │ ├── MatrixBase_all.cpp │ │ │ │ │ ├── MatrixBase_applyOnTheLeft.cpp │ │ │ │ │ ├── MatrixBase_applyOnTheRight.cpp │ │ │ │ │ ├── MatrixBase_array.cpp │ │ │ │ │ ├── MatrixBase_array_const.cpp │ │ │ │ │ ├── MatrixBase_asDiagonal.cpp │ │ │ │ │ ├── MatrixBase_block_int_int.cpp │ │ │ │ │ ├── MatrixBase_block_int_int_int_int.cpp │ │ │ │ │ ├── MatrixBase_bottomLeftCorner_int_int.cpp │ │ │ │ │ ├── MatrixBase_bottomRightCorner_int_int.cpp │ │ │ │ │ ├── MatrixBase_bottomRows_int.cpp │ │ │ │ │ ├── MatrixBase_cast.cpp │ │ │ │ │ ├── MatrixBase_col.cpp │ │ │ │ │ ├── MatrixBase_colwise.cpp │ │ │ │ │ ├── MatrixBase_computeInverseAndDetWithCheck.cpp │ │ │ │ │ ├── MatrixBase_computeInverseWithCheck.cpp │ │ │ │ │ ├── MatrixBase_cwiseAbs.cpp │ │ │ │ │ ├── MatrixBase_cwiseAbs2.cpp │ │ │ │ │ ├── MatrixBase_cwiseEqual.cpp │ │ │ │ │ ├── MatrixBase_cwiseInverse.cpp │ │ │ │ │ ├── MatrixBase_cwiseMax.cpp │ │ │ │ │ ├── MatrixBase_cwiseMin.cpp │ │ │ │ │ ├── MatrixBase_cwiseNotEqual.cpp │ │ │ │ │ ├── MatrixBase_cwiseProduct.cpp │ │ │ │ │ ├── MatrixBase_cwiseQuotient.cpp │ │ │ │ │ ├── MatrixBase_cwiseSign.cpp │ │ │ │ │ ├── MatrixBase_cwiseSqrt.cpp │ │ │ │ │ ├── MatrixBase_diagonal.cpp │ │ │ │ │ ├── MatrixBase_diagonal_int.cpp │ │ │ │ │ ├── MatrixBase_diagonal_template_int.cpp │ │ │ │ │ ├── MatrixBase_eigenvalues.cpp │ │ │ │ │ ├── MatrixBase_end_int.cpp │ │ │ │ │ ├── MatrixBase_eval.cpp │ │ │ │ │ ├── MatrixBase_fixedBlock_int_int.cpp │ │ │ │ │ ├── MatrixBase_hnormalized.cpp │ │ │ │ │ ├── MatrixBase_homogeneous.cpp │ │ │ │ │ ├── MatrixBase_identity.cpp │ │ │ │ │ ├── MatrixBase_identity_int_int.cpp │ │ │ │ │ ├── MatrixBase_inverse.cpp │ │ │ │ │ ├── MatrixBase_isDiagonal.cpp │ │ │ │ │ ├── MatrixBase_isIdentity.cpp │ │ │ │ │ ├── MatrixBase_isOnes.cpp │ │ │ │ │ ├── MatrixBase_isOrthogonal.cpp │ │ │ │ │ ├── MatrixBase_isUnitary.cpp │ │ │ │ │ ├── MatrixBase_isZero.cpp │ │ │ │ │ ├── MatrixBase_leftCols_int.cpp │ │ │ │ │ ├── MatrixBase_noalias.cpp │ │ │ │ │ ├── MatrixBase_ones.cpp │ │ │ │ │ ├── MatrixBase_ones_int.cpp │ │ │ │ │ ├── MatrixBase_ones_int_int.cpp │ │ │ │ │ ├── MatrixBase_operatorNorm.cpp │ │ │ │ │ ├── MatrixBase_prod.cpp │ │ │ │ │ ├── MatrixBase_random.cpp │ │ │ │ │ ├── MatrixBase_random_int.cpp │ │ │ │ │ ├── MatrixBase_random_int_int.cpp │ │ │ │ │ ├── MatrixBase_replicate.cpp │ │ │ │ │ ├── MatrixBase_replicate_int_int.cpp │ │ │ │ │ ├── MatrixBase_reverse.cpp │ │ │ │ │ ├── MatrixBase_rightCols_int.cpp │ │ │ │ │ ├── MatrixBase_row.cpp │ │ │ │ │ ├── MatrixBase_rowwise.cpp │ │ │ │ │ ├── MatrixBase_segment_int_int.cpp │ │ │ │ │ ├── MatrixBase_select.cpp │ │ │ │ │ ├── MatrixBase_selfadjointView.cpp │ │ │ │ │ ├── MatrixBase_set.cpp │ │ │ │ │ ├── MatrixBase_setIdentity.cpp │ │ │ │ │ ├── MatrixBase_setOnes.cpp │ │ │ │ │ ├── MatrixBase_setRandom.cpp │ │ │ │ │ ├── MatrixBase_setZero.cpp │ │ │ │ │ ├── MatrixBase_start_int.cpp │ │ │ │ │ ├── MatrixBase_template_int_bottomRows.cpp │ │ │ │ │ ├── MatrixBase_template_int_end.cpp │ │ │ │ │ ├── MatrixBase_template_int_int_block_int_int_int_int.cpp │ │ │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner.cpp │ │ │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp │ │ │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner.cpp │ │ │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner_int_int.cpp │ │ │ │ │ ├── MatrixBase_template_int_int_topLeftCorner.cpp │ │ │ │ │ ├── MatrixBase_template_int_int_topLeftCorner_int_int.cpp │ │ │ │ │ ├── MatrixBase_template_int_int_topRightCorner.cpp │ │ │ │ │ ├── MatrixBase_template_int_int_topRightCorner_int_int.cpp │ │ │ │ │ ├── MatrixBase_template_int_leftCols.cpp │ │ │ │ │ ├── MatrixBase_template_int_rightCols.cpp │ │ │ │ │ ├── MatrixBase_template_int_segment.cpp │ │ │ │ │ ├── MatrixBase_template_int_start.cpp │ │ │ │ │ ├── MatrixBase_template_int_topRows.cpp │ │ │ │ │ ├── MatrixBase_topLeftCorner_int_int.cpp │ │ │ │ │ ├── MatrixBase_topRightCorner_int_int.cpp │ │ │ │ │ ├── MatrixBase_topRows_int.cpp │ │ │ │ │ ├── MatrixBase_transpose.cpp │ │ │ │ │ ├── MatrixBase_triangularView.cpp │ │ │ │ │ ├── MatrixBase_zero.cpp │ │ │ │ │ ├── MatrixBase_zero_int.cpp │ │ │ │ │ ├── MatrixBase_zero_int_int.cpp │ │ │ │ │ ├── Matrix_Map_stride.cpp │ │ │ │ │ ├── Matrix_resize_NoChange_int.cpp │ │ │ │ │ ├── Matrix_resize_int.cpp │ │ │ │ │ ├── Matrix_resize_int_NoChange.cpp │ │ │ │ │ ├── Matrix_resize_int_int.cpp │ │ │ │ │ ├── Matrix_setConstant_int.cpp │ │ │ │ │ ├── Matrix_setConstant_int_int.cpp │ │ │ │ │ ├── Matrix_setIdentity_int_int.cpp │ │ │ │ │ ├── Matrix_setOnes_int.cpp │ │ │ │ │ ├── Matrix_setOnes_int_int.cpp │ │ │ │ │ ├── Matrix_setRandom_int.cpp │ │ │ │ │ ├── Matrix_setRandom_int_int.cpp │ │ │ │ │ ├── Matrix_setZero_int.cpp │ │ │ │ │ ├── Matrix_setZero_int_int.cpp │ │ │ │ │ ├── PartialPivLU_solve.cpp │ │ │ │ │ ├── PartialRedux_count.cpp │ │ │ │ │ ├── PartialRedux_maxCoeff.cpp │ │ │ │ │ ├── PartialRedux_minCoeff.cpp │ │ │ │ │ ├── PartialRedux_norm.cpp │ │ │ │ │ ├── PartialRedux_prod.cpp │ │ │ │ │ ├── PartialRedux_squaredNorm.cpp │ │ │ │ │ ├── PartialRedux_sum.cpp │ │ │ │ │ ├── RealQZ_compute.cpp │ │ │ │ │ ├── RealSchur_RealSchur_MatrixType.cpp │ │ │ │ │ ├── RealSchur_compute.cpp │ │ │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp │ │ │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp │ │ │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp │ │ │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType.cpp │ │ │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType2.cpp │ │ │ │ │ ├── SelfAdjointEigenSolver_eigenvalues.cpp │ │ │ │ │ ├── SelfAdjointEigenSolver_eigenvectors.cpp │ │ │ │ │ ├── SelfAdjointEigenSolver_operatorInverseSqrt.cpp │ │ │ │ │ ├── SelfAdjointEigenSolver_operatorSqrt.cpp │ │ │ │ │ ├── SelfAdjointView_eigenvalues.cpp │ │ │ │ │ ├── SelfAdjointView_operatorNorm.cpp │ │ │ │ │ ├── SparseMatrix_coeffs.cpp │ │ │ │ │ ├── TopicAliasing_block.cpp │ │ │ │ │ ├── TopicAliasing_block_correct.cpp │ │ │ │ │ ├── TopicAliasing_cwise.cpp │ │ │ │ │ ├── TopicAliasing_mult1.cpp │ │ │ │ │ ├── TopicAliasing_mult2.cpp │ │ │ │ │ ├── TopicAliasing_mult3.cpp │ │ │ │ │ ├── TopicAliasing_mult4.cpp │ │ │ │ │ ├── TopicAliasing_mult5.cpp │ │ │ │ │ ├── TopicStorageOrders_example.cpp │ │ │ │ │ ├── Triangular_solve.cpp │ │ │ │ │ ├── Tridiagonalization_Tridiagonalization_MatrixType.cpp │ │ │ │ │ ├── Tridiagonalization_compute.cpp │ │ │ │ │ ├── Tridiagonalization_decomposeInPlace.cpp │ │ │ │ │ ├── Tridiagonalization_diagonal.cpp │ │ │ │ │ ├── Tridiagonalization_householderCoefficients.cpp │ │ │ │ │ ├── Tridiagonalization_packedMatrix.cpp │ │ │ │ │ ├── Tutorial_AdvancedInitialization_Block.cpp │ │ │ │ │ ├── Tutorial_AdvancedInitialization_CommaTemporary.cpp │ │ │ │ │ ├── Tutorial_AdvancedInitialization_Join.cpp │ │ │ │ │ ├── Tutorial_AdvancedInitialization_LinSpaced.cpp │ │ │ │ │ ├── Tutorial_AdvancedInitialization_ThreeWays.cpp │ │ │ │ │ ├── Tutorial_AdvancedInitialization_Zero.cpp │ │ │ │ │ ├── Tutorial_Map_rowmajor.cpp │ │ │ │ │ ├── Tutorial_Map_using.cpp │ │ │ │ │ ├── Tutorial_ReshapeMat2Mat.cpp │ │ │ │ │ ├── Tutorial_ReshapeMat2Vec.cpp │ │ │ │ │ ├── Tutorial_SlicingCol.cpp │ │ │ │ │ ├── Tutorial_SlicingVec.cpp │ │ │ │ │ ├── Tutorial_commainit_01.cpp │ │ │ │ │ ├── Tutorial_commainit_01b.cpp │ │ │ │ │ ├── Tutorial_commainit_02.cpp │ │ │ │ │ ├── Tutorial_solve_matrix_inverse.cpp │ │ │ │ │ ├── Tutorial_solve_multiple_rhs.cpp │ │ │ │ │ ├── Tutorial_solve_reuse_decomposition.cpp │ │ │ │ │ ├── Tutorial_solve_singular.cpp │ │ │ │ │ ├── Tutorial_solve_triangular.cpp │ │ │ │ │ ├── Tutorial_solve_triangular_inplace.cpp │ │ │ │ │ ├── VectorwiseOp_homogeneous.cpp │ │ │ │ │ ├── Vectorwise_reverse.cpp │ │ │ │ │ ├── class_FullPivLU.cpp │ │ │ │ │ ├── compile_snippet.cpp.in │ │ │ │ │ ├── tut_arithmetic_redux_minmax.cpp │ │ │ │ │ ├── tut_arithmetic_transpose_aliasing.cpp │ │ │ │ │ ├── tut_arithmetic_transpose_conjugate.cpp │ │ │ │ │ ├── tut_arithmetic_transpose_inplace.cpp │ │ │ │ │ └── tut_matrix_assignment_resizing.cpp │ │ │ │ ├── special_examples │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Tutorial_sparse_example.cpp │ │ │ │ │ ├── Tutorial_sparse_example_details.cpp │ │ │ │ │ └── random_cpp11.cpp │ │ │ │ └── tutorial.cpp │ │ │ ├── eigen3.pc.in │ │ │ ├── failtest │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bdcsvd_int.cpp │ │ │ │ ├── block_nonconst_ctor_on_const_xpr_0.cpp │ │ │ │ ├── block_nonconst_ctor_on_const_xpr_1.cpp │ │ │ │ ├── block_nonconst_ctor_on_const_xpr_2.cpp │ │ │ │ ├── block_on_const_type_actually_const_0.cpp │ │ │ │ ├── block_on_const_type_actually_const_1.cpp │ │ │ │ ├── colpivqr_int.cpp │ │ │ │ ├── const_qualified_block_method_retval_0.cpp │ │ │ │ ├── const_qualified_block_method_retval_1.cpp │ │ │ │ ├── const_qualified_diagonal_method_retval.cpp │ │ │ │ ├── const_qualified_transpose_method_retval.cpp │ │ │ │ ├── cwiseunaryview_nonconst_ctor_on_const_xpr.cpp │ │ │ │ ├── cwiseunaryview_on_const_type_actually_const.cpp │ │ │ │ ├── diagonal_nonconst_ctor_on_const_xpr.cpp │ │ │ │ ├── diagonal_on_const_type_actually_const.cpp │ │ │ │ ├── eigensolver_cplx.cpp │ │ │ │ ├── eigensolver_int.cpp │ │ │ │ ├── failtest_sanity_check.cpp │ │ │ │ ├── fullpivlu_int.cpp │ │ │ │ ├── fullpivqr_int.cpp │ │ │ │ ├── jacobisvd_int.cpp │ │ │ │ ├── ldlt_int.cpp │ │ │ │ ├── llt_int.cpp │ │ │ │ ├── map_nonconst_ctor_on_const_ptr_0.cpp │ │ │ │ ├── map_nonconst_ctor_on_const_ptr_1.cpp │ │ │ │ ├── map_nonconst_ctor_on_const_ptr_2.cpp │ │ │ │ ├── map_nonconst_ctor_on_const_ptr_3.cpp │ │ │ │ ├── map_nonconst_ctor_on_const_ptr_4.cpp │ │ │ │ ├── map_on_const_type_actually_const_0.cpp │ │ │ │ ├── map_on_const_type_actually_const_1.cpp │ │ │ │ ├── partialpivlu_int.cpp │ │ │ │ ├── qr_int.cpp │ │ │ │ ├── ref_1.cpp │ │ │ │ ├── ref_2.cpp │ │ │ │ ├── ref_3.cpp │ │ │ │ ├── ref_4.cpp │ │ │ │ ├── ref_5.cpp │ │ │ │ ├── selfadjointview_nonconst_ctor_on_const_xpr.cpp │ │ │ │ ├── selfadjointview_on_const_type_actually_const.cpp │ │ │ │ ├── sparse_ref_1.cpp │ │ │ │ ├── sparse_ref_2.cpp │ │ │ │ ├── sparse_ref_3.cpp │ │ │ │ ├── sparse_ref_4.cpp │ │ │ │ ├── sparse_ref_5.cpp │ │ │ │ ├── sparse_storage_mismatch.cpp │ │ │ │ ├── swap_1.cpp │ │ │ │ ├── swap_2.cpp │ │ │ │ ├── ternary_1.cpp │ │ │ │ ├── ternary_2.cpp │ │ │ │ ├── transpose_nonconst_ctor_on_const_xpr.cpp │ │ │ │ ├── transpose_on_const_type_actually_const.cpp │ │ │ │ ├── triangularview_nonconst_ctor_on_const_xpr.cpp │ │ │ │ └── triangularview_on_const_type_actually_const.cpp │ │ │ ├── lapack │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── cholesky.cpp │ │ │ │ ├── clacgv.f │ │ │ │ ├── cladiv.f │ │ │ │ ├── clarf.f │ │ │ │ ├── clarfb.f │ │ │ │ ├── clarfg.f │ │ │ │ ├── clarft.f │ │ │ │ ├── complex_double.cpp │ │ │ │ ├── complex_single.cpp │ │ │ │ ├── dladiv.f │ │ │ │ ├── dlamch.f │ │ │ │ ├── dlapy2.f │ │ │ │ ├── dlapy3.f │ │ │ │ ├── dlarf.f │ │ │ │ ├── dlarfb.f │ │ │ │ ├── dlarfg.f │ │ │ │ ├── dlarft.f │ │ │ │ ├── double.cpp │ │ │ │ ├── dsecnd_NONE.f │ │ │ │ ├── eigenvalues.cpp │ │ │ │ ├── ilaclc.f │ │ │ │ ├── ilaclr.f │ │ │ │ ├── iladlc.f │ │ │ │ ├── iladlr.f │ │ │ │ ├── ilaslc.f │ │ │ │ ├── ilaslr.f │ │ │ │ ├── ilazlc.f │ │ │ │ ├── ilazlr.f │ │ │ │ ├── lapack_common.h │ │ │ │ ├── lu.cpp │ │ │ │ ├── second_NONE.f │ │ │ │ ├── single.cpp │ │ │ │ ├── sladiv.f │ │ │ │ ├── slamch.f │ │ │ │ ├── slapy2.f │ │ │ │ ├── slapy3.f │ │ │ │ ├── slarf.f │ │ │ │ ├── slarfb.f │ │ │ │ ├── slarfg.f │ │ │ │ ├── slarft.f │ │ │ │ ├── svd.cpp │ │ │ │ ├── zlacgv.f │ │ │ │ ├── zladiv.f │ │ │ │ ├── zlarf.f │ │ │ │ ├── zlarfb.f │ │ │ │ ├── zlarfg.f │ │ │ │ └── zlarft.f │ │ │ ├── scripts │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── buildtests.in │ │ │ │ ├── cdashtesting.cmake.in │ │ │ │ ├── check.in │ │ │ │ ├── debug.in │ │ │ │ ├── eigen_gen_credits.cpp │ │ │ │ ├── eigen_gen_docs │ │ │ │ ├── eigen_monitor_perf.sh │ │ │ │ ├── release.in │ │ │ │ └── relicense.py │ │ │ ├── signature_of_eigen3_matrix_library │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── adjoint.cpp │ │ │ │ ├── array.cpp │ │ │ │ ├── array_for_matrix.cpp │ │ │ │ ├── array_of_string.cpp │ │ │ │ ├── array_replicate.cpp │ │ │ │ ├── array_reverse.cpp │ │ │ │ ├── bandmatrix.cpp │ │ │ │ ├── basicstuff.cpp │ │ │ │ ├── bdcsvd.cpp │ │ │ │ ├── bicgstab.cpp │ │ │ │ ├── block.cpp │ │ │ │ ├── boostmultiprec.cpp │ │ │ │ ├── bug1213.cpp │ │ │ │ ├── bug1213.h │ │ │ │ ├── bug1213_main.cpp │ │ │ │ ├── cholesky.cpp │ │ │ │ ├── cholmod_support.cpp │ │ │ │ ├── commainitializer.cpp │ │ │ │ ├── conjugate_gradient.cpp │ │ │ │ ├── conservative_resize.cpp │ │ │ │ ├── constructor.cpp │ │ │ │ ├── corners.cpp │ │ │ │ ├── ctorleak.cpp │ │ │ │ ├── cuda_basic.cu │ │ │ │ ├── cuda_common.h │ │ │ │ ├── denseLM.cpp │ │ │ │ ├── dense_storage.cpp │ │ │ │ ├── determinant.cpp │ │ │ │ ├── diagonal.cpp │ │ │ │ ├── diagonalmatrices.cpp │ │ │ │ ├── dontalign.cpp │ │ │ │ ├── dynalloc.cpp │ │ │ │ ├── eigen2support.cpp │ │ │ │ ├── eigensolver_complex.cpp │ │ │ │ ├── eigensolver_generalized_real.cpp │ │ │ │ ├── eigensolver_generic.cpp │ │ │ │ ├── eigensolver_selfadjoint.cpp │ │ │ │ ├── evaluator_common.h │ │ │ │ ├── evaluators.cpp │ │ │ │ ├── exceptions.cpp │ │ │ │ ├── fastmath.cpp │ │ │ │ ├── first_aligned.cpp │ │ │ │ ├── geo_alignedbox.cpp │ │ │ │ ├── geo_eulerangles.cpp │ │ │ │ ├── geo_homogeneous.cpp │ │ │ │ ├── geo_hyperplane.cpp │ │ │ │ ├── geo_orthomethods.cpp │ │ │ │ ├── geo_parametrizedline.cpp │ │ │ │ ├── geo_quaternion.cpp │ │ │ │ ├── geo_transformations.cpp │ │ │ │ ├── half_float.cpp │ │ │ │ ├── hessenberg.cpp │ │ │ │ ├── householder.cpp │ │ │ │ ├── incomplete_cholesky.cpp │ │ │ │ ├── indexed_view.cpp │ │ │ │ ├── inplace_decomposition.cpp │ │ │ │ ├── integer_types.cpp │ │ │ │ ├── inverse.cpp │ │ │ │ ├── is_same_dense.cpp │ │ │ │ ├── jacobi.cpp │ │ │ │ ├── jacobisvd.cpp │ │ │ │ ├── klu_support.cpp │ │ │ │ ├── linearstructure.cpp │ │ │ │ ├── lscg.cpp │ │ │ │ ├── lu.cpp │ │ │ │ ├── main.h │ │ │ │ ├── mapped_matrix.cpp │ │ │ │ ├── mapstaticmethods.cpp │ │ │ │ ├── mapstride.cpp │ │ │ │ ├── meta.cpp │ │ │ │ ├── metis_support.cpp │ │ │ │ ├── miscmatrices.cpp │ │ │ │ ├── mixingtypes.cpp │ │ │ │ ├── mpl2only.cpp │ │ │ │ ├── nesting_ops.cpp │ │ │ │ ├── nomalloc.cpp │ │ │ │ ├── nullary.cpp │ │ │ │ ├── num_dimensions.cpp │ │ │ │ ├── numext.cpp │ │ │ │ ├── packetmath.cpp │ │ │ │ ├── pardiso_support.cpp │ │ │ │ ├── pastix_support.cpp │ │ │ │ ├── permutationmatrices.cpp │ │ │ │ ├── prec_inverse_4x4.cpp │ │ │ │ ├── product.h │ │ │ │ ├── product_extra.cpp │ │ │ │ ├── product_large.cpp │ │ │ │ ├── product_mmtr.cpp │ │ │ │ ├── product_notemporary.cpp │ │ │ │ ├── product_selfadjoint.cpp │ │ │ │ ├── product_small.cpp │ │ │ │ ├── product_symm.cpp │ │ │ │ ├── product_syrk.cpp │ │ │ │ ├── product_trmm.cpp │ │ │ │ ├── product_trmv.cpp │ │ │ │ ├── product_trsolve.cpp │ │ │ │ ├── qr.cpp │ │ │ │ ├── qr_colpivoting.cpp │ │ │ │ ├── qr_fullpivoting.cpp │ │ │ │ ├── qtvector.cpp │ │ │ │ ├── rand.cpp │ │ │ │ ├── real_qz.cpp │ │ │ │ ├── redux.cpp │ │ │ │ ├── ref.cpp │ │ │ │ ├── resize.cpp │ │ │ │ ├── rvalue_types.cpp │ │ │ │ ├── schur_complex.cpp │ │ │ │ ├── schur_real.cpp │ │ │ │ ├── selfadjoint.cpp │ │ │ │ ├── simplicial_cholesky.cpp │ │ │ │ ├── sizeof.cpp │ │ │ │ ├── sizeoverflow.cpp │ │ │ │ ├── smallvectors.cpp │ │ │ │ ├── sparse.h │ │ │ │ ├── sparseLM.cpp │ │ │ │ ├── sparse_basic.cpp │ │ │ │ ├── sparse_block.cpp │ │ │ │ ├── sparse_permutations.cpp │ │ │ │ ├── sparse_product.cpp │ │ │ │ ├── sparse_ref.cpp │ │ │ │ ├── sparse_solver.h │ │ │ │ ├── sparse_solvers.cpp │ │ │ │ ├── sparse_vector.cpp │ │ │ │ ├── sparselu.cpp │ │ │ │ ├── sparseqr.cpp │ │ │ │ ├── special_numbers.cpp │ │ │ │ ├── spqr_support.cpp │ │ │ │ ├── stable_norm.cpp │ │ │ │ ├── stddeque.cpp │ │ │ │ ├── stddeque_overload.cpp │ │ │ │ ├── stdlist.cpp │ │ │ │ ├── stdlist_overload.cpp │ │ │ │ ├── stdvector.cpp │ │ │ │ ├── stdvector_overload.cpp │ │ │ │ ├── superlu_support.cpp │ │ │ │ ├── svd_common.h │ │ │ │ ├── svd_fill.h │ │ │ │ ├── swap.cpp │ │ │ │ ├── symbolic_index.cpp │ │ │ │ ├── triangular.cpp │ │ │ │ ├── umeyama.cpp │ │ │ │ ├── umfpack_support.cpp │ │ │ │ ├── unalignedassert.cpp │ │ │ │ ├── unalignedcount.cpp │ │ │ │ ├── upperbidiagonalization.cpp │ │ │ │ ├── vectorization_logic.cpp │ │ │ │ ├── vectorwiseop.cpp │ │ │ │ ├── visitor.cpp │ │ │ │ └── zerosized.cpp │ │ │ └── unsupported │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Eigen │ │ │ │ ├── AdolcForward │ │ │ │ ├── AlignedVector3 │ │ │ │ ├── ArpackSupport │ │ │ │ ├── AutoDiff │ │ │ │ ├── BVH │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CXX11 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Tensor │ │ │ │ │ ├── TensorSymmetry │ │ │ │ │ ├── ThreadPool │ │ │ │ │ └── src │ │ │ │ │ │ ├── Tensor │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── Tensor.h │ │ │ │ │ │ ├── TensorArgMax.h │ │ │ │ │ │ ├── TensorArgMaxSycl.h │ │ │ │ │ │ ├── TensorAssign.h │ │ │ │ │ │ ├── TensorBase.h │ │ │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ │ │ ├── TensorChipping.h │ │ │ │ │ │ ├── TensorConcatenation.h │ │ │ │ │ │ ├── TensorContraction.h │ │ │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ │ │ ├── TensorContractionSycl.h │ │ │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ │ │ ├── TensorConversion.h │ │ │ │ │ │ ├── TensorConvolution.h │ │ │ │ │ │ ├── TensorConvolutionSycl.h │ │ │ │ │ │ ├── TensorCostModel.h │ │ │ │ │ │ ├── TensorCustomOp.h │ │ │ │ │ │ ├── TensorDevice.h │ │ │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ │ │ ├── TensorDeviceDefault.h │ │ │ │ │ │ ├── TensorDeviceSycl.h │ │ │ │ │ │ ├── TensorDeviceThreadPool.h │ │ │ │ │ │ ├── TensorDimensionList.h │ │ │ │ │ │ ├── TensorDimensions.h │ │ │ │ │ │ ├── TensorEvalTo.h │ │ │ │ │ │ ├── TensorEvaluator.h │ │ │ │ │ │ ├── TensorExecutor.h │ │ │ │ │ │ ├── TensorExpr.h │ │ │ │ │ │ ├── TensorFFT.h │ │ │ │ │ │ ├── TensorFixedSize.h │ │ │ │ │ │ ├── TensorForcedEval.h │ │ │ │ │ │ ├── TensorForwardDeclarations.h │ │ │ │ │ │ ├── TensorFunctors.h │ │ │ │ │ │ ├── TensorGenerator.h │ │ │ │ │ │ ├── TensorGlobalFunctions.h │ │ │ │ │ │ ├── TensorIO.h │ │ │ │ │ │ ├── TensorImagePatch.h │ │ │ │ │ │ ├── TensorIndexList.h │ │ │ │ │ │ ├── TensorInflation.h │ │ │ │ │ │ ├── TensorInitializer.h │ │ │ │ │ │ ├── TensorIntDiv.h │ │ │ │ │ │ ├── TensorLayoutSwap.h │ │ │ │ │ │ ├── TensorMacros.h │ │ │ │ │ │ ├── TensorMap.h │ │ │ │ │ │ ├── TensorMeta.h │ │ │ │ │ │ ├── TensorMorphing.h │ │ │ │ │ │ ├── TensorPadding.h │ │ │ │ │ │ ├── TensorPatch.h │ │ │ │ │ │ ├── TensorRandom.h │ │ │ │ │ │ ├── TensorReduction.h │ │ │ │ │ │ ├── TensorReductionCuda.h │ │ │ │ │ │ ├── TensorReductionSycl.h │ │ │ │ │ │ ├── TensorRef.h │ │ │ │ │ │ ├── TensorReverse.h │ │ │ │ │ │ ├── TensorScan.h │ │ │ │ │ │ ├── TensorShuffling.h │ │ │ │ │ │ ├── TensorStorage.h │ │ │ │ │ │ ├── TensorStriding.h │ │ │ │ │ │ ├── TensorSycl.h │ │ │ │ │ │ ├── TensorSyclConvertToDeviceExpression.h │ │ │ │ │ │ ├── TensorSyclExprConstructor.h │ │ │ │ │ │ ├── TensorSyclExtractAccessor.h │ │ │ │ │ │ ├── TensorSyclExtractFunctors.h │ │ │ │ │ │ ├── TensorSyclFunctors.h │ │ │ │ │ │ ├── TensorSyclLeafCount.h │ │ │ │ │ │ ├── TensorSyclPlaceHolderExpr.h │ │ │ │ │ │ ├── TensorSyclRun.h │ │ │ │ │ │ ├── TensorSyclTuple.h │ │ │ │ │ │ ├── TensorTrace.h │ │ │ │ │ │ ├── TensorTraits.h │ │ │ │ │ │ ├── TensorUInt128.h │ │ │ │ │ │ └── TensorVolumePatch.h │ │ │ │ │ │ ├── TensorSymmetry │ │ │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ │ │ ├── StaticSymmetry.h │ │ │ │ │ │ ├── Symmetry.h │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ │ │ ├── ThreadPool │ │ │ │ │ │ ├── EventCount.h │ │ │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ │ │ ├── RunQueue.h │ │ │ │ │ │ ├── SimpleThreadPool.h │ │ │ │ │ │ ├── ThreadCancel.h │ │ │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ │ │ ├── ThreadLocal.h │ │ │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ │ │ └── ThreadYield.h │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── CXX11Meta.h │ │ │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ │ │ ├── EmulateArray.h │ │ │ │ │ │ ├── EmulateCXX11Meta.h │ │ │ │ │ │ └── MaxSizeVector.h │ │ │ │ ├── EulerAngles │ │ │ │ ├── FFT │ │ │ │ ├── IterativeSolvers │ │ │ │ ├── KroneckerProduct │ │ │ │ ├── LevenbergMarquardt │ │ │ │ ├── MPRealSupport │ │ │ │ ├── MatrixFunctions │ │ │ │ ├── MoreVectorization │ │ │ │ ├── NonLinearOptimization │ │ │ │ ├── NumericalDiff │ │ │ │ ├── OpenGLSupport │ │ │ │ ├── Polynomials │ │ │ │ ├── Skyline │ │ │ │ ├── SparseExtra │ │ │ │ ├── SpecialFunctions │ │ │ │ ├── Splines │ │ │ │ └── src │ │ │ │ │ ├── AutoDiff │ │ │ │ │ ├── AutoDiffJacobian.h │ │ │ │ │ ├── AutoDiffScalar.h │ │ │ │ │ └── AutoDiffVector.h │ │ │ │ │ ├── BVH │ │ │ │ │ ├── BVAlgorithms.h │ │ │ │ │ └── KdBVH.h │ │ │ │ │ ├── Eigenvalues │ │ │ │ │ └── ArpackSelfAdjointEigenSolver.h │ │ │ │ │ ├── EulerAngles │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── EulerAngles.h │ │ │ │ │ └── EulerSystem.h │ │ │ │ │ ├── FFT │ │ │ │ │ ├── ei_fftw_impl.h │ │ │ │ │ └── ei_kissfft_impl.h │ │ │ │ │ ├── IterativeSolvers │ │ │ │ │ ├── ConstrainedConjGrad.h │ │ │ │ │ ├── DGMRES.h │ │ │ │ │ ├── GMRES.h │ │ │ │ │ ├── IncompleteLU.h │ │ │ │ │ ├── IterationController.h │ │ │ │ │ ├── MINRES.h │ │ │ │ │ └── Scaling.h │ │ │ │ │ ├── KroneckerProduct │ │ │ │ │ └── KroneckerTensorProduct.h │ │ │ │ │ ├── LevenbergMarquardt │ │ │ │ │ ├── CopyrightMINPACK.txt │ │ │ │ │ ├── LMcovar.h │ │ │ │ │ ├── LMonestep.h │ │ │ │ │ ├── LMpar.h │ │ │ │ │ ├── LMqrsolv.h │ │ │ │ │ └── LevenbergMarquardt.h │ │ │ │ │ ├── MatrixFunctions │ │ │ │ │ ├── MatrixExponential.h │ │ │ │ │ ├── MatrixFunction.h │ │ │ │ │ ├── MatrixLogarithm.h │ │ │ │ │ ├── MatrixPower.h │ │ │ │ │ ├── MatrixSquareRoot.h │ │ │ │ │ └── StemFunction.h │ │ │ │ │ ├── MoreVectorization │ │ │ │ │ └── MathFunctions.h │ │ │ │ │ ├── NonLinearOptimization │ │ │ │ │ ├── HybridNonLinearSolver.h │ │ │ │ │ ├── LevenbergMarquardt.h │ │ │ │ │ ├── chkder.h │ │ │ │ │ ├── covar.h │ │ │ │ │ ├── dogleg.h │ │ │ │ │ ├── fdjac1.h │ │ │ │ │ ├── lmpar.h │ │ │ │ │ ├── qrsolv.h │ │ │ │ │ ├── r1mpyq.h │ │ │ │ │ ├── r1updt.h │ │ │ │ │ └── rwupdt.h │ │ │ │ │ ├── NumericalDiff │ │ │ │ │ └── NumericalDiff.h │ │ │ │ │ ├── Polynomials │ │ │ │ │ ├── Companion.h │ │ │ │ │ ├── PolynomialSolver.h │ │ │ │ │ └── PolynomialUtils.h │ │ │ │ │ ├── Skyline │ │ │ │ │ ├── SkylineInplaceLU.h │ │ │ │ │ ├── SkylineMatrix.h │ │ │ │ │ ├── SkylineMatrixBase.h │ │ │ │ │ ├── SkylineProduct.h │ │ │ │ │ ├── SkylineStorage.h │ │ │ │ │ └── SkylineUtil.h │ │ │ │ │ ├── SparseExtra │ │ │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ │ │ ├── BlockSparseMatrix.h │ │ │ │ │ ├── DynamicSparseMatrix.h │ │ │ │ │ ├── MarketIO.h │ │ │ │ │ ├── MatrixMarketIterator.h │ │ │ │ │ └── RandomSetter.h │ │ │ │ │ ├── SpecialFunctions │ │ │ │ │ ├── SpecialFunctionsArrayAPI.h │ │ │ │ │ ├── SpecialFunctionsFunctors.h │ │ │ │ │ ├── SpecialFunctionsHalf.h │ │ │ │ │ ├── SpecialFunctionsImpl.h │ │ │ │ │ ├── SpecialFunctionsPacketMath.h │ │ │ │ │ └── arch │ │ │ │ │ │ └── CUDA │ │ │ │ │ │ └── CudaSpecialFunctions.h │ │ │ │ │ └── Splines │ │ │ │ │ ├── Spline.h │ │ │ │ │ ├── SplineFitting.h │ │ │ │ │ └── SplineFwd.h │ │ │ │ ├── README.txt │ │ │ │ ├── bench │ │ │ │ └── bench_svd.cpp │ │ │ │ ├── doc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Overview.dox │ │ │ │ ├── eigendoxy_layout.xml.in │ │ │ │ ├── examples │ │ │ │ │ ├── BVH_Example.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── EulerAngles.cpp │ │ │ │ │ ├── FFT.cpp │ │ │ │ │ ├── MatrixExponential.cpp │ │ │ │ │ ├── MatrixFunction.cpp │ │ │ │ │ ├── MatrixLogarithm.cpp │ │ │ │ │ ├── MatrixPower.cpp │ │ │ │ │ ├── MatrixPower_optimal.cpp │ │ │ │ │ ├── MatrixSine.cpp │ │ │ │ │ ├── MatrixSinh.cpp │ │ │ │ │ ├── MatrixSquareRoot.cpp │ │ │ │ │ ├── PolynomialSolver1.cpp │ │ │ │ │ └── PolynomialUtils1.cpp │ │ │ │ └── snippets │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── test │ │ │ │ ├── BVH.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── EulerAngles.cpp │ │ │ │ ├── FFT.cpp │ │ │ │ ├── FFTW.cpp │ │ │ │ ├── NonLinearOptimization.cpp │ │ │ │ ├── NumericalDiff.cpp │ │ │ │ ├── alignedvector3.cpp │ │ │ │ ├── autodiff.cpp │ │ │ │ ├── autodiff_scalar.cpp │ │ │ │ ├── cxx11_eventcount.cpp │ │ │ │ ├── cxx11_meta.cpp │ │ │ │ ├── cxx11_non_blocking_thread_pool.cpp │ │ │ │ ├── cxx11_runqueue.cpp │ │ │ │ ├── cxx11_tensor_argmax.cpp │ │ │ │ ├── cxx11_tensor_argmax_cuda.cu │ │ │ │ ├── cxx11_tensor_argmax_sycl.cpp │ │ │ │ ├── cxx11_tensor_assign.cpp │ │ │ │ ├── cxx11_tensor_broadcast_sycl.cpp │ │ │ │ ├── cxx11_tensor_broadcasting.cpp │ │ │ │ ├── cxx11_tensor_builtins_sycl.cpp │ │ │ │ ├── cxx11_tensor_cast_float16_cuda.cu │ │ │ │ ├── cxx11_tensor_casts.cpp │ │ │ │ ├── cxx11_tensor_chipping.cpp │ │ │ │ ├── cxx11_tensor_chipping_sycl.cpp │ │ │ │ ├── cxx11_tensor_comparisons.cpp │ │ │ │ ├── cxx11_tensor_complex_cuda.cu │ │ │ │ ├── cxx11_tensor_complex_cwise_ops_cuda.cu │ │ │ │ ├── cxx11_tensor_concatenation.cpp │ │ │ │ ├── cxx11_tensor_concatenation_sycl.cpp │ │ │ │ ├── cxx11_tensor_const.cpp │ │ │ │ ├── cxx11_tensor_contract_cuda.cu │ │ │ │ ├── cxx11_tensor_contract_sycl.cpp │ │ │ │ ├── cxx11_tensor_contraction.cpp │ │ │ │ ├── cxx11_tensor_convolution.cpp │ │ │ │ ├── cxx11_tensor_convolution_sycl.cpp │ │ │ │ ├── cxx11_tensor_cuda.cu │ │ │ │ ├── cxx11_tensor_custom_index.cpp │ │ │ │ ├── cxx11_tensor_custom_op.cpp │ │ │ │ ├── cxx11_tensor_custom_op_sycl.cpp │ │ │ │ ├── cxx11_tensor_device.cu │ │ │ │ ├── cxx11_tensor_device_sycl.cpp │ │ │ │ ├── cxx11_tensor_dimension.cpp │ │ │ │ ├── cxx11_tensor_empty.cpp │ │ │ │ ├── cxx11_tensor_expr.cpp │ │ │ │ ├── cxx11_tensor_fft.cpp │ │ │ │ ├── cxx11_tensor_fixed_size.cpp │ │ │ │ ├── cxx11_tensor_forced_eval.cpp │ │ │ │ ├── cxx11_tensor_forced_eval_sycl.cpp │ │ │ │ ├── cxx11_tensor_generator.cpp │ │ │ │ ├── cxx11_tensor_generator_sycl.cpp │ │ │ │ ├── cxx11_tensor_ifft.cpp │ │ │ │ ├── cxx11_tensor_image_patch.cpp │ │ │ │ ├── cxx11_tensor_image_patch_sycl.cpp │ │ │ │ ├── cxx11_tensor_index_list.cpp │ │ │ │ ├── cxx11_tensor_inflation.cpp │ │ │ │ ├── cxx11_tensor_inflation_sycl.cpp │ │ │ │ ├── cxx11_tensor_intdiv.cpp │ │ │ │ ├── cxx11_tensor_io.cpp │ │ │ │ ├── cxx11_tensor_layout_swap.cpp │ │ │ │ ├── cxx11_tensor_layout_swap_sycl.cpp │ │ │ │ ├── cxx11_tensor_lvalue.cpp │ │ │ │ ├── cxx11_tensor_map.cpp │ │ │ │ ├── cxx11_tensor_math.cpp │ │ │ │ ├── cxx11_tensor_mixed_indices.cpp │ │ │ │ ├── cxx11_tensor_morphing.cpp │ │ │ │ ├── cxx11_tensor_morphing_sycl.cpp │ │ │ │ ├── cxx11_tensor_notification.cpp │ │ │ │ ├── cxx11_tensor_of_complex.cpp │ │ │ │ ├── cxx11_tensor_of_const_values.cpp │ │ │ │ ├── cxx11_tensor_of_float16_cuda.cu │ │ │ │ ├── cxx11_tensor_of_strings.cpp │ │ │ │ ├── cxx11_tensor_padding.cpp │ │ │ │ ├── cxx11_tensor_padding_sycl.cpp │ │ │ │ ├── cxx11_tensor_patch.cpp │ │ │ │ ├── cxx11_tensor_patch_sycl.cpp │ │ │ │ ├── cxx11_tensor_random.cpp │ │ │ │ ├── cxx11_tensor_random_cuda.cu │ │ │ │ ├── cxx11_tensor_reduction.cpp │ │ │ │ ├── cxx11_tensor_reduction_cuda.cu │ │ │ │ ├── cxx11_tensor_reduction_sycl.cpp │ │ │ │ ├── cxx11_tensor_ref.cpp │ │ │ │ ├── cxx11_tensor_reverse.cpp │ │ │ │ ├── cxx11_tensor_reverse_sycl.cpp │ │ │ │ ├── cxx11_tensor_roundings.cpp │ │ │ │ ├── cxx11_tensor_scan.cpp │ │ │ │ ├── cxx11_tensor_scan_cuda.cu │ │ │ │ ├── cxx11_tensor_shuffling.cpp │ │ │ │ ├── cxx11_tensor_shuffling_sycl.cpp │ │ │ │ ├── cxx11_tensor_simple.cpp │ │ │ │ ├── cxx11_tensor_striding.cpp │ │ │ │ ├── cxx11_tensor_striding_sycl.cpp │ │ │ │ ├── cxx11_tensor_sugar.cpp │ │ │ │ ├── cxx11_tensor_sycl.cpp │ │ │ │ ├── cxx11_tensor_symmetry.cpp │ │ │ │ ├── cxx11_tensor_thread_pool.cpp │ │ │ │ ├── cxx11_tensor_trace.cpp │ │ │ │ ├── cxx11_tensor_uint128.cpp │ │ │ │ ├── cxx11_tensor_volume_patch.cpp │ │ │ │ ├── cxx11_tensor_volume_patch_sycl.cpp │ │ │ │ ├── dgmres.cpp │ │ │ │ ├── forward_adolc.cpp │ │ │ │ ├── gmres.cpp │ │ │ │ ├── kronecker_product.cpp │ │ │ │ ├── levenberg_marquardt.cpp │ │ │ │ ├── matrix_exponential.cpp │ │ │ │ ├── matrix_function.cpp │ │ │ │ ├── matrix_functions.h │ │ │ │ ├── matrix_power.cpp │ │ │ │ ├── matrix_square_root.cpp │ │ │ │ ├── minres.cpp │ │ │ │ ├── mpreal │ │ │ │ └── mpreal.h │ │ │ │ ├── mpreal_support.cpp │ │ │ │ ├── openglsupport.cpp │ │ │ │ ├── polynomialsolver.cpp │ │ │ │ ├── polynomialutils.cpp │ │ │ │ ├── sparse_extra.cpp │ │ │ │ ├── special_functions.cpp │ │ │ │ └── splines.cpp │ │ ├── farmhash │ │ │ ├── COPYING │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── Understanding_Hash_Functions │ │ │ ├── aclocal.m4 │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.h.in │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── dev │ │ │ │ ├── INSTRUCTIONS │ │ │ │ ├── PATCH │ │ │ │ ├── SELFTESTCityHash128WithSeed │ │ │ │ ├── SELFTESTFingerprint128 │ │ │ │ ├── SELFTESTHash32 │ │ │ │ ├── SELFTESTHash32WithSeed │ │ │ │ ├── SELFTESTHash64 │ │ │ │ ├── SELFTESTHash64WithSeed │ │ │ │ ├── SELFTESTHash64WithSeeds │ │ │ │ ├── TESTBOILERPLATEHash32 │ │ │ │ ├── TESTBOILERPLATEHash32WithSeed │ │ │ │ ├── TESTBOILERPLATEHash64 │ │ │ │ ├── TESTBOILERPLATEHash64WithSeed │ │ │ │ ├── TESTBOILERPLATEHash64WithSeeds │ │ │ │ ├── WRAPPERuint32tconstcharssizetlen │ │ │ │ ├── WRAPPERuint32tconstcharssizetlenuint32tseed │ │ │ │ ├── WRAPPERuint32tconstcharssizetlenuint64tseed │ │ │ │ ├── WRAPPERuint32tconstcharssizetlenuint64tseed0uint64tseed1 │ │ │ │ ├── WRAPPERuint64tconstcharssizetlen │ │ │ │ ├── WRAPPERuint64tconstcharssizetlenuint64tseed │ │ │ │ ├── WRAPPERuint64tconstcharssizetlenuint64tseed0uint64tseed1 │ │ │ │ ├── basics.cc │ │ │ │ ├── builder.cc │ │ │ │ ├── cmake_m32 │ │ │ │ ├── create-self-test │ │ │ │ ├── do-in-parallel │ │ │ │ ├── f.cc │ │ │ │ ├── farmhash.h │ │ │ │ ├── farmhashcc.cc │ │ │ │ ├── farmhashmk.cc │ │ │ │ ├── farmhashna.cc │ │ │ │ ├── farmhashns.cc │ │ │ │ ├── farmhashnt.cc │ │ │ │ ├── farmhashsa.cc │ │ │ │ ├── farmhashsu.cc │ │ │ │ ├── farmhashte.cc │ │ │ │ ├── farmhashuo.cc │ │ │ │ ├── farmhashxo.cc │ │ │ │ ├── fix-copyright │ │ │ │ ├── platform.cc │ │ │ │ ├── remove-from-to │ │ │ │ └── self-test-skeleton.cc │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ └── lt~obsolete.m4 │ │ │ ├── missing │ │ │ ├── src │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── farm-test.cc │ │ │ │ ├── farmhash.cc │ │ │ │ └── farmhash.h │ │ │ └── test-driver │ │ ├── fft2d │ │ │ ├── fft4g.c │ │ │ ├── fft4g.f │ │ │ ├── fft4g_h.c │ │ │ ├── fft8g.c │ │ │ ├── fft8g.f │ │ │ ├── fft8g_h.c │ │ │ ├── fftsg.c │ │ │ ├── fftsg.f │ │ │ ├── fftsg_h.c │ │ │ ├── readme.txt │ │ │ ├── sample1 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.f77 │ │ │ │ ├── testxg.c │ │ │ │ ├── testxg.f │ │ │ │ └── testxg_h.c │ │ │ └── sample2 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.pth │ │ │ │ └── pi_fft.c │ │ ├── flatbuffers │ │ │ ├── CMake │ │ │ │ ├── BuildFlatBuffers.cmake │ │ │ │ ├── FindFlatBuffers.cmake │ │ │ │ ├── FlatbuffersConfig.cmake │ │ │ │ └── PackageDebian.cmake │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── android │ │ │ │ ├── .project │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ ├── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── Application.mk │ │ │ │ │ ├── build_flatc.bat │ │ │ │ │ ├── include.mk │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── msbuild.py │ │ │ │ │ └── run_flatc.py │ │ │ │ └── res │ │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ ├── appveyor.yml │ │ │ ├── biicode.conf │ │ │ ├── biicode │ │ │ │ ├── README.md │ │ │ │ ├── cmake │ │ │ │ │ └── biicode.cmake │ │ │ │ └── support │ │ │ │ │ └── bii-travis.sh │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── images │ │ │ │ │ ├── fpl_logo_small.png │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ └── ftv2pnode.png │ │ │ │ └── source │ │ │ │ │ ├── Benchmarks.md │ │ │ │ │ ├── Building.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── CUsage.md │ │ │ │ │ ├── Compiler.md │ │ │ │ │ ├── CppUsage.md │ │ │ │ │ ├── FlatBuffers.md │ │ │ │ │ ├── FlexBuffers.md │ │ │ │ │ ├── GoApi.md │ │ │ │ │ ├── GoApi_generated.txt │ │ │ │ │ ├── GoUsage.md │ │ │ │ │ ├── Grammar.md │ │ │ │ │ ├── Internals.md │ │ │ │ │ ├── JavaCsharpUsage.md │ │ │ │ │ ├── JavaScriptUsage.md │ │ │ │ │ ├── PHPUsage.md │ │ │ │ │ ├── PythonUsage.md │ │ │ │ │ ├── README_TO_GENERATE_DOCS.md │ │ │ │ │ ├── Schemas.md │ │ │ │ │ ├── Support.md │ │ │ │ │ ├── Tutorial.md │ │ │ │ │ ├── WhitePaper.md │ │ │ │ │ ├── doxyfile │ │ │ │ │ ├── doxygen_layout.xml │ │ │ │ │ ├── gRPC │ │ │ │ │ └── CppUsage.md │ │ │ │ │ ├── groups │ │ │ │ │ └── style.css │ │ │ ├── go │ │ │ │ ├── builder.go │ │ │ │ ├── doc.go │ │ │ │ ├── encode.go │ │ │ │ ├── grpc.go │ │ │ │ ├── lib.go │ │ │ │ ├── sizes.go │ │ │ │ ├── struct.go │ │ │ │ └── table.go │ │ │ ├── grpc │ │ │ │ ├── README.md │ │ │ │ ├── samples │ │ │ │ │ └── greeter │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── client.cpp │ │ │ │ │ │ ├── greeter.fbs │ │ │ │ │ │ └── server.cpp │ │ │ │ ├── src │ │ │ │ │ └── compiler │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cpp_generator.cc │ │ │ │ │ │ ├── cpp_generator.h │ │ │ │ │ │ ├── go_generator.cc │ │ │ │ │ │ ├── go_generator.h │ │ │ │ │ │ └── schema_interface.h │ │ │ │ └── tests │ │ │ │ │ ├── go_test.go │ │ │ │ │ └── grpctest.cpp │ │ │ ├── include │ │ │ │ └── flatbuffers │ │ │ │ │ ├── base.h │ │ │ │ │ ├── code_generators.h │ │ │ │ │ ├── flatbuffers.h │ │ │ │ │ ├── flatc.h │ │ │ │ │ ├── flexbuffers.h │ │ │ │ │ ├── grpc.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── idl.h │ │ │ │ │ ├── minireflect.h │ │ │ │ │ ├── reflection.h │ │ │ │ │ ├── reflection_generated.h │ │ │ │ │ ├── registry.h │ │ │ │ │ ├── stl_emulation.h │ │ │ │ │ └── util.h │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── google │ │ │ │ │ └── flatbuffers │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── FlatBufferBuilder.java │ │ │ │ │ ├── Struct.java │ │ │ │ │ └── Table.java │ │ │ ├── js │ │ │ │ └── flatbuffers.js │ │ │ ├── net │ │ │ │ └── FlatBuffers │ │ │ │ │ ├── ByteBuffer.cs │ │ │ │ │ ├── FlatBufferBuilder.cs │ │ │ │ │ ├── FlatBufferConstants.cs │ │ │ │ │ ├── FlatBuffers.csproj │ │ │ │ │ ├── IFlatbufferObject.cs │ │ │ │ │ ├── Offset.cs │ │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Struct.cs │ │ │ │ │ └── Table.cs │ │ │ ├── package.json │ │ │ ├── php │ │ │ │ ├── ByteBuffer.php │ │ │ │ ├── Constants.php │ │ │ │ ├── FlatbufferBuilder.php │ │ │ │ ├── Struct.php │ │ │ │ └── Table.php │ │ │ ├── pom.xml │ │ │ ├── python │ │ │ │ ├── __init__.py │ │ │ │ ├── flatbuffers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── builder.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── encode.py │ │ │ │ │ ├── number_types.py │ │ │ │ │ ├── packer.py │ │ │ │ │ └── table.py │ │ │ │ └── setup.py │ │ │ ├── readme.md │ │ │ ├── reflection │ │ │ │ ├── generate_code.sh │ │ │ │ └── reflection.fbs │ │ │ ├── samples │ │ │ │ ├── SampleBinary.cs │ │ │ │ ├── SampleBinary.java │ │ │ │ ├── SampleBinary.php │ │ │ │ ├── android │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── gradle │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ │ ├── gradlew │ │ │ │ │ ├── gradlew.bat │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ ├── Application.mk │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ └── schemas │ │ │ │ │ │ │ └── animal.fbs │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── strings.xml │ │ │ │ ├── android_sample.sh │ │ │ │ ├── csharp_sample.sh │ │ │ │ ├── go_sample.sh │ │ │ │ ├── java_sample.sh │ │ │ │ ├── javascript_sample.sh │ │ │ │ ├── monster.fbs │ │ │ │ ├── monster_generated.h │ │ │ │ ├── monsterdata.json │ │ │ │ ├── php_sample.sh │ │ │ │ ├── python_sample.sh │ │ │ │ ├── sample_binary.cpp │ │ │ │ ├── sample_binary.go │ │ │ │ ├── sample_binary.py │ │ │ │ ├── sample_text.cpp │ │ │ │ └── samplebinary.js │ │ │ ├── src │ │ │ │ ├── code_generators.cpp │ │ │ │ ├── flatc.cpp │ │ │ │ ├── flatc_main.cpp │ │ │ │ ├── flathash.cpp │ │ │ │ ├── idl_gen_cpp.cpp │ │ │ │ ├── idl_gen_fbs.cpp │ │ │ │ ├── idl_gen_general.cpp │ │ │ │ ├── idl_gen_go.cpp │ │ │ │ ├── idl_gen_grpc.cpp │ │ │ │ ├── idl_gen_js.cpp │ │ │ │ ├── idl_gen_json_schema.cpp │ │ │ │ ├── idl_gen_php.cpp │ │ │ │ ├── idl_gen_python.cpp │ │ │ │ ├── idl_gen_text.cpp │ │ │ │ ├── idl_parser.cpp │ │ │ │ ├── reflection.cpp │ │ │ │ └── util.cpp │ │ │ └── tests │ │ │ │ ├── FlatBuffers.Test │ │ │ │ ├── Assert.cs │ │ │ │ ├── ByteBufferTests.cs │ │ │ │ ├── FlatBufferBuilderTests.cs │ │ │ │ ├── FlatBuffers.Test.csproj │ │ │ │ ├── FlatBuffersExampleTests.cs │ │ │ │ ├── FlatBuffersFuzzTests.cs │ │ │ │ ├── FlatBuffersTestClassAttribute.cs │ │ │ │ ├── FlatBuffersTestMethodAttribute.cs │ │ │ │ ├── FuzzTestData.cs │ │ │ │ ├── Lcg.cs │ │ │ │ ├── NetTest.sh │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Resources │ │ │ │ │ └── monsterdata_test.mon │ │ │ │ └── TestTable.cs │ │ │ │ ├── GoTest.sh │ │ │ │ ├── JavaScriptTest.js │ │ │ │ ├── JavaScriptTest.sh │ │ │ │ ├── JavaScriptUnionVectorTest.js │ │ │ │ ├── JavaTest.bat │ │ │ │ ├── JavaTest.java │ │ │ │ ├── JavaTest.sh │ │ │ │ ├── MyGame │ │ │ │ ├── Example │ │ │ │ │ ├── Ability.cs │ │ │ │ │ ├── Ability.go │ │ │ │ │ ├── Ability.java │ │ │ │ │ ├── Ability.php │ │ │ │ │ ├── Ability.py │ │ │ │ │ ├── Any.cs │ │ │ │ │ ├── Any.go │ │ │ │ │ ├── Any.java │ │ │ │ │ ├── Any.php │ │ │ │ │ ├── Any.py │ │ │ │ │ ├── Color.cs │ │ │ │ │ ├── Color.go │ │ │ │ │ ├── Color.java │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Color.py │ │ │ │ │ ├── Monster.cs │ │ │ │ │ ├── Monster.go │ │ │ │ │ ├── Monster.java │ │ │ │ │ ├── Monster.php │ │ │ │ │ ├── Monster.py │ │ │ │ │ ├── MonsterStorage_grpc.go │ │ │ │ │ ├── Stat.cs │ │ │ │ │ ├── Stat.go │ │ │ │ │ ├── Stat.java │ │ │ │ │ ├── Stat.php │ │ │ │ │ ├── Stat.py │ │ │ │ │ ├── Test.cs │ │ │ │ │ ├── Test.go │ │ │ │ │ ├── Test.java │ │ │ │ │ ├── Test.php │ │ │ │ │ ├── Test.py │ │ │ │ │ ├── TestSimpleTableWithEnum.cs │ │ │ │ │ ├── TestSimpleTableWithEnum.go │ │ │ │ │ ├── TestSimpleTableWithEnum.java │ │ │ │ │ ├── TestSimpleTableWithEnum.php │ │ │ │ │ ├── TestSimpleTableWithEnum.py │ │ │ │ │ ├── TypeAliases.cs │ │ │ │ │ ├── TypeAliases.go │ │ │ │ │ ├── TypeAliases.java │ │ │ │ │ ├── TypeAliases.php │ │ │ │ │ ├── TypeAliases.py │ │ │ │ │ ├── Vec3.cs │ │ │ │ │ ├── Vec3.go │ │ │ │ │ ├── Vec3.java │ │ │ │ │ ├── Vec3.php │ │ │ │ │ ├── Vec3.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── Example2 │ │ │ │ │ ├── Monster.cs │ │ │ │ │ ├── Monster.go │ │ │ │ │ ├── Monster.java │ │ │ │ │ ├── Monster.php │ │ │ │ │ ├── Monster.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── InParentNamespace.cs │ │ │ │ ├── InParentNamespace.go │ │ │ │ ├── InParentNamespace.java │ │ │ │ ├── InParentNamespace.php │ │ │ │ ├── InParentNamespace.py │ │ │ │ └── __init__.py │ │ │ │ ├── PythonTest.sh │ │ │ │ ├── TestAll.sh │ │ │ │ ├── TypeScriptTest.sh │ │ │ │ ├── fuzzer │ │ │ │ ├── build_fuzzer.sh │ │ │ │ ├── build_run_parser_test.sh │ │ │ │ ├── build_run_verifier_test.sh │ │ │ │ ├── flatbuffers_parser_fuzzer.cc │ │ │ │ └── flatbuffers_verifier_fuzzer.cc │ │ │ │ ├── generate_code.bat │ │ │ │ ├── generate_code.sh │ │ │ │ ├── go_test.go │ │ │ │ ├── include_test │ │ │ │ ├── include_test1.fbs │ │ │ │ └── sub │ │ │ │ │ └── include_test2.fbs │ │ │ │ ├── javatest.bin │ │ │ │ ├── monster_test.bfbs │ │ │ │ ├── monster_test.fbs │ │ │ │ ├── monster_test.grpc.fb.cc │ │ │ │ ├── monster_test.grpc.fb.h │ │ │ │ ├── monster_test.schema.json │ │ │ │ ├── monster_test_generated.h │ │ │ │ ├── monster_test_generated.js │ │ │ │ ├── monster_test_generated.ts │ │ │ │ ├── monsterdata_python_wire.mon │ │ │ │ ├── monsterdata_test.golden │ │ │ │ ├── monsterdata_test.json │ │ │ │ ├── monsterdata_test.mon │ │ │ │ ├── namespace_test │ │ │ │ ├── NamespaceA │ │ │ │ │ ├── NamespaceB │ │ │ │ │ │ ├── EnumInNestedNS.cs │ │ │ │ │ │ ├── EnumInNestedNS.go │ │ │ │ │ │ ├── EnumInNestedNS.java │ │ │ │ │ │ ├── EnumInNestedNS.php │ │ │ │ │ │ ├── EnumInNestedNS.py │ │ │ │ │ │ ├── StructInNestedNS.cs │ │ │ │ │ │ ├── StructInNestedNS.go │ │ │ │ │ │ ├── StructInNestedNS.java │ │ │ │ │ │ ├── StructInNestedNS.php │ │ │ │ │ │ ├── StructInNestedNS.py │ │ │ │ │ │ ├── TableInNestedNS.cs │ │ │ │ │ │ ├── TableInNestedNS.go │ │ │ │ │ │ ├── TableInNestedNS.java │ │ │ │ │ │ ├── TableInNestedNS.php │ │ │ │ │ │ ├── TableInNestedNS.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── SecondTableInA.cs │ │ │ │ │ ├── SecondTableInA.go │ │ │ │ │ ├── SecondTableInA.java │ │ │ │ │ ├── SecondTableInA.php │ │ │ │ │ ├── SecondTableInA.py │ │ │ │ │ ├── TableInC.cs │ │ │ │ │ ├── TableInC.go │ │ │ │ │ ├── TableInC.java │ │ │ │ │ ├── TableInC.php │ │ │ │ │ ├── TableInC.py │ │ │ │ │ ├── TableInFirstNS.cs │ │ │ │ │ ├── TableInFirstNS.go │ │ │ │ │ ├── TableInFirstNS.java │ │ │ │ │ ├── TableInFirstNS.php │ │ │ │ │ ├── TableInFirstNS.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── NamespaceC │ │ │ │ │ ├── TableInC.cs │ │ │ │ │ ├── TableInC.go │ │ │ │ │ ├── TableInC.java │ │ │ │ │ ├── TableInC.php │ │ │ │ │ ├── TableInC.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── namespace_test1.fbs │ │ │ │ ├── namespace_test1_generated.h │ │ │ │ ├── namespace_test1_generated.js │ │ │ │ ├── namespace_test1_generated.ts │ │ │ │ ├── namespace_test2.fbs │ │ │ │ ├── namespace_test2_generated.h │ │ │ │ ├── namespace_test2_generated.js │ │ │ │ └── namespace_test2_generated.ts │ │ │ │ ├── phpTest.php │ │ │ │ ├── phpUnionVectorTest.php │ │ │ │ ├── phpUnionVectorTest.sh │ │ │ │ ├── prototest │ │ │ │ ├── imported.proto │ │ │ │ ├── test.golden │ │ │ │ └── test.proto │ │ │ │ ├── py_test.py │ │ │ │ ├── test.cpp │ │ │ │ ├── unicode_test.json │ │ │ │ └── union_vector │ │ │ │ ├── Attacker.php │ │ │ │ ├── BookReader.php │ │ │ │ ├── Character.php │ │ │ │ ├── Movie.php │ │ │ │ ├── Rapunzel.php │ │ │ │ ├── union_vector.fbs │ │ │ │ ├── union_vector_generated.h │ │ │ │ ├── union_vector_generated.js │ │ │ │ └── union_vector_generated.ts │ │ ├── gemmlowp │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile.travis │ │ │ ├── README.md │ │ │ ├── WORKSPACE │ │ │ ├── contrib │ │ │ │ └── CMakeLists.txt │ │ │ ├── doc │ │ │ │ ├── design.md │ │ │ │ ├── kernel.md │ │ │ │ ├── less-than-8-bit.md │ │ │ │ ├── low-precision.md │ │ │ │ ├── output.md │ │ │ │ ├── packing.md │ │ │ │ ├── public.md │ │ │ │ ├── quantization.md │ │ │ │ └── quantization_example.cc │ │ │ ├── eight_bit_int_gemm │ │ │ │ ├── eight_bit_int_gemm.cc │ │ │ │ └── eight_bit_int_gemm.h │ │ │ ├── fixedpoint │ │ │ │ ├── fixedpoint.h │ │ │ │ ├── fixedpoint_avx.h │ │ │ │ ├── fixedpoint_msa.h │ │ │ │ ├── fixedpoint_neon.h │ │ │ │ └── fixedpoint_sse.h │ │ │ ├── flags.bzl │ │ │ ├── internal │ │ │ │ ├── allocator.h │ │ │ │ ├── block_params.h │ │ │ │ ├── common.h │ │ │ │ ├── compute.h │ │ │ │ ├── dispatch_gemm_shape.h │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_avx.h │ │ │ │ ├── kernel_default.h │ │ │ │ ├── kernel_msa.h │ │ │ │ ├── kernel_neon.h │ │ │ │ ├── kernel_reference.h │ │ │ │ ├── kernel_sse.h │ │ │ │ ├── multi_thread_gemm.h │ │ │ │ ├── output.h │ │ │ │ ├── output_avx.h │ │ │ │ ├── output_msa.h │ │ │ │ ├── output_neon.h │ │ │ │ ├── output_sse.h │ │ │ │ ├── pack.h │ │ │ │ ├── pack_avx.h │ │ │ │ ├── pack_msa.h │ │ │ │ ├── pack_neon.h │ │ │ │ ├── pack_sse.h │ │ │ │ ├── platform.h │ │ │ │ ├── simd_wrappers.h │ │ │ │ ├── simd_wrappers_common_neon_sse.h │ │ │ │ ├── simd_wrappers_msa.h │ │ │ │ ├── simd_wrappers_neon.h │ │ │ │ ├── simd_wrappers_sse.h │ │ │ │ ├── single_thread_gemm.h │ │ │ │ └── unpack.h │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── Application.mk │ │ │ ├── meta │ │ │ │ ├── README │ │ │ │ ├── base.h │ │ │ │ ├── generators │ │ │ │ │ ├── cc_emitter.py │ │ │ │ │ ├── common.py │ │ │ │ │ ├── metagemm_generate_headers.sh │ │ │ │ │ ├── neon_emitter.py │ │ │ │ │ ├── neon_emitter_64.py │ │ │ │ │ ├── quantized_mul_kernels_arm_32.py │ │ │ │ │ ├── quantized_mul_kernels_arm_64.py │ │ │ │ │ ├── quantized_mul_kernels_common.py │ │ │ │ │ ├── streams_arm_32.py │ │ │ │ │ ├── streams_arm_64.py │ │ │ │ │ ├── streams_common.py │ │ │ │ │ ├── transform_kernels_arm_32.py │ │ │ │ │ ├── transform_kernels_arm_64.py │ │ │ │ │ └── transform_kernels_common.py │ │ │ │ ├── legacy_multi_thread_common.h │ │ │ │ ├── legacy_multi_thread_gemm.h │ │ │ │ ├── legacy_multi_thread_gemv.h │ │ │ │ ├── legacy_operations_common.h │ │ │ │ ├── legacy_single_thread_gemm.h │ │ │ │ ├── multi_thread_common.h │ │ │ │ ├── multi_thread_gemm.h │ │ │ │ ├── multi_thread_transform.h │ │ │ │ ├── quantized_mul_kernels.h │ │ │ │ ├── quantized_mul_kernels_arm_32.h │ │ │ │ ├── quantized_mul_kernels_arm_64.h │ │ │ │ ├── single_thread_gemm.h │ │ │ │ ├── single_thread_transform.h │ │ │ │ ├── streams.h │ │ │ │ ├── streams_arm_32.h │ │ │ │ ├── streams_arm_64.h │ │ │ │ ├── test_gemm_correctness.cc │ │ │ │ ├── test_streams_correctness.cc │ │ │ │ ├── test_transform_benchmark.cc │ │ │ │ ├── test_transform_correctness.cc │ │ │ │ ├── transform_kernels.h │ │ │ │ ├── transform_kernels_arm_32.h │ │ │ │ └── transform_kernels_arm_64.h │ │ │ ├── profiling │ │ │ │ ├── instrumentation.h │ │ │ │ ├── profiler.h │ │ │ │ └── pthread_everywhere.h │ │ │ ├── public │ │ │ │ ├── bit_depth.h │ │ │ │ ├── gemmlowp.h │ │ │ │ ├── map.h │ │ │ │ └── output_stages.h │ │ │ ├── scripts │ │ │ │ ├── ci-before.sh │ │ │ │ ├── ci-test.sh │ │ │ │ └── test-android.sh │ │ │ ├── standalone │ │ │ │ └── neon-gemm-kernel-benchmark.cc │ │ │ ├── test │ │ │ │ ├── benchmark.cc │ │ │ │ ├── benchmark_all_sizes.cc │ │ │ │ ├── benchmark_meta_gemm.cc │ │ │ │ ├── correctness_meta_gemm.cc │ │ │ │ ├── ios │ │ │ │ │ ├── gemmlowp_test.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── gemmlowp_test │ │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ │ ├── AppDelegate.mm │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ ├── LaunchScreen.xib │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ │ ├── Images.xcassets │ │ │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── ViewController.h │ │ │ │ │ │ ├── ViewController.m │ │ │ │ │ │ └── main.m │ │ │ │ ├── test.cc │ │ │ │ ├── test.h │ │ │ │ ├── test_allocator.cc │ │ │ │ ├── test_blocking_counter.cc │ │ │ │ ├── test_data.cc │ │ │ │ ├── test_data.h │ │ │ │ ├── test_fixedpoint.cc │ │ │ │ └── test_math_helpers.cc │ │ │ └── todo │ │ │ │ ├── armv8-64bit-kernel-for-less-than-8-bit.txt │ │ │ │ ├── error-diffusion-experiments.txt │ │ │ │ ├── fast-gemv.txt │ │ │ │ ├── less-than-8-bit-without-requantization.txt │ │ │ │ ├── multi-threading-experiments.txt │ │ │ │ ├── neon-depth-major-sources-packing.txt │ │ │ │ ├── remove-default-template-param-values.txt │ │ │ │ └── x86-kernels.txt │ │ ├── googletest │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── googlemock │ │ │ │ ├── CHANGES │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.md │ │ │ │ ├── build-aux │ │ │ │ │ └── .keep │ │ │ │ ├── configure.ac │ │ │ │ ├── docs │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ ├── CookBook.md │ │ │ │ │ ├── DesignDoc.md │ │ │ │ │ ├── DevGuide.md │ │ │ │ │ ├── Documentation.md │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ ├── FrequentlyAskedQuestions.md │ │ │ │ │ ├── KnownIssues.md │ │ │ │ │ ├── v1_5 │ │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ │ ├── CookBook.md │ │ │ │ │ │ ├── Documentation.md │ │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ │ │ ├── v1_6 │ │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ │ ├── CookBook.md │ │ │ │ │ │ ├── Documentation.md │ │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ │ │ └── v1_7 │ │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ │ ├── CookBook.md │ │ │ │ │ │ ├── Documentation.md │ │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ │ ├── include │ │ │ │ │ └── gmock │ │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ │ ├── gmock.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ └── gmock-port.h │ │ │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ │ └── gmock-port.h │ │ │ │ ├── make │ │ │ │ │ └── Makefile │ │ │ │ ├── msvc │ │ │ │ │ ├── 2005 │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ ├── gmock.vcproj │ │ │ │ │ │ ├── gmock_config.vsprops │ │ │ │ │ │ ├── gmock_main.vcproj │ │ │ │ │ │ └── gmock_test.vcproj │ │ │ │ │ ├── 2010 │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ │ └── gmock_test.vcxproj │ │ │ │ │ └── 2015 │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ │ └── gmock_test.vcxproj │ │ │ │ ├── scripts │ │ │ │ │ ├── fuse_gmock_files.py │ │ │ │ │ ├── generator │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── README.cppclean │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── ast.py │ │ │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ │ │ ├── keywords.py │ │ │ │ │ │ │ ├── tokenize.py │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ └── gmock_gen.py │ │ │ │ │ ├── gmock-config.in │ │ │ │ │ ├── gmock_doctor.py │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_gmock.py │ │ │ │ ├── src │ │ │ │ │ ├── gmock-all.cc │ │ │ │ │ ├── gmock-cardinalities.cc │ │ │ │ │ ├── gmock-internal-utils.cc │ │ │ │ │ ├── gmock-matchers.cc │ │ │ │ │ ├── gmock-spec-builders.cc │ │ │ │ │ ├── gmock.cc │ │ │ │ │ └── gmock_main.cc │ │ │ │ └── test │ │ │ │ │ ├── gmock-actions_test.cc │ │ │ │ │ ├── gmock-cardinalities_test.cc │ │ │ │ │ ├── gmock-generated-actions_test.cc │ │ │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ │ │ ├── gmock-generated-internal-utils_test.cc │ │ │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ │ │ ├── gmock-internal-utils_test.cc │ │ │ │ │ ├── gmock-matchers_test.cc │ │ │ │ │ ├── gmock-more-actions_test.cc │ │ │ │ │ ├── gmock-nice-strict_test.cc │ │ │ │ │ ├── gmock-port_test.cc │ │ │ │ │ ├── gmock-spec-builders_test.cc │ │ │ │ │ ├── gmock_all_test.cc │ │ │ │ │ ├── gmock_ex_test.cc │ │ │ │ │ ├── gmock_leak_test.py │ │ │ │ │ ├── gmock_leak_test_.cc │ │ │ │ │ ├── gmock_link2_test.cc │ │ │ │ │ ├── gmock_link_test.cc │ │ │ │ │ ├── gmock_link_test.h │ │ │ │ │ ├── gmock_output_test.py │ │ │ │ │ ├── gmock_output_test_.cc │ │ │ │ │ ├── gmock_output_test_golden.txt │ │ │ │ │ ├── gmock_stress_test.cc │ │ │ │ │ ├── gmock_test.cc │ │ │ │ │ └── gmock_test_utils.py │ │ │ ├── googletest │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGES │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.md │ │ │ │ ├── build-aux │ │ │ │ │ └── .keep │ │ │ │ ├── cmake │ │ │ │ │ └── internal_utils.cmake │ │ │ │ ├── codegear │ │ │ │ │ ├── gtest.cbproj │ │ │ │ │ ├── gtest.groupproj │ │ │ │ │ ├── gtest_all.cc │ │ │ │ │ ├── gtest_link.cc │ │ │ │ │ ├── gtest_main.cbproj │ │ │ │ │ └── gtest_unittest.cbproj │ │ │ │ ├── configure.ac │ │ │ │ ├── docs │ │ │ │ │ ├── AdvancedGuide.md │ │ │ │ │ ├── DevGuide.md │ │ │ │ │ ├── Documentation.md │ │ │ │ │ ├── FAQ.md │ │ │ │ │ ├── Primer.md │ │ │ │ │ ├── PumpManual.md │ │ │ │ │ ├── Samples.md │ │ │ │ │ ├── V1_5_AdvancedGuide.md │ │ │ │ │ ├── V1_5_Documentation.md │ │ │ │ │ ├── V1_5_FAQ.md │ │ │ │ │ ├── V1_5_Primer.md │ │ │ │ │ ├── V1_5_PumpManual.md │ │ │ │ │ ├── V1_5_XcodeGuide.md │ │ │ │ │ ├── V1_6_AdvancedGuide.md │ │ │ │ │ ├── V1_6_Documentation.md │ │ │ │ │ ├── V1_6_FAQ.md │ │ │ │ │ ├── V1_6_Primer.md │ │ │ │ │ ├── V1_6_PumpManual.md │ │ │ │ │ ├── V1_6_Samples.md │ │ │ │ │ ├── V1_6_XcodeGuide.md │ │ │ │ │ ├── V1_7_AdvancedGuide.md │ │ │ │ │ ├── V1_7_Documentation.md │ │ │ │ │ ├── V1_7_FAQ.md │ │ │ │ │ ├── V1_7_Primer.md │ │ │ │ │ ├── V1_7_PumpManual.md │ │ │ │ │ ├── V1_7_Samples.md │ │ │ │ │ ├── V1_7_XcodeGuide.md │ │ │ │ │ └── XcodeGuide.md │ │ │ │ ├── include │ │ │ │ │ └── gtest │ │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ │ ├── gtest.h │ │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ │ └── gtest.h │ │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ │ ├── m4 │ │ │ │ │ ├── acx_pthread.m4 │ │ │ │ │ └── gtest.m4 │ │ │ │ ├── make │ │ │ │ │ └── Makefile │ │ │ │ ├── msvc │ │ │ │ │ ├── gtest-md.sln │ │ │ │ │ ├── gtest-md.vcproj │ │ │ │ │ ├── gtest.sln │ │ │ │ │ ├── gtest.vcproj │ │ │ │ │ ├── gtest_main-md.vcproj │ │ │ │ │ ├── gtest_main.vcproj │ │ │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ │ │ ├── gtest_prod_test.vcproj │ │ │ │ │ ├── gtest_unittest-md.vcproj │ │ │ │ │ └── gtest_unittest.vcproj │ │ │ │ ├── samples │ │ │ │ │ ├── prime_tables.h │ │ │ │ │ ├── sample1.cc │ │ │ │ │ ├── sample1.h │ │ │ │ │ ├── sample10_unittest.cc │ │ │ │ │ ├── sample1_unittest.cc │ │ │ │ │ ├── sample2.cc │ │ │ │ │ ├── sample2.h │ │ │ │ │ ├── sample2_unittest.cc │ │ │ │ │ ├── sample3-inl.h │ │ │ │ │ ├── sample3_unittest.cc │ │ │ │ │ ├── sample4.cc │ │ │ │ │ ├── sample4.h │ │ │ │ │ ├── sample4_unittest.cc │ │ │ │ │ ├── sample5_unittest.cc │ │ │ │ │ ├── sample6_unittest.cc │ │ │ │ │ ├── sample7_unittest.cc │ │ │ │ │ ├── sample8_unittest.cc │ │ │ │ │ └── sample9_unittest.cc │ │ │ │ ├── scripts │ │ │ │ │ ├── common.py │ │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ │ ├── gtest-config.in │ │ │ │ │ ├── pump.py │ │ │ │ │ ├── release_docs.py │ │ │ │ │ ├── test │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_gtest.py │ │ │ │ ├── src │ │ │ │ │ ├── gtest-all.cc │ │ │ │ │ ├── gtest-death-test.cc │ │ │ │ │ ├── gtest-filepath.cc │ │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ │ ├── gtest-port.cc │ │ │ │ │ ├── gtest-printers.cc │ │ │ │ │ ├── gtest-test-part.cc │ │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ │ ├── gtest.cc │ │ │ │ │ └── gtest_main.cc │ │ │ │ ├── test │ │ │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ │ │ ├── gtest-death-test_test.cc │ │ │ │ │ ├── gtest-filepath_test.cc │ │ │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ │ │ ├── gtest-listener_test.cc │ │ │ │ │ ├── gtest-message_test.cc │ │ │ │ │ ├── gtest-options_test.cc │ │ │ │ │ ├── gtest-param-test2_test.cc │ │ │ │ │ ├── gtest-param-test_test.cc │ │ │ │ │ ├── gtest-param-test_test.h │ │ │ │ │ ├── gtest-port_test.cc │ │ │ │ │ ├── gtest-printers_test.cc │ │ │ │ │ ├── gtest-test-part_test.cc │ │ │ │ │ ├── gtest-tuple_test.cc │ │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ │ ├── gtest_all_test.cc │ │ │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ │ │ ├── gtest_color_test.py │ │ │ │ │ ├── gtest_color_test_.cc │ │ │ │ │ ├── gtest_env_var_test.py │ │ │ │ │ ├── gtest_env_var_test_.cc │ │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ │ ├── gtest_filter_unittest.py │ │ │ │ │ ├── gtest_filter_unittest_.cc │ │ │ │ │ ├── gtest_help_test.py │ │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ │ ├── gtest_list_tests_unittest.py │ │ │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ │ ├── gtest_output_test.py │ │ │ │ │ ├── gtest_output_test_.cc │ │ │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ │ ├── gtest_shuffle_test.py │ │ │ │ │ ├── gtest_shuffle_test_.cc │ │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ │ ├── gtest_test_utils.py │ │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ │ │ ├── gtest_uninitialized_test.py │ │ │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ │ │ ├── gtest_unittest.cc │ │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ │ ├── production.cc │ │ │ │ │ └── production.h │ │ │ │ └── xcode │ │ │ │ │ ├── Config │ │ │ │ │ ├── DebugProject.xcconfig │ │ │ │ │ ├── FrameworkTarget.xcconfig │ │ │ │ │ ├── General.xcconfig │ │ │ │ │ ├── ReleaseProject.xcconfig │ │ │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ │ │ └── TestTarget.xcconfig │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Samples │ │ │ │ │ └── FrameworkSample │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ ├── runtests.sh │ │ │ │ │ │ ├── widget.cc │ │ │ │ │ │ ├── widget.h │ │ │ │ │ │ └── widget_test.cc │ │ │ │ │ ├── Scripts │ │ │ │ │ ├── runtests.sh │ │ │ │ │ └── versiongenerate.py │ │ │ │ │ └── gtest.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ └── travis.sh │ │ └── neon_2_sse │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── NEON_2_SSE.h │ │ │ ├── ReadMe.md │ │ │ └── cmake │ │ │ └── Config.cmake.in │ │ ├── error_reporter.cc │ │ ├── error_reporter.h │ │ ├── graph_info.cc │ │ ├── graph_info.h │ │ ├── interpreter.cc │ │ ├── interpreter.h │ │ ├── ios_makefile.inc │ │ ├── kernels │ │ ├── BUILD │ │ ├── activation_functor.h │ │ ├── activations.cc │ │ ├── activations_test.cc │ │ ├── add.cc │ │ ├── add_test.cc │ │ ├── audio_spectrogram.cc │ │ ├── audio_spectrogram_test.cc │ │ ├── basic_rnn.cc │ │ ├── basic_rnn_test.cc │ │ ├── batch_to_space_nd.cc │ │ ├── batch_to_space_nd_test.cc │ │ ├── bidirectional_sequence_lstm.cc │ │ ├── bidirectional_sequence_lstm_test.cc │ │ ├── bidirectional_sequence_rnn.cc │ │ ├── bidirectional_sequence_rnn_test.cc │ │ ├── cast.cc │ │ ├── cast_test.cc │ │ ├── concatenation.cc │ │ ├── concatenation_test.cc │ │ ├── conv.cc │ │ ├── conv_test.cc │ │ ├── depthwise_conv.cc │ │ ├── depthwise_conv_test.cc │ │ ├── dequantize.cc │ │ ├── dequantize_test.cc │ │ ├── div.cc │ │ ├── div_test.cc │ │ ├── eigen_support.cc │ │ ├── eigen_support.h │ │ ├── embedding_lookup.cc │ │ ├── embedding_lookup_sparse.cc │ │ ├── embedding_lookup_sparse_test.cc │ │ ├── embedding_lookup_test.cc │ │ ├── exp.cc │ │ ├── exp_test.cc │ │ ├── fully_connected.cc │ │ ├── fully_connected_test.cc │ │ ├── gather.cc │ │ ├── gather_test.cc │ │ ├── gemm_support.cc │ │ ├── gemm_support.h │ │ ├── hashtable_lookup.cc │ │ ├── hashtable_lookup_test.cc │ │ ├── internal │ │ │ ├── BUILD │ │ │ ├── common.h │ │ │ ├── compatibility.h │ │ │ ├── kernel_utils.cc │ │ │ ├── kernel_utils.h │ │ │ ├── mfcc.cc │ │ │ ├── mfcc.h │ │ │ ├── mfcc_dct.cc │ │ │ ├── mfcc_dct.h │ │ │ ├── mfcc_mel_filterbank.cc │ │ │ ├── mfcc_mel_filterbank.h │ │ │ ├── optimized │ │ │ │ ├── cblas_conv.h │ │ │ │ ├── cblas_reference.h │ │ │ │ ├── cpu_check.h │ │ │ │ ├── depthwiseconv_float.h │ │ │ │ ├── depthwiseconv_uint8.h │ │ │ │ ├── depthwiseconv_uint8_3x3_filter.h │ │ │ │ ├── eigen_spatial_convolutions.h │ │ │ │ ├── eigen_tensor_reduced_instantiations_google.h │ │ │ │ ├── eigen_tensor_reduced_instantiations_oss.h │ │ │ │ ├── multithreaded_conv.h │ │ │ │ ├── neon_tensor_utils.cc │ │ │ │ ├── neon_tensor_utils.h │ │ │ │ ├── optimized_ops.h │ │ │ │ └── tensor_utils_impl.h │ │ │ ├── quantization_util.cc │ │ │ ├── quantization_util.h │ │ │ ├── quantization_util_test.cc │ │ │ ├── reference │ │ │ │ ├── depthwiseconv_float.h │ │ │ │ ├── depthwiseconv_uint8.h │ │ │ │ ├── portable_tensor_utils.cc │ │ │ │ ├── portable_tensor_utils.h │ │ │ │ └── reference_ops.h │ │ │ ├── round.h │ │ │ ├── spectrogram.cc │ │ │ ├── spectrogram.h │ │ │ ├── tensor.h │ │ │ ├── tensor_test.cc │ │ │ ├── tensor_utils.cc │ │ │ ├── tensor_utils.h │ │ │ ├── tensor_utils_test.cc │ │ │ └── types.h │ │ ├── kernel_util.cc │ │ ├── kernel_util.h │ │ ├── kernel_util_test.cc │ │ ├── l2norm.cc │ │ ├── l2norm_test.cc │ │ ├── local_response_norm.cc │ │ ├── local_response_norm_test.cc │ │ ├── log_softmax_test.cc │ │ ├── lsh_projection.cc │ │ ├── lsh_projection_test.cc │ │ ├── lstm.cc │ │ ├── lstm_test.cc │ │ ├── maximum.cc │ │ ├── maximum_test.cc │ │ ├── mean.cc │ │ ├── mean_test.cc │ │ ├── mfcc.cc │ │ ├── mfcc_test.cc │ │ ├── mul.cc │ │ ├── mul_test.cc │ │ ├── op_macros.h │ │ ├── optional_tensor_test.cc │ │ ├── pad.cc │ │ ├── pad_test.cc │ │ ├── padding.h │ │ ├── pooling.cc │ │ ├── pooling_test.cc │ │ ├── register.cc │ │ ├── register.h │ │ ├── reshape.cc │ │ ├── reshape_test.cc │ │ ├── resize_bilinear.cc │ │ ├── resize_bilinear_test.cc │ │ ├── skip_gram.cc │ │ ├── skip_gram_test.cc │ │ ├── softmax_test.cc │ │ ├── space_to_batch_nd.cc │ │ ├── space_to_batch_nd_test.cc │ │ ├── space_to_depth.cc │ │ ├── space_to_depth_test.cc │ │ ├── split.cc │ │ ├── split_test.cc │ │ ├── squeeze.cc │ │ ├── squeeze_test.cc │ │ ├── strided_slice.cc │ │ ├── strided_slice_test.cc │ │ ├── sub.cc │ │ ├── sub_test.cc │ │ ├── svdf.cc │ │ ├── svdf_test.cc │ │ ├── test_util.cc │ │ ├── test_util.h │ │ ├── test_util_test.cc │ │ ├── topk_v2.cc │ │ ├── topk_v2_test.cc │ │ ├── transpose.cc │ │ ├── transpose_test.cc │ │ ├── unidirectional_sequence_lstm.cc │ │ ├── unidirectional_sequence_lstm_test.cc │ │ ├── unidirectional_sequence_rnn.cc │ │ └── unidirectional_sequence_rnn_test.cc │ │ ├── memory_planner.h │ │ ├── model.cc │ │ ├── model.h │ │ ├── nnapi │ │ ├── BUILD │ │ ├── NeuralNetworksShim.h │ │ └── README.md │ │ ├── nnapi_delegate.cc │ │ ├── nnapi_delegate.h │ │ ├── optional_debug_tools.cc │ │ ├── optional_debug_tools.h │ │ ├── rpi_makefile.inc │ │ ├── schema │ │ ├── BUILD │ │ ├── builtin_ops_header │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── consistency_test.cc │ │ │ ├── generate.cc │ │ │ ├── generator.cc │ │ │ ├── generator.h │ │ │ └── generator_test.cc │ │ ├── flatbuffer_compatibility_test.cc │ │ ├── schema.fbs │ │ ├── schema_generated.h │ │ ├── schema_v0.fbs │ │ ├── schema_v1.fbs │ │ ├── schema_v2.fbs │ │ ├── schema_v3.fbs │ │ ├── upgrade_schema.py │ │ └── upgrade_schema_test.py │ │ ├── simple_memory_arena.cc │ │ ├── simple_memory_arena.h │ │ ├── special_rules.bzl │ │ ├── string.h │ │ ├── string_util.cc │ │ ├── string_util.h │ │ ├── tools │ │ ├── BUILD │ │ ├── benchmark_model.cc │ │ ├── gen_op_registration.cc │ │ ├── gen_op_registration.h │ │ ├── gen_op_registration_main.cc │ │ ├── gen_op_registration_test.cc │ │ ├── mutable_op_resolver.cc │ │ ├── mutable_op_resolver.h │ │ ├── verifier.cc │ │ ├── verifier.h │ │ ├── verifier_test.cc │ │ └── visualize.py │ │ ├── util.cc │ │ ├── util.h │ │ └── version.h └── third_party │ ├── BUILD │ ├── arm_neon_2_x86_sse.BUILD │ ├── astor.BUILD │ ├── aws.BUILD │ ├── backports_weakref.BUILD │ ├── boringssl │ └── BUILD │ ├── clang_toolchain │ ├── BUILD │ ├── cc_configure_clang.bzl │ └── download_clang.bzl │ ├── com_google_absl.BUILD │ ├── common.bzl │ ├── cub.BUILD │ ├── curl.BUILD │ ├── cython.BUILD │ ├── eigen.BUILD │ ├── eigen3 │ ├── BUILD │ ├── Eigen │ │ ├── Cholesky │ │ ├── Core │ │ ├── Eigenvalues │ │ ├── LU │ │ ├── QR │ │ └── SVD │ ├── LICENSE │ └── unsupported │ │ └── Eigen │ │ ├── CXX11 │ │ ├── Core │ │ ├── FixedPoint │ │ ├── NeuralNetworks │ │ ├── Tensor │ │ ├── ThreadPool │ │ └── src │ │ │ ├── FixedPoint │ │ │ ├── FixedPointTypes.h │ │ │ ├── MatMatProduct.h │ │ │ ├── MatMatProductAVX2.h │ │ │ ├── MatMatProductNEON.h │ │ │ ├── MatVecProduct.h │ │ │ ├── PacketMathAVX2.h │ │ │ ├── PacketMathAVX512.h │ │ │ ├── TypeCastingAVX2.h │ │ │ └── TypeCastingAVX512.h │ │ │ └── NeuralNetworks │ │ │ ├── Activations.h │ │ │ ├── Attention.h │ │ │ ├── BackwardCuboidConvolutions.h │ │ │ ├── BackwardSpatialConvolutions.h │ │ │ ├── CuboidConvolution.h │ │ │ ├── Patch3d.h │ │ │ ├── Pooling.h │ │ │ ├── SoftMax.h │ │ │ ├── SpatialConvolutions.h │ │ │ └── TensorConvolutionByFFT.h │ │ ├── MatrixFunctions │ │ └── SpecialFunctions │ ├── eigen_fix_cuda_compilation.patch │ ├── examples │ └── eager │ │ └── spinn │ │ ├── BUILD │ │ ├── LICENSE │ │ ├── README.md │ │ └── spinn.py │ ├── farmhash.BUILD │ ├── fft2d │ ├── BUILD │ ├── LICENSE │ ├── fft.h │ └── fft2d.BUILD │ ├── flatbuffers │ ├── BUILD │ ├── build_defs.bzl │ └── flatbuffers.BUILD │ ├── gast.BUILD │ ├── gif.BUILD │ ├── git │ ├── BUILD │ ├── BUILD.tpl │ └── git_configure.bzl │ ├── gpus │ ├── BUILD │ ├── crosstool │ │ ├── BUILD │ │ ├── BUILD.tpl │ │ ├── CROSSTOOL_clang.tpl │ │ ├── CROSSTOOL_nvcc.tpl │ │ ├── LICENSE │ │ ├── clang │ │ │ └── bin │ │ │ │ └── crosstool_wrapper_driver_is_not_gcc.tpl │ │ └── remote.BUILD.tpl │ ├── cuda │ │ ├── BUILD │ │ ├── BUILD.tpl │ │ ├── LICENSE │ │ ├── build_defs.bzl.tpl │ │ ├── cuda_config.h.tpl │ │ └── remote.BUILD.tpl │ └── cuda_configure.bzl │ ├── grpc │ └── BUILD │ ├── hadoop │ ├── BUILD │ ├── LICENSE.txt │ └── hdfs.h │ ├── highwayhash.BUILD │ ├── jemalloc.BUILD │ ├── jpeg │ ├── BUILD │ └── jpeg.BUILD │ ├── jsoncpp.BUILD │ ├── kafka │ ├── BUILD │ └── config.patch │ ├── libxsmm.BUILD │ ├── linenoise.BUILD │ ├── llvm │ ├── BUILD │ ├── expand_cmake_vars.py │ ├── llvm.BUILD │ └── llvm.bzl │ ├── lmdb.BUILD │ ├── mkl │ ├── BUILD │ ├── MKL_LICENSE │ ├── build_defs.bzl │ └── mkl.BUILD │ ├── mkl_dnn │ ├── BUILD │ └── mkldnn.BUILD │ ├── mpi │ ├── .gitignore │ ├── BUILD │ └── mpi.bzl │ ├── mpi_collectives │ └── BUILD │ ├── nasm.BUILD │ ├── nccl │ ├── LICENSE │ ├── nccl_archive.BUILD │ └── nccl_configure.bzl │ ├── ortools.BUILD │ ├── pcre.BUILD │ ├── png.BUILD │ ├── pprof.BUILD │ ├── protobuf │ └── BUILD │ ├── py │ ├── BUILD │ ├── BUILD.tpl │ ├── numpy │ │ └── BUILD │ ├── python_configure.bzl │ └── remote.BUILD.tpl │ ├── repo.bzl │ ├── six.BUILD │ ├── snappy.BUILD │ ├── sqlite.BUILD │ ├── swig.BUILD │ ├── sycl │ ├── BUILD │ ├── crosstool │ │ ├── BUILD │ │ ├── BUILD.tpl │ │ ├── CROSSTOOL.tpl │ │ ├── computecpp.tpl │ │ └── trisycl.tpl │ ├── sycl │ │ ├── BUILD │ │ ├── BUILD.tpl │ │ ├── LICENSE.text │ │ ├── build_defs.bzl.tpl │ │ └── platform.bzl.tpl │ └── sycl_configure.bzl │ ├── tensorrt │ ├── BUILD │ ├── BUILD.tpl │ ├── LICENSE │ ├── build_defs.bzl.tpl │ └── tensorrt_configure.bzl │ ├── termcolor.BUILD │ ├── tflite_mobilenet.BUILD │ ├── tflite_smartreply.BUILD │ ├── toolchains │ ├── clang6 │ │ ├── BUILD │ │ ├── CROSSTOOL.tpl │ │ ├── README.md │ │ ├── clang.BUILD │ │ └── repo.bzl │ ├── cpus │ │ ├── arm │ │ │ ├── BUILD │ │ │ ├── CROSSTOOL.tpl │ │ │ └── arm_compiler_configure.bzl │ │ ├── py │ │ │ └── BUILD │ │ └── py3 │ │ │ └── BUILD │ └── gpus │ │ ├── crosstool │ │ ├── BUILD │ │ └── CROSSTOOL │ │ ├── cuda │ │ ├── BUILD │ │ ├── build_defs.bzl │ │ └── cuda │ │ │ └── cuda_config.h │ │ └── py │ │ └── BUILD │ └── zlib.BUILD └── libs ├── arm64-v8a └── libtensorflow-lite.a └── armeabi-v7a └── libtensorflow-lite.a /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/Android.mk -------------------------------------------------------------------------------- /Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/Application.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/README.md -------------------------------------------------------------------------------- /eigen3/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/BUILD -------------------------------------------------------------------------------- /eigen3/Eigen/Cholesky: -------------------------------------------------------------------------------- 1 | #include "Eigen/Cholesky" 2 | -------------------------------------------------------------------------------- /eigen3/Eigen/Core: -------------------------------------------------------------------------------- 1 | #include "Eigen/Core" 2 | -------------------------------------------------------------------------------- /eigen3/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/Eigen/Eigenvalues -------------------------------------------------------------------------------- /eigen3/Eigen/LU: -------------------------------------------------------------------------------- 1 | #include "Eigen/LU" 2 | -------------------------------------------------------------------------------- /eigen3/Eigen/QR: -------------------------------------------------------------------------------- 1 | #include "Eigen/QR" 2 | -------------------------------------------------------------------------------- /eigen3/Eigen/SVD: -------------------------------------------------------------------------------- 1 | #include "Eigen/SVD" 2 | -------------------------------------------------------------------------------- /eigen3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/LICENSE -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/Core -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/FixedPoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/FixedPoint -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/NeuralNetworks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/NeuralNetworks -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/Tensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/Tensor -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/ThreadPool: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/CXX11/ThreadPool" 2 | -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/FixedPoint/FixedPointTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/FixedPointTypes.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatMatProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatMatProduct.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatMatProductAVX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatMatProductAVX2.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatMatProductNEON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatMatProductNEON.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatVecProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatVecProduct.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/FixedPoint/PacketMathAVX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/PacketMathAVX2.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/FixedPoint/PacketMathAVX512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/PacketMathAVX512.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/FixedPoint/TypeCastingAVX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/TypeCastingAVX2.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/FixedPoint/TypeCastingAVX512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/TypeCastingAVX512.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/NeuralNetworks/Activations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/NeuralNetworks/Activations.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/NeuralNetworks/Attention.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/NeuralNetworks/Attention.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/NeuralNetworks/CuboidConvolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/NeuralNetworks/CuboidConvolution.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/NeuralNetworks/Patch3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/NeuralNetworks/Patch3d.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/NeuralNetworks/Pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/NeuralNetworks/Pooling.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/CXX11/src/NeuralNetworks/SoftMax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/eigen3/unsupported/Eigen/CXX11/src/NeuralNetworks/SoftMax.h -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/MatrixFunctions: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/MatrixFunctions" 2 | -------------------------------------------------------------------------------- /eigen3/unsupported/Eigen/SpecialFunctions: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/SpecialFunctions" 2 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/BUILD -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/Makefile -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/README.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/allocation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/allocation.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/allocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/allocation.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/arena_planner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/arena_planner.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/arena_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/arena_planner.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/build_def.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/build_def.bzl -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/build_ios_universal_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/build_ios_universal_lib.sh -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/build_rpi_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/build_rpi_lib.sh -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/builtin_op_data.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/builtin_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/builtin_ops.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/context.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/context.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/download_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/download_dependencies.sh -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/.clang-format -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/.gitignore -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/AUTHORS -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/CMake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/CMake/README.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/CMakeLists.txt -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/CONTRIBUTING.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/LICENSE -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/README.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/WORKSPACE -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/BUILD.bazel -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/CMakeLists.txt -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/base/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/base/BUILD.bazel -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/base/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/base/attributes.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/base/call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/base/call_once.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/base/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/base/casts.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/base/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/base/config.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/base/macros.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/base/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/base/port.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/copts.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/copts.bzl -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/memory/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/memory/BUILD.bazel -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/memory/memory.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/meta/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/meta/BUILD.bazel -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/meta/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/meta/type_traits.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/numeric/int128.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/numeric/int128.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/numeric/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/numeric/int128.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/strings/ascii.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/strings/ascii.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/strings/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/strings/ascii.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/strings/escaping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/strings/escaping.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/strings/match.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/strings/match.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/strings/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/strings/match.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/strings/numbers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/strings/numbers.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/strings/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/strings/numbers.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/strings/str_cat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/strings/str_cat.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/strings/str_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/strings/str_cat.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/strings/str_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/strings/str_join.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/strings/strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/strings/strip.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/strings/testdata/getline-1.txt: -------------------------------------------------------------------------------- 1 | alpha 2 | 3 | beta gamma 4 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/strings/testdata/getline-2.txt: -------------------------------------------------------------------------------- 1 | one.two.three 2 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/time/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/time/BUILD.bazel -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/time/clock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/time/clock.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/time/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/time/clock.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/time/clock_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/time/clock_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/time/duration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/time/duration.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/time/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/time/format.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/time/internal/cctz/testdata/version: -------------------------------------------------------------------------------- 1 | 2018d-2-g8d1dac0 2 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/time/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/time/time.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/time/time.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/types/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/types/any.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/types/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/types/span.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/absl/absl/types/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/absl/absl/types/variant.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/.hg_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/.hg_archival.txt -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/.hgeol -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/.hgignore -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/.hgtags -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/CMakeLists.txt -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/COPYING.BSD -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/COPYING.GPL -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/COPYING.LGPL -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/COPYING.MINPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/COPYING.MINPACK -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/COPYING.MPL2 -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/COPYING.README -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/CTestConfig.cmake -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/Cholesky -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/Core -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/Dense -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/Eigen -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/Eigenvalues -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/Geometry -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/Householder -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/Jacobi -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/KLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/KLUSupport -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/LU -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/MetisSupport -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/QR -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/SPQRSupport -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/SVD -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/Sparse -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/SparseCore -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/SparseLU -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/SparseQR -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/StdDeque -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/StdList -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/StdVector -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/INSTALL -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/README.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/bench/BenchTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/bench/BenchTimer.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/bench/BenchUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/bench/BenchUtil.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/bench/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/bench/README.txt -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/bench/benchFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/bench/benchFFT.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/bench/bench_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/bench/bench_sum.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/bench/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/bench/benchmark.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/bench/btl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/bench/btl/COPYING -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/bench/btl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/bench/btl/README -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/bench/eig33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/bench/eig33.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/bench/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/bench/geometry.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/bench/quatmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/bench/quatmul.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/bench/sparse_lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/bench/sparse_lu.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/bench/spmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/bench/spmv.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/bench/vdw_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/bench/vdw_new.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/CMakeLists.txt -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/README.txt -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/Rank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/Rank2Update.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/common.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/double.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/chbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/chbmv.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/chpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/chpmv.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/ctbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/ctbmv.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/d_cnjg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/d_cnjg.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/drotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/drotm.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/drotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/drotmg.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/dsbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/dsbmv.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/dspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/dspmv.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/dtbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/dtbmv.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/lsame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/lsame.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/r_cnjg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/r_cnjg.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/srotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/srotm.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/srotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/srotmg.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/ssbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/ssbmv.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/sspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/sspmv.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/stbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/stbmv.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/zhbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/zhbmv.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/zhpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/zhpmv.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/ztbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/f2c/ztbmv.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/level1_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/level1_impl.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/level2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/level2_impl.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/level3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/level3_impl.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/single.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/blas/xerbla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/blas/xerbla.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/cmake/FindGMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/cmake/FindGMP.cmake -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/cmake/FindGSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/cmake/FindGSL.cmake -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/cmake/FindKLU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/cmake/FindKLU.cmake -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/debug/gdb/__init__.py: -------------------------------------------------------------------------------- 1 | # Intentionally empty 2 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/demos/opengl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/demos/opengl/README -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/doc/CMakeLists.txt -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/doc/Doxyfile.in -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/Manual.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/doc/Manual.dox -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/Overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/doc/Overview.dox -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/Pitfalls.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/doc/Pitfalls.dox -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/UsingNVCC.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/doc/UsingNVCC.dox -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/eigendoxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/doc/eigendoxy.css -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/examples/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/doc/examples/.krazy -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/doc/ftv2node.png -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/doc/ftv2pnode.png -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/snippets/.krazy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/doc/snippets/.krazy -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/snippets/MatrixBase_cwiseSqrt.cpp: -------------------------------------------------------------------------------- 1 | Vector3d v(1,2,4); 2 | cout << v.cwiseSqrt() << endl; 3 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/snippets/MatrixBase_identity.cpp: -------------------------------------------------------------------------------- 1 | cout << Matrix::Identity() << endl; 2 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/snippets/MatrixBase_identity_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXd::Identity(4, 3) << endl; 2 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/snippets/MatrixBase_ones_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Ones(2,3) << endl; 2 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/snippets/MatrixBase_random.cpp: -------------------------------------------------------------------------------- 1 | cout << 100 * Matrix2i::Random() << endl; 2 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/snippets/MatrixBase_random_int.cpp: -------------------------------------------------------------------------------- 1 | cout << VectorXi::Random(2) << endl; 2 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/snippets/MatrixBase_random_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Random(2,3) << endl; 2 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/snippets/MatrixBase_zero_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Zero(2,3) << endl; 2 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/doc/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/doc/tutorial.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/eigen3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/eigen3.pc.in -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/failtest/qr_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/failtest/qr_int.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/failtest/ref_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/failtest/ref_1.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/failtest/ref_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/failtest/ref_2.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/failtest/ref_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/failtest/ref_3.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/failtest/ref_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/failtest/ref_4.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/failtest/ref_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/failtest/ref_5.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/failtest/swap_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/failtest/swap_1.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/failtest/swap_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/failtest/swap_2.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/cholesky.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/clacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/clacgv.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/cladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/cladiv.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/clarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/clarf.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/clarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/clarfb.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/clarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/clarfg.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/clarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/clarft.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/dladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/dladiv.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/dlamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/dlamch.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/dlapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/dlapy2.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/dlapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/dlapy3.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/dlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/dlarf.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/dlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/dlarfb.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/dlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/dlarfg.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/dlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/dlarft.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/double.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/ilaclc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/ilaclc.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/ilaclr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/ilaclr.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/iladlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/iladlc.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/iladlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/iladlr.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/ilaslc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/ilaslc.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/ilaslr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/ilaslr.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/ilazlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/ilazlc.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/ilazlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/ilazlr.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/lu.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/single.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/sladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/sladiv.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/slamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/slamch.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/slapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/slapy2.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/slapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/slapy3.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/slarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/slarf.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/slarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/slarfb.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/slarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/slarfg.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/slarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/slarft.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/svd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/svd.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/zlacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/zlacgv.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/zladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/zladiv.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/zlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/zlarf.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/zlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/zlarfb.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/zlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/zlarfg.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/lapack/zlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/lapack/zlarft.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/scripts/check.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/scripts/check.in -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/scripts/debug.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Debug . 4 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/scripts/release.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Release . 4 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/CMakeLists.txt -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/adjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/adjoint.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/array.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/bandmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/bandmatrix.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/basicstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/basicstuff.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/bdcsvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/bdcsvd.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/bicgstab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/bicgstab.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/block.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/bug1213.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/bug1213.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/bug1213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/bug1213.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/cholesky.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/corners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/corners.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/ctorleak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/ctorleak.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/cuda_basic.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/cuda_basic.cu -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/cuda_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/cuda_common.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/denseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/denseLM.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/diagonal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/diagonal.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/dontalign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/dontalign.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/dynalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/dynalloc.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/evaluator_common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/evaluators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/evaluators.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/exceptions.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/fastmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/fastmath.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/half_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/half_float.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/hessenberg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/hessenberg.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/inverse.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/jacobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/jacobi.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/jacobisvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/jacobisvd.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/lscg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/lscg.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/lu.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/main.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/mapstride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/mapstride.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/meta.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/mpl2only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/mpl2only.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/nomalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/nomalloc.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/nullary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/nullary.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/numext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/numext.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/packetmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/packetmath.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/product.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/qr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/qr.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/qtvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/qtvector.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/rand.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/real_qz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/real_qz.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/redux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/redux.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/ref.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/resize.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/schur_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/schur_real.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/sizeof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/sizeof.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/sparse.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/sparseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/sparseLM.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/sparse_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/sparse_ref.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/sparselu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/sparselu.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/sparseqr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/sparseqr.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/stddeque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/stddeque.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/stdlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/stdlist.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/stdvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/stdvector.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/svd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/svd_common.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/svd_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/svd_fill.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/swap.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/triangular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/triangular.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/umeyama.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/umeyama.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/visitor.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/eigen/test/zerosized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/eigen/test/zerosized.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/COPYING -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/Makefile.am -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/Makefile.in -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/NEWS -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/README -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/aclocal.m4 -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/compile -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/config.guess -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/config.h.in -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/config.sub -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/configure -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/configure.ac -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/depcomp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/dev/INSTRUCTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/dev/INSTRUCTIONS -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/dev/PATCH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/dev/PATCH -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/dev/basics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/dev/basics.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/dev/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/dev/builder.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/dev/cmake_m32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/dev/cmake_m32 -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/dev/f.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/dev/f.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/dev/farmhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/dev/farmhash.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/dev/platform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/dev/platform.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/install-sh -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/ltmain.sh -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/m4/libtool.m4 -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/m4/ltoptions.m4 -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/m4/ltsugar.m4 -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/m4/ltversion.m4 -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/missing -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/src/Makefile.am -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/src/Makefile.in -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/src/farm-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/src/farm-test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/src/farmhash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/src/farmhash.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/src/farmhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/src/farmhash.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/farmhash/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/farmhash/test-driver -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/fft4g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/fft4g.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/fft4g.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/fft4g.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/fft4g_h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/fft4g_h.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/fft8g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/fft8g.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/fft8g.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/fft8g.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/fft8g_h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/fft8g_h.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/fftsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/fftsg.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/fftsg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/fftsg.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/fftsg_h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/fftsg_h.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/readme.txt -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/sample1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/sample1/Makefile -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/sample1/testxg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/sample1/testxg.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/sample1/testxg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/sample1/testxg.f -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/sample1/testxg_h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/sample1/testxg_h.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/sample2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/sample2/Makefile -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/fft2d/sample2/pi_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/fft2d/sample2/pi_fft.c -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/LICENSE.txt -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/appveyor.yml -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/biicode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/biicode.conf -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/composer.json -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/go/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/go/builder.go -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/go/doc.go -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/go/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/go/encode.go -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/go/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/go/grpc.go -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/go/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/go/lib.go -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/go/sizes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/go/sizes.go -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/go/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/go/struct.go -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/go/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/go/table.go -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/package.json -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/php/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/php/Table.php -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/pom.xml -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/readme.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/src/flatc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/src/flatc.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/flatbuffers/src/util.cpp -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/tests/MyGame/Example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/tests/MyGame/Example2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/tests/MyGame/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/tests/namespace_test/NamespaceA/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/flatbuffers/tests/namespace_test/NamespaceC/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/AUTHORS -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/CONTRIBUTING -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/CONTRIBUTORS -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/LICENSE -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/Makefile.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/Makefile.travis -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/README.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/doc/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/doc/design.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/doc/kernel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/doc/kernel.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/doc/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/doc/output.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/doc/packing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/doc/packing.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/doc/public.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/doc/public.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/flags.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/flags.bzl -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/internal/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/internal/pack.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/jni/Android.mk -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/meta/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/meta/README -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/meta/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/meta/base.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/meta/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/meta/streams.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/public/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/public/map.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/test/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/test/test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/test/test.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/gemmlowp/test/test_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/gemmlowp/test/test_data.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/googletest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/googletest/.gitignore -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/googletest/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/googletest/.travis.yml -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/googletest/README.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/googletest/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/googletest/appveyor.yml -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/googletest/googlemock/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/googletest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/googletest/googletest/.gitignore: -------------------------------------------------------------------------------- 1 | # python 2 | *.pyc 3 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/googletest/googletest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/googletest/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/googletest/travis.sh -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/neon_2_sse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/neon_2_sse/CMakeLists.txt -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/neon_2_sse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/neon_2_sse/LICENSE -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/neon_2_sse/NEON_2_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/neon_2_sse/NEON_2_SSE.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/neon_2_sse/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/downloads/neon_2_sse/ReadMe.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/downloads/neon_2_sse/cmake/Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/@targets_export_name@.cmake") 2 | -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/error_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/error_reporter.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/error_reporter.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/graph_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/graph_info.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/graph_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/graph_info.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/interpreter.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/interpreter.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/ios_makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/ios_makefile.inc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/BUILD -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/activation_functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/activation_functor.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/activations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/activations.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/activations_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/activations_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/add.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/add_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/add_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/audio_spectrogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/audio_spectrogram.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/audio_spectrogram_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/audio_spectrogram_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/basic_rnn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/basic_rnn.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/basic_rnn_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/basic_rnn_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/batch_to_space_nd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/batch_to_space_nd.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/batch_to_space_nd_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/batch_to_space_nd_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/cast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/cast.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/cast_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/cast_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/concatenation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/concatenation.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/concatenation_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/concatenation_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/conv.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/conv_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/conv_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/depthwise_conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/depthwise_conv.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/depthwise_conv_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/depthwise_conv_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/dequantize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/dequantize.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/dequantize_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/dequantize_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/div.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/div.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/div_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/div_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/eigen_support.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/eigen_support.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/eigen_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/eigen_support.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/embedding_lookup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/embedding_lookup.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/embedding_lookup_sparse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/embedding_lookup_sparse.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/embedding_lookup_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/embedding_lookup_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/exp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/exp.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/exp_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/exp_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/fully_connected.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/fully_connected.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/fully_connected_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/fully_connected_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/gather.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/gather.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/gather_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/gather_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/gemm_support.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/gemm_support.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/gemm_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/gemm_support.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/hashtable_lookup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/hashtable_lookup.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/hashtable_lookup_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/hashtable_lookup_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/BUILD -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/common.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/compatibility.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/kernel_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/kernel_utils.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/kernel_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/kernel_utils.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/mfcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/mfcc.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/mfcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/mfcc.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/mfcc_dct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/mfcc_dct.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/mfcc_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/mfcc_dct.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/round.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/spectrogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/spectrogram.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/spectrogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/spectrogram.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/tensor.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/tensor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/tensor_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/tensor_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/tensor_utils.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/tensor_utils.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/internal/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/internal/types.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/kernel_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/kernel_util.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/kernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/kernel_util.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/kernel_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/kernel_util_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/l2norm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/l2norm.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/l2norm_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/l2norm_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/local_response_norm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/local_response_norm.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/local_response_norm_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/local_response_norm_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/log_softmax_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/log_softmax_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/lsh_projection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/lsh_projection.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/lsh_projection_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/lsh_projection_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/lstm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/lstm.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/lstm_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/lstm_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/maximum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/maximum.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/maximum_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/maximum_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/mean.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/mean.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/mean_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/mean_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/mfcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/mfcc.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/mfcc_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/mfcc_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/mul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/mul.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/mul_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/mul_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/op_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/op_macros.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/optional_tensor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/optional_tensor_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/pad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/pad.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/pad_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/pad_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/padding.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/pooling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/pooling.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/pooling_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/pooling_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/register.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/register.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/register.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/reshape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/reshape.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/reshape_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/reshape_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/resize_bilinear.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/resize_bilinear.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/resize_bilinear_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/resize_bilinear_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/skip_gram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/skip_gram.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/skip_gram_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/skip_gram_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/softmax_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/softmax_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/space_to_batch_nd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/space_to_batch_nd.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/space_to_batch_nd_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/space_to_batch_nd_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/space_to_depth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/space_to_depth.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/space_to_depth_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/space_to_depth_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/split.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/split_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/split_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/squeeze.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/squeeze.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/squeeze_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/squeeze_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/strided_slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/strided_slice.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/strided_slice_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/strided_slice_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/sub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/sub.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/sub_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/sub_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/svdf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/svdf.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/svdf_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/svdf_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/test_util.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/test_util.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/test_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/test_util_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/topk_v2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/topk_v2.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/topk_v2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/topk_v2_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/transpose.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/transpose.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/kernels/transpose_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/kernels/transpose_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/memory_planner.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/model.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/model.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/nnapi/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/nnapi/BUILD -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/nnapi/NeuralNetworksShim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/nnapi/NeuralNetworksShim.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/nnapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/nnapi/README.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/nnapi_delegate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/nnapi_delegate.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/nnapi_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/nnapi_delegate.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/optional_debug_tools.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/optional_debug_tools.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/optional_debug_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/optional_debug_tools.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/rpi_makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/rpi_makefile.inc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/schema/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/schema/BUILD -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/schema/builtin_ops_header/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/schema/builtin_ops_header/BUILD -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/schema/builtin_ops_header/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/schema/builtin_ops_header/README.md -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/schema/schema.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/schema/schema.fbs -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/schema/schema_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/schema/schema_generated.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/schema/schema_v0.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/schema/schema_v0.fbs -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/schema/schema_v1.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/schema/schema_v1.fbs -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/schema/schema_v2.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/schema/schema_v2.fbs -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/schema/schema_v3.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/schema/schema_v3.fbs -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/schema/upgrade_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/schema/upgrade_schema.py -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/schema/upgrade_schema_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/schema/upgrade_schema_test.py -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/simple_memory_arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/simple_memory_arena.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/simple_memory_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/simple_memory_arena.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/special_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/special_rules.bzl -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/string.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/string_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/string_util.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/string_util.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/tools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/tools/BUILD -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/tools/benchmark_model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/tools/benchmark_model.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/tools/gen_op_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/tools/gen_op_registration.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/tools/gen_op_registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/tools/gen_op_registration.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/tools/gen_op_registration_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/tools/gen_op_registration_main.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/tools/gen_op_registration_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/tools/gen_op_registration_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/tools/mutable_op_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/tools/mutable_op_resolver.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/tools/mutable_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/tools/mutable_op_resolver.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/tools/verifier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/tools/verifier.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/tools/verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/tools/verifier.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/tools/verifier_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/tools/verifier_test.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/tools/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/tools/visualize.py -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/util.cc -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/util.h -------------------------------------------------------------------------------- /include/tensorflow/contrib/lite/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/tensorflow/contrib/lite/version.h -------------------------------------------------------------------------------- /include/third_party/BUILD: -------------------------------------------------------------------------------- 1 | licenses(["notice"]) # Apache 2.0 2 | -------------------------------------------------------------------------------- /include/third_party/arm_neon_2_x86_sse.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/arm_neon_2_x86_sse.BUILD -------------------------------------------------------------------------------- /include/third_party/astor.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/astor.BUILD -------------------------------------------------------------------------------- /include/third_party/aws.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/aws.BUILD -------------------------------------------------------------------------------- /include/third_party/backports_weakref.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/backports_weakref.BUILD -------------------------------------------------------------------------------- /include/third_party/boringssl/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/third_party/clang_toolchain/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/third_party/clang_toolchain/cc_configure_clang.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/clang_toolchain/cc_configure_clang.bzl -------------------------------------------------------------------------------- /include/third_party/clang_toolchain/download_clang.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/clang_toolchain/download_clang.bzl -------------------------------------------------------------------------------- /include/third_party/com_google_absl.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/com_google_absl.BUILD -------------------------------------------------------------------------------- /include/third_party/common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/common.bzl -------------------------------------------------------------------------------- /include/third_party/cub.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/cub.BUILD -------------------------------------------------------------------------------- /include/third_party/curl.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/curl.BUILD -------------------------------------------------------------------------------- /include/third_party/cython.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/cython.BUILD -------------------------------------------------------------------------------- /include/third_party/eigen.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/eigen.BUILD -------------------------------------------------------------------------------- /include/third_party/eigen3/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/eigen3/BUILD -------------------------------------------------------------------------------- /include/third_party/eigen3/Eigen/Cholesky: -------------------------------------------------------------------------------- 1 | #include "Eigen/Cholesky" 2 | -------------------------------------------------------------------------------- /include/third_party/eigen3/Eigen/Core: -------------------------------------------------------------------------------- 1 | #include "Eigen/Core" 2 | -------------------------------------------------------------------------------- /include/third_party/eigen3/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/eigen3/Eigen/Eigenvalues -------------------------------------------------------------------------------- /include/third_party/eigen3/Eigen/LU: -------------------------------------------------------------------------------- 1 | #include "Eigen/LU" 2 | -------------------------------------------------------------------------------- /include/third_party/eigen3/Eigen/QR: -------------------------------------------------------------------------------- 1 | #include "Eigen/QR" 2 | -------------------------------------------------------------------------------- /include/third_party/eigen3/Eigen/SVD: -------------------------------------------------------------------------------- 1 | #include "Eigen/SVD" 2 | -------------------------------------------------------------------------------- /include/third_party/eigen3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/eigen3/LICENSE -------------------------------------------------------------------------------- /include/third_party/eigen3/unsupported/Eigen/CXX11/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/eigen3/unsupported/Eigen/CXX11/Core -------------------------------------------------------------------------------- /include/third_party/eigen3/unsupported/Eigen/CXX11/FixedPoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/eigen3/unsupported/Eigen/CXX11/FixedPoint -------------------------------------------------------------------------------- /include/third_party/eigen3/unsupported/Eigen/CXX11/NeuralNetworks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/eigen3/unsupported/Eigen/CXX11/NeuralNetworks -------------------------------------------------------------------------------- /include/third_party/eigen3/unsupported/Eigen/CXX11/Tensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/eigen3/unsupported/Eigen/CXX11/Tensor -------------------------------------------------------------------------------- /include/third_party/eigen3/unsupported/Eigen/CXX11/ThreadPool: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/CXX11/ThreadPool" 2 | -------------------------------------------------------------------------------- /include/third_party/eigen3/unsupported/Eigen/MatrixFunctions: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/MatrixFunctions" 2 | -------------------------------------------------------------------------------- /include/third_party/eigen3/unsupported/Eigen/SpecialFunctions: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/SpecialFunctions" 2 | -------------------------------------------------------------------------------- /include/third_party/eigen_fix_cuda_compilation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/eigen_fix_cuda_compilation.patch -------------------------------------------------------------------------------- /include/third_party/examples/eager/spinn/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/examples/eager/spinn/BUILD -------------------------------------------------------------------------------- /include/third_party/examples/eager/spinn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/examples/eager/spinn/LICENSE -------------------------------------------------------------------------------- /include/third_party/examples/eager/spinn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/examples/eager/spinn/README.md -------------------------------------------------------------------------------- /include/third_party/examples/eager/spinn/spinn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/examples/eager/spinn/spinn.py -------------------------------------------------------------------------------- /include/third_party/farmhash.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/farmhash.BUILD -------------------------------------------------------------------------------- /include/third_party/fft2d/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/fft2d/BUILD -------------------------------------------------------------------------------- /include/third_party/fft2d/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/fft2d/LICENSE -------------------------------------------------------------------------------- /include/third_party/fft2d/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/fft2d/fft.h -------------------------------------------------------------------------------- /include/third_party/fft2d/fft2d.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/fft2d/fft2d.BUILD -------------------------------------------------------------------------------- /include/third_party/flatbuffers/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/flatbuffers/BUILD -------------------------------------------------------------------------------- /include/third_party/flatbuffers/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/flatbuffers/build_defs.bzl -------------------------------------------------------------------------------- /include/third_party/flatbuffers/flatbuffers.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/flatbuffers/flatbuffers.BUILD -------------------------------------------------------------------------------- /include/third_party/gast.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/gast.BUILD -------------------------------------------------------------------------------- /include/third_party/gif.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/gif.BUILD -------------------------------------------------------------------------------- /include/third_party/git/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/third_party/git/BUILD.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/git/BUILD.tpl -------------------------------------------------------------------------------- /include/third_party/git/git_configure.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/git/git_configure.bzl -------------------------------------------------------------------------------- /include/third_party/gpus/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/third_party/gpus/crosstool/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/third_party/gpus/crosstool/BUILD.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/gpus/crosstool/BUILD.tpl -------------------------------------------------------------------------------- /include/third_party/gpus/crosstool/CROSSTOOL_clang.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/gpus/crosstool/CROSSTOOL_clang.tpl -------------------------------------------------------------------------------- /include/third_party/gpus/crosstool/CROSSTOOL_nvcc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/gpus/crosstool/CROSSTOOL_nvcc.tpl -------------------------------------------------------------------------------- /include/third_party/gpus/crosstool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/gpus/crosstool/LICENSE -------------------------------------------------------------------------------- /include/third_party/gpus/crosstool/remote.BUILD.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/gpus/crosstool/remote.BUILD.tpl -------------------------------------------------------------------------------- /include/third_party/gpus/cuda/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/third_party/gpus/cuda/BUILD.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/gpus/cuda/BUILD.tpl -------------------------------------------------------------------------------- /include/third_party/gpus/cuda/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/gpus/cuda/LICENSE -------------------------------------------------------------------------------- /include/third_party/gpus/cuda/build_defs.bzl.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/gpus/cuda/build_defs.bzl.tpl -------------------------------------------------------------------------------- /include/third_party/gpus/cuda/cuda_config.h.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/gpus/cuda/cuda_config.h.tpl -------------------------------------------------------------------------------- /include/third_party/gpus/cuda/remote.BUILD.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/gpus/cuda/remote.BUILD.tpl -------------------------------------------------------------------------------- /include/third_party/gpus/cuda_configure.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/gpus/cuda_configure.bzl -------------------------------------------------------------------------------- /include/third_party/grpc/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/third_party/hadoop/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/hadoop/BUILD -------------------------------------------------------------------------------- /include/third_party/hadoop/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/hadoop/LICENSE.txt -------------------------------------------------------------------------------- /include/third_party/hadoop/hdfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/hadoop/hdfs.h -------------------------------------------------------------------------------- /include/third_party/highwayhash.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/highwayhash.BUILD -------------------------------------------------------------------------------- /include/third_party/jemalloc.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/jemalloc.BUILD -------------------------------------------------------------------------------- /include/third_party/jpeg/BUILD: -------------------------------------------------------------------------------- 1 | licenses(["notice"]) 2 | -------------------------------------------------------------------------------- /include/third_party/jpeg/jpeg.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/jpeg/jpeg.BUILD -------------------------------------------------------------------------------- /include/third_party/jsoncpp.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/jsoncpp.BUILD -------------------------------------------------------------------------------- /include/third_party/kafka/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/kafka/BUILD -------------------------------------------------------------------------------- /include/third_party/kafka/config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/kafka/config.patch -------------------------------------------------------------------------------- /include/third_party/libxsmm.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/libxsmm.BUILD -------------------------------------------------------------------------------- /include/third_party/linenoise.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/linenoise.BUILD -------------------------------------------------------------------------------- /include/third_party/llvm/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/llvm/BUILD -------------------------------------------------------------------------------- /include/third_party/llvm/expand_cmake_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/llvm/expand_cmake_vars.py -------------------------------------------------------------------------------- /include/third_party/llvm/llvm.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/llvm/llvm.BUILD -------------------------------------------------------------------------------- /include/third_party/llvm/llvm.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/llvm/llvm.bzl -------------------------------------------------------------------------------- /include/third_party/lmdb.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/lmdb.BUILD -------------------------------------------------------------------------------- /include/third_party/mkl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/mkl/BUILD -------------------------------------------------------------------------------- /include/third_party/mkl/MKL_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/mkl/MKL_LICENSE -------------------------------------------------------------------------------- /include/third_party/mkl/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/mkl/build_defs.bzl -------------------------------------------------------------------------------- /include/third_party/mkl/mkl.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/mkl/mkl.BUILD -------------------------------------------------------------------------------- /include/third_party/mkl_dnn/BUILD: -------------------------------------------------------------------------------- 1 | licenses(["notice"]) 2 | -------------------------------------------------------------------------------- /include/third_party/mkl_dnn/mkldnn.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/mkl_dnn/mkldnn.BUILD -------------------------------------------------------------------------------- /include/third_party/mpi/.gitignore: -------------------------------------------------------------------------------- 1 | *.h 2 | *.dylib 3 | *.so 4 | -------------------------------------------------------------------------------- /include/third_party/mpi/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/mpi/BUILD -------------------------------------------------------------------------------- /include/third_party/mpi/mpi.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/mpi/mpi.bzl -------------------------------------------------------------------------------- /include/third_party/mpi_collectives/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/mpi_collectives/BUILD -------------------------------------------------------------------------------- /include/third_party/nasm.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/nasm.BUILD -------------------------------------------------------------------------------- /include/third_party/nccl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/nccl/LICENSE -------------------------------------------------------------------------------- /include/third_party/nccl/nccl_archive.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/nccl/nccl_archive.BUILD -------------------------------------------------------------------------------- /include/third_party/nccl/nccl_configure.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/nccl/nccl_configure.bzl -------------------------------------------------------------------------------- /include/third_party/ortools.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/ortools.BUILD -------------------------------------------------------------------------------- /include/third_party/pcre.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/pcre.BUILD -------------------------------------------------------------------------------- /include/third_party/png.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/png.BUILD -------------------------------------------------------------------------------- /include/third_party/pprof.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/pprof.BUILD -------------------------------------------------------------------------------- /include/third_party/protobuf/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/third_party/py/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/third_party/py/BUILD.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/py/BUILD.tpl -------------------------------------------------------------------------------- /include/third_party/py/numpy/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/py/numpy/BUILD -------------------------------------------------------------------------------- /include/third_party/py/python_configure.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/py/python_configure.bzl -------------------------------------------------------------------------------- /include/third_party/py/remote.BUILD.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/py/remote.BUILD.tpl -------------------------------------------------------------------------------- /include/third_party/repo.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/repo.bzl -------------------------------------------------------------------------------- /include/third_party/six.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/six.BUILD -------------------------------------------------------------------------------- /include/third_party/snappy.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/snappy.BUILD -------------------------------------------------------------------------------- /include/third_party/sqlite.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/sqlite.BUILD -------------------------------------------------------------------------------- /include/third_party/swig.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/swig.BUILD -------------------------------------------------------------------------------- /include/third_party/sycl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/sycl/BUILD -------------------------------------------------------------------------------- /include/third_party/sycl/crosstool/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/third_party/sycl/crosstool/BUILD.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/sycl/crosstool/BUILD.tpl -------------------------------------------------------------------------------- /include/third_party/sycl/crosstool/CROSSTOOL.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/sycl/crosstool/CROSSTOOL.tpl -------------------------------------------------------------------------------- /include/third_party/sycl/crosstool/computecpp.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/sycl/crosstool/computecpp.tpl -------------------------------------------------------------------------------- /include/third_party/sycl/crosstool/trisycl.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/sycl/crosstool/trisycl.tpl -------------------------------------------------------------------------------- /include/third_party/sycl/sycl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/sycl/sycl/BUILD -------------------------------------------------------------------------------- /include/third_party/sycl/sycl/BUILD.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/sycl/sycl/BUILD.tpl -------------------------------------------------------------------------------- /include/third_party/sycl/sycl/LICENSE.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/sycl/sycl/LICENSE.text -------------------------------------------------------------------------------- /include/third_party/sycl/sycl/build_defs.bzl.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/sycl/sycl/build_defs.bzl.tpl -------------------------------------------------------------------------------- /include/third_party/sycl/sycl/platform.bzl.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/sycl/sycl/platform.bzl.tpl -------------------------------------------------------------------------------- /include/third_party/sycl/sycl_configure.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/sycl/sycl_configure.bzl -------------------------------------------------------------------------------- /include/third_party/tensorrt/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/third_party/tensorrt/BUILD.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/tensorrt/BUILD.tpl -------------------------------------------------------------------------------- /include/third_party/tensorrt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/tensorrt/LICENSE -------------------------------------------------------------------------------- /include/third_party/tensorrt/build_defs.bzl.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/tensorrt/build_defs.bzl.tpl -------------------------------------------------------------------------------- /include/third_party/tensorrt/tensorrt_configure.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/tensorrt/tensorrt_configure.bzl -------------------------------------------------------------------------------- /include/third_party/termcolor.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/termcolor.BUILD -------------------------------------------------------------------------------- /include/third_party/tflite_mobilenet.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/tflite_mobilenet.BUILD -------------------------------------------------------------------------------- /include/third_party/tflite_smartreply.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/tflite_smartreply.BUILD -------------------------------------------------------------------------------- /include/third_party/toolchains/clang6/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/clang6/BUILD -------------------------------------------------------------------------------- /include/third_party/toolchains/clang6/CROSSTOOL.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/clang6/CROSSTOOL.tpl -------------------------------------------------------------------------------- /include/third_party/toolchains/clang6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/clang6/README.md -------------------------------------------------------------------------------- /include/third_party/toolchains/clang6/clang.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/clang6/clang.BUILD -------------------------------------------------------------------------------- /include/third_party/toolchains/clang6/repo.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/clang6/repo.bzl -------------------------------------------------------------------------------- /include/third_party/toolchains/cpus/arm/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/cpus/arm/BUILD -------------------------------------------------------------------------------- /include/third_party/toolchains/cpus/arm/CROSSTOOL.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/cpus/arm/CROSSTOOL.tpl -------------------------------------------------------------------------------- /include/third_party/toolchains/cpus/arm/arm_compiler_configure.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/cpus/arm/arm_compiler_configure.bzl -------------------------------------------------------------------------------- /include/third_party/toolchains/cpus/py/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/cpus/py/BUILD -------------------------------------------------------------------------------- /include/third_party/toolchains/cpus/py3/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/cpus/py3/BUILD -------------------------------------------------------------------------------- /include/third_party/toolchains/gpus/crosstool/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/gpus/crosstool/BUILD -------------------------------------------------------------------------------- /include/third_party/toolchains/gpus/crosstool/CROSSTOOL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/gpus/crosstool/CROSSTOOL -------------------------------------------------------------------------------- /include/third_party/toolchains/gpus/cuda/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/gpus/cuda/BUILD -------------------------------------------------------------------------------- /include/third_party/toolchains/gpus/cuda/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/gpus/cuda/build_defs.bzl -------------------------------------------------------------------------------- /include/third_party/toolchains/gpus/cuda/cuda/cuda_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/gpus/cuda/cuda/cuda_config.h -------------------------------------------------------------------------------- /include/third_party/toolchains/gpus/py/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/toolchains/gpus/py/BUILD -------------------------------------------------------------------------------- /include/third_party/zlib.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/include/third_party/zlib.BUILD -------------------------------------------------------------------------------- /libs/arm64-v8a/libtensorflow-lite.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/libs/arm64-v8a/libtensorflow-lite.a -------------------------------------------------------------------------------- /libs/armeabi-v7a/libtensorflow-lite.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogerou/TFlite-android/HEAD/libs/armeabi-v7a/libtensorflow-lite.a --------------------------------------------------------------------------------