Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: tensorflow2-lite-devel | Distribution: SUSE Linux Enterprise 15 SP4 |
Version: 2.6.2 | Vendor: openSUSE |
Release: bp154.1.26 | Build date: Thu May 12 09:45:52 2022 |
Group: Development/Languages/Python | Build host: s390zp29 |
Size: 37730849 | Source RPM: tensorflow2-lite-2.6.2-bp154.1.26.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://www.tensorflow.org/ | |
Summary: Header files of tensorflow |
This open source software library for numerical computation is used for data flow graphs. The graph nodes represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) that flow between them. This flexible architecture enables you to deploy computation to one or more CPUs in a desktop, server, or mobile device without rewriting code. This package provides necessary headers for the C/C++ Api
Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND FSFUL AND MIT AND MPL-2.0 AND OpenSSL AND Python-2.0
* Tue Jan 11 2022 Guillaume GARDET <guillaume.gardet@opensuse.org> - Remove more python dependencies for tensorflow2-lite * Mon Jan 10 2022 Guillaume GARDET <guillaume.gardet@opensuse.org> - tensorflow2-lite version does not need all the python dependencies listed for tensorflow2 * Fri Jan 07 2022 Guillaume GARDET <guillaume.gardet@opensuse.org> - Leap 15.x / Backports: Do not build non-Lite versions since python3-numpy and python3-scipy are too old for Keras/TF2 * Tue Nov 09 2021 Christian Goll <cgoll@suse.com> - updated to 2.6.2 which is bug fix release which just fixes an issue where keras, tensorflow_estimator and tensorboard were missing proper upper bounds and resulted in broken installs after Keras 2.7 release for all packages in TensorFlow ecosystem - Fixes from 2.6.1 (boo#1192447): * Fixes a code injection issue in saved_model_cli (CVE-2021-41228) * Fixes a vulnerability due to use of uninitialized value in Tensorflow (CVE-2021-41225) * Fixes a heap OOB in FusedBatchNorm kernels (CVE-2021-41223) * Fixes an arbitrary memory read in ImmutableConst (CVE-2021-41227) * Fixes a heap OOB in SparseBinCount (CVE-2021-41226) * Fixes a heap OOB in SparseFillEmptyRows (CVE-2021-41224) * Fixes a segfault due to negative splits in SplitV (CVE-2021-41222) * Fixes segfaults and vulnerabilities caused by accesses to invalid memory during shape inference in Cudnn* ops (CVE-2021-41221) * Fixes a null pointer exception when Exit node is not preceded by Enter op (CVE-2021-41217) * Fixes an integer division by 0 in tf.raw_ops.AllToAll (CVE-2021-41218) * Fixes a use after free and a memory leak in CollectiveReduceV2 (CVE-2021-41220) * Fixes an undefined behavior via nullptr reference binding in sparse matrix multiplication (CVE-2021-41219) * Fixes a heap buffer overflow in Transpose (CVE-2021-41216) * Prevents deadlocks arising from mutually recursive tf.function objects (CVE-2021-41213) * Fixes a null pointer exception in DeserializeSparse (CVE-2021-41215) * Fixes an undefined behavior arising from reference binding to nullptr in tf.ragged.cross (CVE-2021-41214) * Fixes a heap OOB read in tf.ragged.cross (CVE-2021-41212) * Fixes a heap OOB in shape inference for QuantizeV2 (CVE-2021-41211) * Fixes a heap OOB read in all tf.raw_ops.QuantizeAndDequantizeV* ops (CVE-2021-41205) * Fixes an FPE in ParallelConcat (CVE-2021-41207) * Fixes FPE issues in convolutions with zero size filters (CVE-2021-41209) * Fixes a heap OOB read in tf.raw_ops.SparseCountSparseOutput (CVE-2021-41210) * Fixes vulnerabilities caused by incomplete validation in boosted trees code (CVE-2021-41208) * Fixes vulnerabilities caused by incomplete validation of shapes in multiple TF ops (CVE-2021-41206) * Fixes a segfault produced while copying constant resource tensor (CVE-2021-41204) * Fixes a vulnerability caused by unitialized access in EinsumHelper::ParseEquation (CVE-2021-41201) * Fixes several vulnerabilities and segfaults caused by missing validation during checkpoint loading (CVE-2021-41203) * Fixes an overflow producing a crash in tf.range (CVE-2021-41202) * Fixes an overflow producing a crash in tf.image.resize when size is large (CVE-2021-41199) * Fixes an overflow producing a crash in tf.tile when tiling tensor is large (CVE-2021-41198) * Fixes a vulnerability produced due to incomplete validation in tf.summary.create_file_writer (CVE-2021-41200) * Fixes multiple crashes due to overflow and CHECK-fail in ops with large tensor shapes (CVE-2021-41197) * Fixes a crash in max_pool3d when size argument is 0 or negative (CVE-2021-41196) * Fixes a crash in tf.math.segment_* operations (CVE-2021-41195) * Sat Oct 23 2021 Egbert Eich <eich@suse.com> - Make sure tensorflow/core/public/version.h is installed in the 'lite' version (bsc#1191805). * Fri Sep 24 2021 Ben Greiner <code@bnavigator.de> - Add missing python requirements -- boo#1190856 * Wed Sep 01 2021 Egbert Eich <eich@suse.com> - Limit BuildRequires for bazel-skylib-source to versions >= 1.0.3. * Thu Aug 19 2021 Fusion Future <qydwhotmail@gmail.com> - Update to 2.6.0 Major changes are: * Keras been split into a separate PIP package (keras), and its code has been moved to the GitHub repositorykeras-team/keras. The API endpoints for tf.keras stay unchanged, but are now backed by the keras PIP package. The existing code in tensorflow/python/keras is a staled copy and will be removed in future release (2.7). Please remove any imports to tensorflow.python.keras and replace them with public tf.keras API instead. * tf.train.experimental.enable_mixed_precision_graph_rewrite is removed, as the API only works in graph mode and is not customizable. The function is still accessible under tf.compat.v1.mixed_precision.enable_mixed_precision_graph_rewrite, but it is recommended to use the Keras mixed precision API instead. * tf.lite: Remove experimental.nn.dynamic_rnn, experimental.nn.TfLiteRNNCell and experimental.nn.TfLiteLSTMCell since they're no longer supported. It's recommended to just use keras lstm instead. * tf.keras: The methods Model.to_yaml() and keras.models.model_from_yaml have been replaced to raise a RuntimeError as they can be abused to cause arbitrary code execution. It is recommended to use JSON serialization instead of YAML, or, a better alternative, serialize to H5. - Major changes from 2.5.x: * Support for Python3.9 has been added. * The TF_CPP_MIN_VLOG_LEVEL environment variable has been renamed to to TF_CPP_MAX_VLOG_LEVEL which correctly describes its effect. - Fixed multiple CVEs (boo#1189423): * CVE-2021-37635 * CVE-2021-37636 * CVE-2021-37637 * CVE-2021-37638 * CVE-2021-37639 * CVE-2021-37640 * CVE-2021-37642 * CVE-2021-37641 * CVE-2021-37644 * CVE-2021-37643 * CVE-2021-37645 * CVE-2021-37646 * CVE-2021-37647 * CVE-2021-37648 * CVE-2021-37649 * CVE-2021-37650 * CVE-2021-37651 * CVE-2021-37652 * CVE-2021-37653 * CVE-2021-37654 * CVE-2021-37655 * CVE-2021-37656 * CVE-2021-37657 * CVE-2021-37658 * CVE-2021-37659 * CVE-2021-37660 * CVE-2021-37661 * CVE-2021-37662 * CVE-2021-37664 * CVE-2021-37663 * CVE-2021-37665 * CVE-2021-37666 * CVE-2021-37667 * CVE-2021-37668 * CVE-2021-37669 * CVE-2021-37670 * CVE-2021-37671 * CVE-2021-37672 * CVE-2021-37673 * CVE-2021-37674 * CVE-2021-37676 * CVE-2021-37675 * CVE-2021-37677 * CVE-2021-37678 * CVE-2021-37679 * CVE-2021-37680 * CVE-2021-37681 * CVE-2021-37682 * CVE-2021-37683 * CVE-2021-37684 * CVE-2021-37686 * CVE-2021-37685 * CVE-2021-37687 * CVE-2021-37688 * CVE-2021-37689 * CVE-2021-37691 * CVE-2021-37692 * CVE-2021-37690 - Updated sources: * abseil-cpp.tar.gz * cpuinfo.zip * dill-0.3.2.zip * eigen.tar.gz * google-cloud-cpp.tar.gz * libxsmm_1.14.tar.gz * llvm.tar.gz * oneDNN.tar.gz * rules_cc.tar.gz * rules_closure.tar.gz * rules_docker-0.18.0.tar.gz * ruy.zip * tblib-1.7.0.tar.gz - Added sources: * ComputeLibrary.tar.gz * oneDNN-v2.3-rc2.tar.gz * platforms-0.0.2.tar.gz * rules_proto.tar.gz * tf_runtime.tar.gz * tf_toolchains.tar.gz - Removed sources: * kafka-v0.11.5.tar.gz - Add "tensorflow-2.6.0" prefix to existing patches to indicate that patches are likely to be only applicable to a specific version. * fix-lite.patch -> tensorflow-2.6.0-fix-lite.patch * numpy-tensor-small.patch -> tensorflow-2.6.0-numpy-tensor-small.patch * removed-clog-build-as-included-in-cpuinfo.patch -> tensorflow-2.6.0-removed-clog-build-as-included-in-cpuinfo.patch * removed-external-toolchains.patch -> tensorflow-2.6.0-removed-external-toolchains.patch * remove-weakref.patch -> tensorflow-2.6.0-remove-weakref.patch * tf-keras-hdf5-3.patch -> tensorflow-2.6.0-tf-keras-hdf5-3.patch - Rebase all existing patches. - Add tensorflow-2.6.0-compile-with-protobuf-3.16.patch to fix build error with protobuf >= 3.16.0. (boo#1186860) (https://github.com/protocolbuffers/protobuf/pull/8354) - Update bazel version requirement to 3.7.2. - Drop pcre-devel build requirement as it is not used anymore. - Drop --incompatible_no_support_tools_in_action_inputs=false as it is removed in bazel >= 3.6. * Wed May 19 2021 Guillaume GARDET <guillaume.gardet@opensuse.org> - Update _constraints to use host with 'asimdrdm' cpu flag to avoid slow CPU and be scheduled on faster systems * Wed Apr 14 2021 Ferdinand Thiessen <rpm@fthiessen.de> - Update to version 2.4.1 * Bugfixes * Drops requirement of AVX2 * Tue Apr 06 2021 Ben Greiner <code@bnavigator.de> - Don't BuildRequire keras_applications. Tensorflow provides it itself: https://github.com/tensorflow/tensorflow/commit/23c3bdaa - These were discovered by Keras test suite: * add numpy-tensor-small.patch for Numpy >= 1.20 gh#tensorflow/tensorflow#47691 * add tf-keras-hdf5-3.patch for hdf5 >= 3.0 gh#tensorflow/tensorflow#44467 * Thu Feb 18 2021 Guillaume GARDET <guillaume.gardet@opensuse.org> - Generate and install pkgconfig files for tensorflow-lite and tensorflow (non-hpc) * Wed Jan 27 2021 Guillaume GARDET <guillaume.gardet@opensuse.org> - Do not install bazel tools to build Lite version. This will allow to build for armv7 where bazel 3.x is not available - boo#1178564 * Fri Jan 15 2021 Guillaume GARDET <guillaume.gardet@opensuse.org> - Fix packaging for libiomp5 * Mon Jan 11 2021 Dirk Müller <dmueller@suse.com> - build verbose to not fail on the obs stall detection * Fri Jan 08 2021 Guillaume GARDET <guillaume.gardet@opensuse.org> - libiomp5 is x86_64 only * Wed Jan 06 2021 Guillaume GARDET <guillaume.gardet@opensuse.org> - Fix build on aarch64 and on hpc variants * Wed Oct 21 2020 Christian Goll <cgoll@suse.com> - Updated to version 2.4.0 which fixes several bugs (bsc#1173128) (bsc#1173314)i, (bsc#1179455) and (bsc#1178287) - Security fixes for CVE-2020-26266, CVE-2020-26267, CVE-2020-26268, CVE-2020-26270 and CVE-2020-26271 - updated sources: * abseil-cpp.tar.gz * eigen.tar.gz * gemmlowp.zip * googleapis.zip * llvm.tar.gz - added sources: * DouraFFT.tar.gz * cpuinfo.zip * dill-0.3.1.1.tar.gz (aarch64 only) * dlpack.tar.gz * oneDNN.tar.gz * openmp-10.0.1.src.tar.xz * python-license-astunparse * re2.tar.gz * rules_android.zip * rules_cc.tar.gz * rules_docker-0.15.0.tar.gz * ruy.zip * sobol_data.tar.gz * tblib-1.3.2.tar.gz (aarch64 only) * typing_extensions-3.7.4.2.tar.gz (aarch64 only) - removed sources: * boring_ssl.tar.gz * cub_1.8.0.zip * mkl-v0.21.2.tar.gz * pybind11-v2.3.0.tar.gz * right-json-location.patch * rules_docker.tar.gz - removed patches: * Provide-overload-to-cope-with-const-ness-change-of-N.patch * fix-google-absl-memory.patch * json-feature-name.patch * libjpeg_turbo-name.patch * removed-docker-tools.patch - added patches: * removed-clog-build-as-included-in-cpuinfo.patch * removed-external-toolchains.patch - Major changes are: * tf.distribute introduces experimental support for asynchronous training of models via the tf.distribute.experimental.ParameterServerStrategy API. * MultiWorkerMirroredStrategy is now a stable API and is no longer considered experimental. * Introduces experimental support for a new module named tf.experimental.numpy which is a NumPy-compatible API for writing TF programs. * A major refactoring of the internals of the Keras Functional API has been completed, that should improve the reliability, stability, and performance of constructing Functional models. * Keras mixed precision API tf.keras.mixed_precision is no longer experimental and allows the use of 16-bit floating point formats during training, improving performance by up to 3x on GPUs and 60% on TPUs. * TensorFlow Profiler now supports profiling MultiWorkerMirroredStrategy and tracing multiple workers using the sampling mode API. * Tue Oct 13 2020 Christian Goll <cgoll@suse.com> - fixed hpc flavor and Leap15.2 builds * Mon Sep 28 2020 Christian Goll <cgoll@suse.com> - updated to 2.1.2 with following fixes (bsc#1177022): * Fixes an undefined behavior causing a segfault in tf.raw_ops.Switch (CVE-2020-15190) * Fixes three vulnerabilities in conversion to DLPack format (CVE-2020-15191, CVE-2020-15192, CVE-2020-15193) * Fixes two vulnerabilities in SparseFillEmptyRowsGrad (CVE-2020-15194, CVE-2020-15195) * Fixes an integer truncation vulnerability in code using the work sharder API (CVE-2020-15202) * Fixes a format string vulnerability in tf.strings.as_string (CVE-2020-15203) * Fixes segfault raised by calling session-only ops in eager mode (CVE-2020-15204) * Fixes data leak and potential ASLR violation from tf.raw_ops.StringNGrams (CVE-2020-15205) * Fixes segfaults caused by incomplete SavedModel validation (CVE-2020-15206) * Fixes a data corruption due to a bug in negative indexing support in TFLite (CVE-2020-15207) * Fixes a data corruption due to dimension mismatch in TFLite (CVE-2020-15208) * Fixes several vulnerabilities in TFLite saved model format (CVE-2020-15209, CVE-2020-15210, CVE-2020-15211) - using fft2d.tgz instead of fft.tar.gz - removed fft.tar.gz * Mon Sep 14 2020 Christian Goll <cgoll@suse.com> - fixed json-feature-name.patch for leap15.2 builds * Thu Sep 10 2020 Christian Goll <cgoll@suse.com> - updated disk constraints, as sometimes the build fails with too low disk space * Wed Sep 09 2020 Christian Goll <cgoll@suse.com> - Package C-headers for standard tensorflow (boo#1175789) - fixed build gcc10.1 errors for Tumbleweed with following upstream patch: * added file Provide-overload-to-cope-with-const-ness-change-of-N.patch * Tue Sep 08 2020 Christian Goll <cgoll@suse.com> - Package header files for Tensoflow2 Lite - boo#1175099 * Thu Sep 03 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - Revert memoryperjob constraint support and use again %limit_build macro to avoid OOM errors * Thu Aug 20 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - Lower memoryperjob to 1300 MB (as done for tensorflow) * Thu Aug 20 2020 Martin Liška <mliska@suse.cz> - Use memoryperjob constraint instead of %limit_build macro. * Thu Jun 25 2020 Christian Goll <cgoll@suse.com> - fixed build with json_cpp 1.9.3 (bsc#1173314) * Fri Jun 19 2020 Christian Goll <cgoll@suse.com> - fixed local CUDA builds * Tue Jun 16 2020 Christian Goll <cgoll@suse.com> - updated to 2.1.1 which is a bug fix release mostly for external sources which are not part of this package (sqlite,libjpeg-turbo, Apache Spark) * Fixes a versioning bug which causes Keras layers from TF 1.x to be used instead of those from TF 2.x * Mon May 25 2020 Christian Goll <cgoll@suse.com> - fixed broken builds which were caused due to missing dependency on @com_google_absl//absl/strings in various BUILD files - added patch: fix-google-absl-memory.patch * Tue Apr 07 2020 Christian Goll <cgoll@suse.com> - added mkl-ddn as source and do not use system mkl-dnn (bsc#1168839) - removed patches: * fixed-mkl-sgemm-call.patch * added-mkl_dnn-as-syslib.patch - added source: mkl-v0.21.2.tar.gz * Fri Mar 27 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - tensorflow2-lite-devel does not requires libtensorflow* * Thu Mar 26 2020 Christian Goll <cgoll@suse.com> - removed hpc-mvapich2 build (bsc#1167735) * Tue Mar 24 2020 Bernhard Wiedemann <bwiedemann@suse.com> - Use pip install --no-compile (boo#1094323) * Fri Mar 20 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - Lite flavor should not provide python3-tensorflow nor tensorflow * Fri Mar 13 2020 Christian Goll <cgoll@suse.com> - removed sources of bazel sources and replaced them by internal packages * rules-cc.zip removed * bazel-toolchains.tar.gz removed * bazel-skylib.0.8.0.tar.gz removed * Mon Mar 09 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - Lite flavor should not provide "tensorflow", otherwise tensorlfow2-devel and tensorlfow2-lite-devel conflict and break armnn * Thu Mar 05 2020 Christian Goll <cgoll@suse.com> - added Provides: tensorflow, so that Kerase works with this package and fixed Leap 15.2 build * Fri Feb 28 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - Fix name for libtensorflow* sub-packages * Thu Feb 20 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - openSUSE has no CUDA package, so disable cuda build for openSUSE * Fri Feb 14 2020 Christian Goll <cgoll@suse.com> - addding changes for CUDA builds * Thu Feb 13 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - Add 'Provides' only for hpc flavors, otherwise it matches the package name * Tue Feb 11 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - Add provides/conflicts to avoid to install tensorflow and tensorflow2 as some files are provided by both packages * Wed Feb 05 2020 Christian Goll <cgoll@suse.com> - removed mkl-dnn as sourc and force usage of system mkl-dnn for x86_64 builds * removed file mkl-dnn-v021.2.tar.gz * added patch: added-mkl_dnn-as-syslib.patch * added patch: fixed-mkl-sgemm-call.patch * Sun Feb 02 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - Add 1.25.0 as minimal version for grpc-devel * Fri Jan 31 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - Add 3.1.5 as a minimal version for double-conversion-devel (2.0.1 from SLE15SP2/Leap15.2 is too old) - Lower required version for protobuf (3.9.1 from SLE15SP2/Leap15.2 is fine) * Thu Jan 30 2020 Christian Goll <cgoll@suse.com> - removed AVX2 flavor, this should be fixed via mkl-dnn * Thu Jan 30 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - Fix build on hpc targets * Tue Jan 28 2020 Christian Goll <cgoll@suse.com> - added shared library packages libtensorflow2, libtensorflow_cc2 and libtensorflow_framework2 - removed the AWS sdk support as this forces a SEGFAULT * remobed file aws-sdk-cpp-1.5.8.tar.gz - dropped following source files as they are not needed any more * removed file backports.weakref-1.0rc1.tar.gz * removed file gettid.patch * removed file grpc-v1.24.2.gz * removed file libjpeg-turbo-2.0.0.tar.gz * removed file nsync_1.20.0.tar.gz * Tue Jan 28 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - Do not try to install *.pb.* files in Lite flavor * Tue Jan 28 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - Define package name at 'tensorflow2' instead of 'tensorflow' * Fri Jan 24 2020 Guillaume GARDET <guillaume.gardet@opensuse.org> - Generate *.pb.* files and package them, to be used by ArmNN - Do not build on %ix86 - Do not build %arm, except for Lite flavor * Thu Jan 23 2020 Christian Goll <cgoll@suse.com> - updated to tensorflow 2.1.0 which is a stable release and has following breaking changes: * Deletes Operation.traceback_with_start_lines for which we know of no usages. * Removed id from tf.Tensor.__repr__() as id is not useful other than internal debugging. * Some tf.assert_* methods now raise assertions at operation creation time if the input tensors' values are known at that time, not during the session.run(). This only changes behavior when the graph execution would have resulted in an error. When this happens, a noop is returned and the input tensors are marked non-feedable. In other words, if they are used as keys in feed_dict argument to session.run(), an error will be raised. Also, because some assert ops don't make it into the graph, the graph structure changes. A different graph can result in different per-op random seeds when they are not given explicitly (most often). * The following APIs are not longer experimental: tf.config.list_logical_devices, tf.config.list_physical_devices, tf.config.get_visible_devices, tf.config.set_visible_devices, tf.config.get_logical_device_configuration, tf.config.set_logical_device_configuration. * tf.config.experimentalVirtualDeviceConfiguration has been renamed to tf.config.LogicalDeviceConfiguration. * tf.config.experimental_list_devices has been removed, please use tf.config.list_logical_devices. - renamed the project to tensorflow2 so that the original tensorflow v1 API compatible release can stay in factory. Following changes were made to achive this: * added tensorflow-v2.1.0.tar.gz * added tensforflow2.spec * added tensforflow2.changes * removed tensorflow-v1.13.2.tar.gz * removed tensorflow.spec * removed tensorflow.chnages - following source files had to be updated * updated abseil-cpp.tar.gz * updated bazel-toolchains.tar.gz * updated eigen.tar.gz * updated gemmlowp.zip * updated license.rst.txt * updated rules_closure.tar.gz - following new souces had to be updated * added aws-sdk-cpp-1.5.8.tar.gz * added bazel-skylib.0.8.0.tar.gz * added fft2d.tgz * added rules_cc.zip - for the following souces the system libraries are now ues * removed aws-sdk-cpp-1.3.15.tar.gz * removed double_conversion.zip * removed file unicode-org-icu.tar.gz * removed file 816a4ae622e964763ca0862d9dbd19324a1eaf45.tar.gz - these patches were removed * removed file support-new-bazel.patch * removed file tensorflow-make_aws_sdk_work_on_aarch64.patch * removed file tensorflow-fix_lite.patch * removed file remove-keras.patch * removed file grpc-namespace-corrections.patch - these new patches were added * added fix-lite.patch * added removed-docker-tools.patch * added right-json-location.patch * Tue Oct 15 2019 Christian Goll <cgoll@suse.com> - updated to tensorflow 0.13.2 - dropped grpc.tar.gz and grpc-v1.13.0.gz as system grpc is used, this fixes the broken builds which were introduced with gcc9 (bsc#1152671) * added grpc-namespace-corrections.patch in order to use system grpc - dropped re2-2018-10-01.tar.gz as system re2 is used now * Wed Sep 25 2019 Christian Goll <cgoll@suse.com> - added remove-keras.patch which removes keras sources and uses distribution keras libaries * removed keras-applications-1.0.6.tar.gz * removed keras-preprocessing-1.0.9.tar.gz * Mon Sep 23 2019 Christian Goll <cgoll@suse.com> - using now system protobuf instead of building it (bsc#1151150) * Tue Sep 17 2019 guillaume.gardet@opensuse.org - Ajust %limit_build to avoid OOM errors - Do not use %limit_build for lite flavor * Mon Jul 29 2019 Christian Goll <cgoll@suse.com> - added additonal dependencies * Wed Jul 17 2019 Christian Goll <cgoll@suse.com> - fixed installation location of shared library * Mon Jul 08 2019 Christian Goll <cgoll@suse.com> - removed bazel mirror from as much source links as possible - added support-new-bazel.patch support newer upcoming bazel versions * Tue Jun 04 2019 Guillaume GARDET <guillaume.gardet@opensuse.org> - Fix build for lite flavor: * tensorflow-fix_lite.patch * Wed May 29 2019 Guillaume GARDET <guillaume.gardet@opensuse.org> - Call ldconfig for devel package in post/postun * Mon May 27 2019 Guillaume GARDET <guillaume.gardet@opensuse.org> - Fix aarch64 build with upstream patch: * tensorflow-make_aws_sdk_work_on_aarch64.patch * Mon May 27 2019 Guillaume GARDET <guillaume.gardet@opensuse.org> - Add Lite flavor * Fri Apr 26 2019 Christian Goll <cgoll@suse.com> - updated to 1.13.1 fixes boo#1133490 * Fri Mar 29 2019 Guillaume GARDET <guillaume.gardet@opensuse.org> - Update _constraints to avoid OOM errors * Fri Mar 29 2019 Guillaume GARDET <guillaume.gardet@opensuse.org> - Build and package libtensorflow_cc and libtensorflow_framework * Tue Mar 19 2019 Christian Goll <cgoll@suse.com> - added fix_mvapich_mpi_bzl.patch which fixes detection of mvapich2 mpi library - fixed python3 build * Tue Mar 12 2019 Adrian Schröter <adrian@suse.de> - update to version 1.13.1 * Major Features and Improvements * TensorFlow Lite has moved from contrib to core. This means that Python modules are under tf.lite and source code is now under tensorflow/lite rather than tensorflow/contrib/lite. * TensorFlow GPU binaries are now built against CUDA 10 and TensorRT 5.0. * Support for Python3.7 on all operating systems. * Moved NCCL to core. - drop merged patch mpilibpath_configure_py.patch - drop obsolete pyton3.7 patches - disabled jemalloc for now * Tue Feb 12 2019 cgoll@suse.com - enabled aws and googlecloud support * removed no_aws_and_googlecloud.patch * Mon Feb 11 2019 Christian Goll <cgoll@suse.com> - Fixed build issues with python 3.7 what introduced the patches * python3_7_compatibility.patch backported from upstream * python3.7_unicode.patch fixes a minor function call * python3.7_async_keyword.patch avoids the new keyword async * Thu Jan 31 2019 Bernhard Wiedemann <bwiedemann@suse.com> - Fix build with python 3.7 * Fri Jan 18 2019 Guillaume GARDET <guillaume.gardet@opensuse.org> - Build and package libtensorflow.so as some packages may link to it * Fri Jan 11 2019 Guillaume GARDET <guillaume.gardet@opensuse.org> - Add constraints on HDD size to avoid no space-left error * Mon Nov 26 2018 Todd R <toddrme2178@gmail.com> - Fix python3 provides - Minor spec file cleanups * Sat Nov 24 2018 Todd R <toddrme2178@gmail.com> - Provide python3-tensorflow * Thu Nov 08 2018 cgoll@suse.com - updated build command to fit bazel-0.19 * Thu Oct 18 2018 Jan Engelhardt <jengelh@inai.de> - Trim pad wording from descriptions. * Tue Oct 16 2018 cgoll@suse.com - Updated to Tensorflow 1.10 as with this release it supports the partial use of systemlibs. Still a lot additional sources are included which are * closure * weakref * double-conversion * gast * farmhash * nsync * gemmlowp * abseil-cpp * boring-ssl * google-apis * cub * highwayhash * abseil-pypi * eigen * arm_neon_x86_sse * fft * grpc * re2 Although some of these libraries are available in factory they could not be used as explicit versions are needed or bazel or the build system links them in the wrong way. - mpilibpath_configure_py.patch changes the search path for the mpi to also include lib64/ - no_aws_and_googlecloud.patch removes the dependence of aws, googlecloud and kafaka apis, as this version is not compiled with the support of this apis. * Thu Jan 04 2018 cgoll@suse.com - Initial commit of Tensorflow 1.4 not all requirement could be met by the distribution packages and the sources have to be included. This is true for - Eigen - protobuf - grpc - lmdb - json-cpp The build itself is now based on bazel and creates the pip package which is then extracted from the build environment
/usr/include/tensorflow/core/public /usr/include/tensorflow/core/public/version.h /usr/include/tensorflow/lite /usr/include/tensorflow/lite/allocation.h /usr/include/tensorflow/lite/arena_planner.h /usr/include/tensorflow/lite/builtin_op_data.h /usr/include/tensorflow/lite/builtin_ops.h /usr/include/tensorflow/lite/c /usr/include/tensorflow/lite/c/builtin_op_data.h /usr/include/tensorflow/lite/c/c_api.h /usr/include/tensorflow/lite/c/c_api_experimental.h /usr/include/tensorflow/lite/c/c_api_internal.h /usr/include/tensorflow/lite/c/c_api_types.h /usr/include/tensorflow/lite/c/common.h /usr/include/tensorflow/lite/context.h /usr/include/tensorflow/lite/context_util.h /usr/include/tensorflow/lite/core /usr/include/tensorflow/lite/core/api /usr/include/tensorflow/lite/core/api/error_reporter.h /usr/include/tensorflow/lite/core/api/flatbuffer_conversions.h /usr/include/tensorflow/lite/core/api/op_resolver.h /usr/include/tensorflow/lite/core/api/op_resolver_internal.h /usr/include/tensorflow/lite/core/api/profiler.h /usr/include/tensorflow/lite/core/api/tensor_utils.h /usr/include/tensorflow/lite/core/api/verifier.h /usr/include/tensorflow/lite/core/macros.h /usr/include/tensorflow/lite/core/shims /usr/include/tensorflow/lite/core/shims/c /usr/include/tensorflow/lite/core/shims/c/builtin_op_data.h /usr/include/tensorflow/lite/core/shims/c/c_api.h /usr/include/tensorflow/lite/core/shims/c/c_api_experimental.h /usr/include/tensorflow/lite/core/shims/c/common.h /usr/include/tensorflow/lite/core/shims/c/shims_test_util.h /usr/include/tensorflow/lite/core/shims/cc /usr/include/tensorflow/lite/core/shims/cc/experimental /usr/include/tensorflow/lite/core/shims/cc/experimental/acceleration /usr/include/tensorflow/lite/core/shims/cc/experimental/acceleration/configuration /usr/include/tensorflow/lite/core/shims/cc/experimental/acceleration/configuration/delegate_registry.h /usr/include/tensorflow/lite/core/shims/cc/interpreter.h /usr/include/tensorflow/lite/core/shims/cc/interpreter_builder.h /usr/include/tensorflow/lite/core/shims/cc/kernels /usr/include/tensorflow/lite/core/shims/cc/kernels/builtin_op_kernels.h /usr/include/tensorflow/lite/core/shims/cc/kernels/register.h /usr/include/tensorflow/lite/core/shims/cc/model.h /usr/include/tensorflow/lite/core/shims/cc/model_builder.h /usr/include/tensorflow/lite/core/shims/cc/shims_test_util.h /usr/include/tensorflow/lite/core/shims/cc/tools /usr/include/tensorflow/lite/core/shims/cc/tools/verifier.h /usr/include/tensorflow/lite/core/subgraph.h /usr/include/tensorflow/lite/create_op_resolver.h /usr/include/tensorflow/lite/delegates /usr/include/tensorflow/lite/delegates/coreml /usr/include/tensorflow/lite/delegates/coreml/builders /usr/include/tensorflow/lite/delegates/coreml/builders/activation_layer_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/add_op_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/concatenation_op_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/convolution_op_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/dummy_op_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/fully_connected_op_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/hardswish_op_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/mul_op_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/op_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/op_factory.h /usr/include/tensorflow/lite/delegates/coreml/builders/op_validator.h /usr/include/tensorflow/lite/delegates/coreml/builders/pad_op_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/pooling_layer_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/reshape_op_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/resize_bilinear_op_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/softmax_op_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/test_util.h /usr/include/tensorflow/lite/delegates/coreml/builders/threshold_layer_builder.h /usr/include/tensorflow/lite/delegates/coreml/builders/util.h /usr/include/tensorflow/lite/delegates/coreml/coreml_delegate.h /usr/include/tensorflow/lite/delegates/coreml/coreml_delegate_kernel.h /usr/include/tensorflow/lite/delegates/coreml/coreml_executor.h /usr/include/tensorflow/lite/delegates/delegate_test_util.h /usr/include/tensorflow/lite/delegates/external /usr/include/tensorflow/lite/delegates/external/external_delegate.h /usr/include/tensorflow/lite/delegates/flex /usr/include/tensorflow/lite/delegates/flex/allowlisted_flex_ops.h /usr/include/tensorflow/lite/delegates/flex/allowlisted_flex_ops_internal.h /usr/include/tensorflow/lite/delegates/flex/buffer_map.h /usr/include/tensorflow/lite/delegates/flex/buffer_map_util.h /usr/include/tensorflow/lite/delegates/flex/delegate.h /usr/include/tensorflow/lite/delegates/flex/delegate_data.h /usr/include/tensorflow/lite/delegates/flex/kernel.h /usr/include/tensorflow/lite/delegates/flex/subgraph_resource.h /usr/include/tensorflow/lite/delegates/flex/test_util.h /usr/include/tensorflow/lite/delegates/flex/util.h /usr/include/tensorflow/lite/delegates/gpu /usr/include/tensorflow/lite/delegates/gpu/api.h /usr/include/tensorflow/lite/delegates/gpu/cl /usr/include/tensorflow/lite/delegates/gpu/cl/api.h /usr/include/tensorflow/lite/delegates/gpu/cl/buffer.h /usr/include/tensorflow/lite/delegates/gpu/cl/cl_arguments.h /usr/include/tensorflow/lite/delegates/gpu/cl/cl_command_queue.h /usr/include/tensorflow/lite/delegates/gpu/cl/cl_context.h /usr/include/tensorflow/lite/delegates/gpu/cl/cl_device.h /usr/include/tensorflow/lite/delegates/gpu/cl/cl_errors.h /usr/include/tensorflow/lite/delegates/gpu/cl/cl_event.h /usr/include/tensorflow/lite/delegates/gpu/cl/cl_image_format.h /usr/include/tensorflow/lite/delegates/gpu/cl/cl_kernel.h /usr/include/tensorflow/lite/delegates/gpu/cl/cl_memory.h /usr/include/tensorflow/lite/delegates/gpu/cl/cl_operation.h /usr/include/tensorflow/lite/delegates/gpu/cl/cl_program.h /usr/include/tensorflow/lite/delegates/gpu/cl/cl_test.h /usr/include/tensorflow/lite/delegates/gpu/cl/compiled_program_cache_generated.h /usr/include/tensorflow/lite/delegates/gpu/cl/default /usr/include/tensorflow/lite/delegates/gpu/cl/default/qcom_wrapper.h /usr/include/tensorflow/lite/delegates/gpu/cl/egl_sync.h /usr/include/tensorflow/lite/delegates/gpu/cl/environment.h /usr/include/tensorflow/lite/delegates/gpu/cl/gl_interop.h /usr/include/tensorflow/lite/delegates/gpu/cl/gpu_api_delegate.h /usr/include/tensorflow/lite/delegates/gpu/cl/gpu_object.h /usr/include/tensorflow/lite/delegates/gpu/cl/inference_context.h /usr/include/tensorflow/lite/delegates/gpu/cl/kernels /usr/include/tensorflow/lite/delegates/gpu/cl/kernels/cl_test.h /usr/include/tensorflow/lite/delegates/gpu/cl/kernels/converter.h /usr/include/tensorflow/lite/delegates/gpu/cl/linear_storage.h /usr/include/tensorflow/lite/delegates/gpu/cl/opencl_wrapper.h /usr/include/tensorflow/lite/delegates/gpu/cl/program_cache.h /usr/include/tensorflow/lite/delegates/gpu/cl/recordable_queue.h /usr/include/tensorflow/lite/delegates/gpu/cl/recordable_queue_builder.h /usr/include/tensorflow/lite/delegates/gpu/cl/serialization.h /usr/include/tensorflow/lite/delegates/gpu/cl/serialization_generated.h /usr/include/tensorflow/lite/delegates/gpu/cl/tensor.h /usr/include/tensorflow/lite/delegates/gpu/cl/tensor_type_util.h /usr/include/tensorflow/lite/delegates/gpu/cl/texture2d.h /usr/include/tensorflow/lite/delegates/gpu/cl/util.h /usr/include/tensorflow/lite/delegates/gpu/common /usr/include/tensorflow/lite/delegates/gpu/common/access_type.h /usr/include/tensorflow/lite/delegates/gpu/common/convert.h /usr/include/tensorflow/lite/delegates/gpu/common/custom_parsers.h /usr/include/tensorflow/lite/delegates/gpu/common/custom_transformations.h /usr/include/tensorflow/lite/delegates/gpu/common/data_type.h /usr/include/tensorflow/lite/delegates/gpu/common/gpu_info.h /usr/include/tensorflow/lite/delegates/gpu/common/kernel_info.h /usr/include/tensorflow/lite/delegates/gpu/common/lstm_parser.h /usr/include/tensorflow/lite/delegates/gpu/common/memory_management /usr/include/tensorflow/lite/delegates/gpu/common/memory_management.h /usr/include/tensorflow/lite/delegates/gpu/common/memory_management/equality_assignment.h /usr/include/tensorflow/lite/delegates/gpu/common/memory_management/greedy_by_breadth_assignment.h /usr/include/tensorflow/lite/delegates/gpu/common/memory_management/greedy_by_size_assignment.h /usr/include/tensorflow/lite/delegates/gpu/common/memory_management/greedy_in_order_assignment.h /usr/include/tensorflow/lite/delegates/gpu/common/memory_management/internal.h /usr/include/tensorflow/lite/delegates/gpu/common/memory_management/min_cost_flow_assignment.h /usr/include/tensorflow/lite/delegates/gpu/common/memory_management/naive_assignment.h /usr/include/tensorflow/lite/delegates/gpu/common/memory_management/types.h /usr/include/tensorflow/lite/delegates/gpu/common/model.h /usr/include/tensorflow/lite/delegates/gpu/common/model_builder.h /usr/include/tensorflow/lite/delegates/gpu/common/model_builder_helper.h /usr/include/tensorflow/lite/delegates/gpu/common/model_builder_internal.h /usr/include/tensorflow/lite/delegates/gpu/common/model_hints.h /usr/include/tensorflow/lite/delegates/gpu/common/model_transformer.h /usr/include/tensorflow/lite/delegates/gpu/common/object_reader.h /usr/include/tensorflow/lite/delegates/gpu/common/operation_parser.h /usr/include/tensorflow/lite/delegates/gpu/common/operations.h /usr/include/tensorflow/lite/delegates/gpu/common/precision.h /usr/include/tensorflow/lite/delegates/gpu/common/quantization_util.h /usr/include/tensorflow/lite/delegates/gpu/common/selectors /usr/include/tensorflow/lite/delegates/gpu/common/selectors/convolution_selector.h /usr/include/tensorflow/lite/delegates/gpu/common/selectors/convolution_transposed_selector.h /usr/include/tensorflow/lite/delegates/gpu/common/selectors/default_selector.h /usr/include/tensorflow/lite/delegates/gpu/common/selectors/dw_convolution_selector.h /usr/include/tensorflow/lite/delegates/gpu/common/selectors/fully_connected_selector.h /usr/include/tensorflow/lite/delegates/gpu/common/selectors/operation_selector.h /usr/include/tensorflow/lite/delegates/gpu/common/selectors/simple_selectors.h /usr/include/tensorflow/lite/delegates/gpu/common/selectors/special_selector.h /usr/include/tensorflow/lite/delegates/gpu/common/selectors/subgraph.h /usr/include/tensorflow/lite/delegates/gpu/common/shape.h /usr/include/tensorflow/lite/delegates/gpu/common/status.h /usr/include/tensorflow/lite/delegates/gpu/common/task /usr/include/tensorflow/lite/delegates/gpu/common/task/arguments.h /usr/include/tensorflow/lite/delegates/gpu/common/task/buffer_desc.h /usr/include/tensorflow/lite/delegates/gpu/common/task/compiler_options.h /usr/include/tensorflow/lite/delegates/gpu/common/task/gpu_object_desc.h /usr/include/tensorflow/lite/delegates/gpu/common/task/gpu_operation.h /usr/include/tensorflow/lite/delegates/gpu/common/task/gpu_tensor.h /usr/include/tensorflow/lite/delegates/gpu/common/task/profiling_info.h /usr/include/tensorflow/lite/delegates/gpu/common/task/serialization_base_generated.h /usr/include/tensorflow/lite/delegates/gpu/common/task/storage_type_util.h /usr/include/tensorflow/lite/delegates/gpu/common/task/tensor_desc.h /usr/include/tensorflow/lite/delegates/gpu/common/task/tensor_linear_desc.h /usr/include/tensorflow/lite/delegates/gpu/common/task/testing_util.h /usr/include/tensorflow/lite/delegates/gpu/common/task/texture2d_desc.h /usr/include/tensorflow/lite/delegates/gpu/common/task/tuning_type.h /usr/include/tensorflow/lite/delegates/gpu/common/task/util.h /usr/include/tensorflow/lite/delegates/gpu/common/task/weights_conversion.h /usr/include/tensorflow/lite/delegates/gpu/common/task/weights_layout.h /usr/include/tensorflow/lite/delegates/gpu/common/task/work_group_picking.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks /usr/include/tensorflow/lite/delegates/gpu/common/tasks/add.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/add_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/concat_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/concat_xy.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/concat_z.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/conv_buffer_1x1.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/conv_buffer_1x1_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/conv_constants.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/conv_constants_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/conv_metal.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/conv_powervr.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/conv_powervr_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/conv_weights_converter.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/conv_weights_converter_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/convolution_transposed.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/convolution_transposed_3x3.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/convolution_transposed_3x3_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/convolution_transposed_3x3_thin.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/convolution_transposed_3x3_thin_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/convolution_transposed_4x4.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/convolution_transposed_4x4_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/convolution_transposed_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/convolution_transposed_thin.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/convolution_transposed_thin_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/depthwise_conv.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/depthwise_conv_3x3.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/depthwise_conv_3x3_stride_h2.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/depthwise_conv_3x3_stride_h2_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/depthwise_conv_3x3_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/depthwise_conv_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/elementwise.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/elementwise_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/fully_connected.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/fully_connected_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/gather.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/gather_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/lstm.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/lstm_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/max_unpooling.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/max_unpooling_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/mean_stddev_normalization.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/mean_stddev_normalization_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/padding.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/padding_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/pooling.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/pooling_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/prelu.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/prelu_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/quantize_and_dequantize.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/quantize_and_dequantize_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/reduce.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/reduce_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/relu.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/relu_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/resampler.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/resampler_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/reshape.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/reshape_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/reshapex4.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/resize.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/resize_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/softmax.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/softmax1x1.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/softmax_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/space_to_depth.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/space_to_depth_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/special /usr/include/tensorflow/lite/delegates/gpu/common/tasks/special/depthwise_conv_plus_1x1_conv.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/special/fc_fc_add.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/split.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/split_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/strided_slice.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/strided_slice_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/tile.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/tile_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/transpose.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/transpose_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/winograd.h /usr/include/tensorflow/lite/delegates/gpu/common/tasks/winograd_test_util.h /usr/include/tensorflow/lite/delegates/gpu/common/tensor.h /usr/include/tensorflow/lite/delegates/gpu/common/testing /usr/include/tensorflow/lite/delegates/gpu/common/testing/feature_parity /usr/include/tensorflow/lite/delegates/gpu/common/testing/feature_parity/feature_parity.h /usr/include/tensorflow/lite/delegates/gpu/common/testing/feature_parity/generators /usr/include/tensorflow/lite/delegates/gpu/common/testing/feature_parity/generators/add.h /usr/include/tensorflow/lite/delegates/gpu/common/testing/feature_parity/utils.h /usr/include/tensorflow/lite/delegates/gpu/common/testing/interpreter_utils.h /usr/include/tensorflow/lite/delegates/gpu/common/transformations /usr/include/tensorflow/lite/delegates/gpu/common/transformations/add_bias.h /usr/include/tensorflow/lite/delegates/gpu/common/transformations/add_quant_adjustments.h /usr/include/tensorflow/lite/delegates/gpu/common/transformations/fuse_add_to_conv.h /usr/include/tensorflow/lite/delegates/gpu/common/transformations/fuse_mul_to_conv.h /usr/include/tensorflow/lite/delegates/gpu/common/transformations/global_pooling_to_reduce_op.h /usr/include/tensorflow/lite/delegates/gpu/common/transformations/make_fully_connected.h /usr/include/tensorflow/lite/delegates/gpu/common/transformations/make_padding.h /usr/include/tensorflow/lite/delegates/gpu/common/transformations/matching.h /usr/include/tensorflow/lite/delegates/gpu/common/transformations/merge_densify.h /usr/include/tensorflow/lite/delegates/gpu/common/transformations/merge_padding_with.h /usr/include/tensorflow/lite/delegates/gpu/common/transformations/model_transformations.h /usr/include/tensorflow/lite/delegates/gpu/common/transformations/remove_noop.h /usr/include/tensorflow/lite/delegates/gpu/common/types.h /usr/include/tensorflow/lite/delegates/gpu/common/util.h /usr/include/tensorflow/lite/delegates/gpu/common/winograd_util.h /usr/include/tensorflow/lite/delegates/gpu/common/workgroup_selection.h /usr/include/tensorflow/lite/delegates/gpu/delegate.h /usr/include/tensorflow/lite/delegates/gpu/gl /usr/include/tensorflow/lite/delegates/gpu/gl/api.h /usr/include/tensorflow/lite/delegates/gpu/gl/api2.h /usr/include/tensorflow/lite/delegates/gpu/gl/command_queue.h /usr/include/tensorflow/lite/delegates/gpu/gl/compiler /usr/include/tensorflow/lite/delegates/gpu/gl/compiler.h /usr/include/tensorflow/lite/delegates/gpu/gl/compiler/compiled_node.h /usr/include/tensorflow/lite/delegates/gpu/gl/compiler/fuse_auto_input.h /usr/include/tensorflow/lite/delegates/gpu/gl/compiler/fuse_inline.h /usr/include/tensorflow/lite/delegates/gpu/gl/compiler/fuse_inplace.h /usr/include/tensorflow/lite/delegates/gpu/gl/compiler/object_accessor.h /usr/include/tensorflow/lite/delegates/gpu/gl/compiler/preprocessor.h /usr/include/tensorflow/lite/delegates/gpu/gl/compiler/rename.h /usr/include/tensorflow/lite/delegates/gpu/gl/compiler/shader_code.h /usr/include/tensorflow/lite/delegates/gpu/gl/compiler/shader_codegen.h /usr/include/tensorflow/lite/delegates/gpu/gl/compiler/variable_accessor.h /usr/include/tensorflow/lite/delegates/gpu/gl/compiler_options.h /usr/include/tensorflow/lite/delegates/gpu/gl/converters /usr/include/tensorflow/lite/delegates/gpu/gl/converters/bhwc_to_phwc4.h /usr/include/tensorflow/lite/delegates/gpu/gl/converters/phwc4_to_bhwc.h /usr/include/tensorflow/lite/delegates/gpu/gl/converters/util.h /usr/include/tensorflow/lite/delegates/gpu/gl/egl_context.h /usr/include/tensorflow/lite/delegates/gpu/gl/egl_environment.h /usr/include/tensorflow/lite/delegates/gpu/gl/egl_surface.h /usr/include/tensorflow/lite/delegates/gpu/gl/float16_conversions.h /usr/include/tensorflow/lite/delegates/gpu/gl/gl_buffer.h /usr/include/tensorflow/lite/delegates/gpu/gl/gl_call.h /usr/include/tensorflow/lite/delegates/gpu/gl/gl_errors.h /usr/include/tensorflow/lite/delegates/gpu/gl/gl_program.h /usr/include/tensorflow/lite/delegates/gpu/gl/gl_shader.h /usr/include/tensorflow/lite/delegates/gpu/gl/gl_sync.h /usr/include/tensorflow/lite/delegates/gpu/gl/gl_texture.h /usr/include/tensorflow/lite/delegates/gpu/gl/gl_texture_helper.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/add.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/concat.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/conv.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/converter.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/custom_registry.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/depthwise_conv.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/elementwise.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/fully_connected.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/lstm.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/max_unpooling.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/mean.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/mul.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/pad.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/pooling.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/prelu.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/quantize_and_dequantize.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/registry.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/relu.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/reshape.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/resize.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/slice.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/softmax.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/space_to_depth.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/test_util.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/tile.h /usr/include/tensorflow/lite/delegates/gpu/gl/kernels/transpose_conv.h /usr/include/tensorflow/lite/delegates/gpu/gl/node_shader.h /usr/include/tensorflow/lite/delegates/gpu/gl/object.h /usr/include/tensorflow/lite/delegates/gpu/gl/object_manager.h /usr/include/tensorflow/lite/delegates/gpu/gl/portable_egl.h /usr/include/tensorflow/lite/delegates/gpu/gl/portable_gl31.h /usr/include/tensorflow/lite/delegates/gpu/gl/request_gpu_info.h /usr/include/tensorflow/lite/delegates/gpu/gl/runtime /usr/include/tensorflow/lite/delegates/gpu/gl/runtime.h /usr/include/tensorflow/lite/delegates/gpu/gl/runtime/shared_buffer.h /usr/include/tensorflow/lite/delegates/gpu/gl/runtime_options.h /usr/include/tensorflow/lite/delegates/gpu/gl/serialization.h /usr/include/tensorflow/lite/delegates/gpu/gl/stats.h /usr/include/tensorflow/lite/delegates/gpu/gl/variable.h /usr/include/tensorflow/lite/delegates/gpu/gl/workgroups /usr/include/tensorflow/lite/delegates/gpu/gl/workgroups/best_effort_calculator.h /usr/include/tensorflow/lite/delegates/gpu/gl/workgroups/calculator.h /usr/include/tensorflow/lite/delegates/gpu/gl/workgroups/calculator_from_metadata.h /usr/include/tensorflow/lite/delegates/gpu/gl/workgroups/default_calculator.h /usr/include/tensorflow/lite/delegates/gpu/gl/workgroups/ideal_workgroup_picker.h /usr/include/tensorflow/lite/delegates/gpu/gl_delegate.h /usr/include/tensorflow/lite/delegates/gpu/metal /usr/include/tensorflow/lite/delegates/gpu/metal/buffer.h /usr/include/tensorflow/lite/delegates/gpu/metal/buffer_convert.h /usr/include/tensorflow/lite/delegates/gpu/metal/common.h /usr/include/tensorflow/lite/delegates/gpu/metal/compute_task.h /usr/include/tensorflow/lite/delegates/gpu/metal/gpu_object.h /usr/include/tensorflow/lite/delegates/gpu/metal/inference_context.h /usr/include/tensorflow/lite/delegates/gpu/metal/kernels /usr/include/tensorflow/lite/delegates/gpu/metal/kernels/test_util.h /usr/include/tensorflow/lite/delegates/gpu/metal/linear_storage.h /usr/include/tensorflow/lite/delegates/gpu/metal/metal_arguments.h /usr/include/tensorflow/lite/delegates/gpu/metal/metal_device.h /usr/include/tensorflow/lite/delegates/gpu/metal/metal_spatial_tensor.h /usr/include/tensorflow/lite/delegates/gpu/metal/texture2d.h /usr/include/tensorflow/lite/delegates/gpu/metal_delegate.h /usr/include/tensorflow/lite/delegates/gpu/metal_delegate_internal.h /usr/include/tensorflow/lite/delegates/gpu/spi.h /usr/include/tensorflow/lite/delegates/hexagon /usr/include/tensorflow/lite/delegates/hexagon/builders /usr/include/tensorflow/lite/delegates/hexagon/builders/activation_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/arg_min_max_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/arithmetic_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/batch_seq_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/cast_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/concat_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/conv_2d_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/hardswish_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/l2_normalization_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/matmul_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/min_max_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/mirror_pad_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/neg_op_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/op_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/op_factory.h /usr/include/tensorflow/lite/delegates/hexagon/builders/pack_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/pad_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/pool_2d_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/quantize_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/reduce_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/reshape_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/resize_bilinear_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/resize_nearest_neighbor_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/slice_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/softmax_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/space_to_depth_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/split_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/strided_slice_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/tests /usr/include/tensorflow/lite/delegates/hexagon/builders/tests/hexagon_delegate_op_model.h /usr/include/tensorflow/lite/delegates/hexagon/builders/transpose_builder.h /usr/include/tensorflow/lite/delegates/hexagon/builders/transpose_conv_2d_builder.h /usr/include/tensorflow/lite/delegates/hexagon/hexagon_delegate.h /usr/include/tensorflow/lite/delegates/hexagon/hexagon_delegate_kernel.h /usr/include/tensorflow/lite/delegates/hexagon/hexagon_implementation.h /usr/include/tensorflow/lite/delegates/hexagon/hexagon_nn /usr/include/tensorflow/lite/delegates/hexagon/hexagon_nn/hexagon_nn.h /usr/include/tensorflow/lite/delegates/hexagon/hexagon_nn/hexagon_nn_init.h /usr/include/tensorflow/lite/delegates/hexagon/hexagon_nn_interface.h /usr/include/tensorflow/lite/delegates/hexagon/utils.h /usr/include/tensorflow/lite/delegates/interpreter_utils.h /usr/include/tensorflow/lite/delegates/nnapi /usr/include/tensorflow/lite/delegates/nnapi/acceleration_test_util.h /usr/include/tensorflow/lite/delegates/nnapi/nnapi_delegate.h /usr/include/tensorflow/lite/delegates/nnapi/nnapi_delegate_kernel.h /usr/include/tensorflow/lite/delegates/nnapi/nnapi_delegate_mock_test.h /usr/include/tensorflow/lite/delegates/nnapi/quant_lstm_sup.h /usr/include/tensorflow/lite/delegates/serialization.h /usr/include/tensorflow/lite/delegates/telemetry.h /usr/include/tensorflow/lite/delegates/utils /usr/include/tensorflow/lite/delegates/utils.h /usr/include/tensorflow/lite/delegates/utils/dummy_delegate /usr/include/tensorflow/lite/delegates/utils/dummy_delegate/dummy_delegate.h /usr/include/tensorflow/lite/delegates/utils/simple_delegate.h /usr/include/tensorflow/lite/delegates/xnnpack /usr/include/tensorflow/lite/delegates/xnnpack/binary_elementwise_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/conv_2d_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/depth_to_space_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/depthwise_conv_2d_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/fully_connected_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/leaky_relu_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/pad_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/pool_2d_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/prelu_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/quantization_util.h /usr/include/tensorflow/lite/delegates/xnnpack/quantized_add_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/quantized_conv_2d_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/quantized_depthwise_conv_2d_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/quantized_fully_connected_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/reduce_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/reshape_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/resize_bilinear_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/softmax_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/test_util.h /usr/include/tensorflow/lite/delegates/xnnpack/unary_elementwise_tester.h /usr/include/tensorflow/lite/delegates/xnnpack/xnnpack_delegate.h /usr/include/tensorflow/lite/error_reporter.h /usr/include/tensorflow/lite/examples /usr/include/tensorflow/lite/examples/ios /usr/include/tensorflow/lite/examples/ios/camera /usr/include/tensorflow/lite/examples/ios/camera/CameraExampleAppDelegate.h /usr/include/tensorflow/lite/examples/ios/camera/CameraExampleViewController.h /usr/include/tensorflow/lite/examples/ios/simple /usr/include/tensorflow/lite/examples/ios/simple/AppDelegate.h /usr/include/tensorflow/lite/examples/ios/simple/RunModelViewController.h /usr/include/tensorflow/lite/examples/ios/simple/ios_image_load.h /usr/include/tensorflow/lite/examples/label_image /usr/include/tensorflow/lite/examples/label_image/bitmap_helpers.h /usr/include/tensorflow/lite/examples/label_image/bitmap_helpers_impl.h /usr/include/tensorflow/lite/examples/label_image/get_top_n.h /usr/include/tensorflow/lite/examples/label_image/get_top_n_impl.h /usr/include/tensorflow/lite/examples/label_image/label_image.h /usr/include/tensorflow/lite/examples/label_image/log.h /usr/include/tensorflow/lite/experimental /usr/include/tensorflow/lite/experimental/acceleration /usr/include/tensorflow/lite/experimental/acceleration/compatibility /usr/include/tensorflow/lite/experimental/acceleration/compatibility/android_info.h /usr/include/tensorflow/lite/experimental/acceleration/compatibility/canonicalize_value.h /usr/include/tensorflow/lite/experimental/acceleration/compatibility/devicedb.h /usr/include/tensorflow/lite/experimental/acceleration/compatibility/gpu_compatibility.h /usr/include/tensorflow/lite/experimental/acceleration/compatibility/variables.h /usr/include/tensorflow/lite/experimental/acceleration/configuration /usr/include/tensorflow/lite/experimental/acceleration/configuration/c /usr/include/tensorflow/lite/experimental/acceleration/configuration/c/delegate_plugin.h /usr/include/tensorflow/lite/experimental/acceleration/configuration/c/nnapi_plugin.h /usr/include/tensorflow/lite/experimental/acceleration/configuration/configuration_generated.h /usr/include/tensorflow/lite/experimental/acceleration/configuration/delegate_registry.h /usr/include/tensorflow/lite/experimental/acceleration/configuration/nnapi_plugin.h /usr/include/tensorflow/lite/experimental/acceleration/configuration/proto_to_flatbuffer.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/big_little_affinity.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/call_register.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/decode_jpeg_register.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/decode_jpeg_status.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/embedder.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/fb_storage.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/grafter.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/jpeg_common.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/jpeg_decompress_buffered_struct.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/jpeg_header_parser.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/libc_handle.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/libjpeg.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/libjpeg_decoder.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/libjpeg_decoder_test_helper.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/libjpeg_handle.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/runner.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/status_codes.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/validator.h /usr/include/tensorflow/lite/experimental/acceleration/mini_benchmark/validator_runner.h /usr/include/tensorflow/lite/experimental/microfrontend /usr/include/tensorflow/lite/experimental/microfrontend/audio_microfrontend.h /usr/include/tensorflow/lite/experimental/microfrontend/lib /usr/include/tensorflow/lite/experimental/microfrontend/lib/bits.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/fft.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/fft_io.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/fft_util.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/filterbank.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/filterbank_io.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/filterbank_util.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/frontend.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/frontend_io.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/frontend_util.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/log_lut.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/log_scale.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/log_scale_io.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/log_scale_util.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/noise_reduction.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/noise_reduction_io.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/noise_reduction_util.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/pcan_gain_control.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/pcan_gain_control_util.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/window.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/window_io.h /usr/include/tensorflow/lite/experimental/microfrontend/lib/window_util.h /usr/include/tensorflow/lite/experimental/resource /usr/include/tensorflow/lite/experimental/resource/lookup_interfaces.h /usr/include/tensorflow/lite/experimental/resource/lookup_util.h /usr/include/tensorflow/lite/experimental/resource/resource_base.h /usr/include/tensorflow/lite/experimental/resource/resource_variable.h /usr/include/tensorflow/lite/experimental/resource/static_hashtable.h /usr/include/tensorflow/lite/external_cpu_backend_context.h /usr/include/tensorflow/lite/graph_info.h /usr/include/tensorflow/lite/interpreter.h /usr/include/tensorflow/lite/interpreter_builder.h /usr/include/tensorflow/lite/interpreter_test_util.h /usr/include/tensorflow/lite/java /usr/include/tensorflow/lite/java/src /usr/include/tensorflow/lite/java/src/main /usr/include/tensorflow/lite/java/src/main/native /usr/include/tensorflow/lite/java/src/main/native/jni_utils.h /usr/include/tensorflow/lite/kernels /usr/include/tensorflow/lite/kernels/acceleration_test_util.h /usr/include/tensorflow/lite/kernels/acceleration_test_util_internal.h /usr/include/tensorflow/lite/kernels/builtin_op_kernels.h /usr/include/tensorflow/lite/kernels/cpu_backend_context.h /usr/include/tensorflow/lite/kernels/cpu_backend_gemm.h /usr/include/tensorflow/lite/kernels/cpu_backend_gemm_custom_gemv.h /usr/include/tensorflow/lite/kernels/cpu_backend_gemm_eigen.h /usr/include/tensorflow/lite/kernels/cpu_backend_gemm_gemmlowp.h /usr/include/tensorflow/lite/kernels/cpu_backend_gemm_params.h /usr/include/tensorflow/lite/kernels/cpu_backend_gemm_ruy.h /usr/include/tensorflow/lite/kernels/cpu_backend_gemm_x86.h /usr/include/tensorflow/lite/kernels/cpu_backend_threadpool.h /usr/include/tensorflow/lite/kernels/ctc /usr/include/tensorflow/lite/kernels/ctc/ctc_beam_entry.h /usr/include/tensorflow/lite/kernels/ctc/ctc_beam_scorer.h /usr/include/tensorflow/lite/kernels/ctc/ctc_beam_search.h /usr/include/tensorflow/lite/kernels/ctc/ctc_decoder.h /usr/include/tensorflow/lite/kernels/ctc/ctc_loss_util.h /usr/include/tensorflow/lite/kernels/ctc/top_n.h /usr/include/tensorflow/lite/kernels/custom_ops_register.h /usr/include/tensorflow/lite/kernels/dequantize.h /usr/include/tensorflow/lite/kernels/eigen_support.h /usr/include/tensorflow/lite/kernels/fully_connected.h /usr/include/tensorflow/lite/kernels/gradient /usr/include/tensorflow/lite/kernels/gradient/bcast_grad_args.h /usr/include/tensorflow/lite/kernels/gradient/gradient_ops.h /usr/include/tensorflow/lite/kernels/gru_cell.h /usr/include/tensorflow/lite/kernels/internal /usr/include/tensorflow/lite/kernels/internal/common.h /usr/include/tensorflow/lite/kernels/internal/compatibility.h /usr/include/tensorflow/lite/kernels/internal/cppmath.h /usr/include/tensorflow/lite/kernels/internal/kernel_utils.h /usr/include/tensorflow/lite/kernels/internal/legacy_types.h /usr/include/tensorflow/lite/kernels/internal/max.h /usr/include/tensorflow/lite/kernels/internal/mfcc.h /usr/include/tensorflow/lite/kernels/internal/mfcc_dct.h /usr/include/tensorflow/lite/kernels/internal/mfcc_mel_filterbank.h /usr/include/tensorflow/lite/kernels/internal/min.h /usr/include/tensorflow/lite/kernels/internal/optimized /usr/include/tensorflow/lite/kernels/internal/optimized/batch_matmul.h /usr/include/tensorflow/lite/kernels/internal/optimized/cpu_check.h /usr/include/tensorflow/lite/kernels/internal/optimized/depthwiseconv_3x3_filter_common.h /usr/include/tensorflow/lite/kernels/internal/optimized/depthwiseconv_float.h /usr/include/tensorflow/lite/kernels/internal/optimized/depthwiseconv_multithread.h /usr/include/tensorflow/lite/kernels/internal/optimized/depthwiseconv_uint8.h /usr/include/tensorflow/lite/kernels/internal/optimized/depthwiseconv_uint8_3x3_filter.h /usr/include/tensorflow/lite/kernels/internal/optimized/depthwiseconv_uint8_transitional.h /usr/include/tensorflow/lite/kernels/internal/optimized/eigen_spatial_convolutions.h /usr/include/tensorflow/lite/kernels/internal/optimized/im2col_utils.h /usr/include/tensorflow/lite/kernels/internal/optimized/integer_ops /usr/include/tensorflow/lite/kernels/internal/optimized/integer_ops/add.h /usr/include/tensorflow/lite/kernels/internal/optimized/integer_ops/conv.h /usr/include/tensorflow/lite/kernels/internal/optimized/integer_ops/depthwise_conv.h /usr/include/tensorflow/lite/kernels/internal/optimized/integer_ops/depthwise_conv_3x3_filter.h /usr/include/tensorflow/lite/kernels/internal/optimized/integer_ops/depthwise_conv_hybrid.h /usr/include/tensorflow/lite/kernels/internal/optimized/integer_ops/depthwise_conv_hybrid_3x3_filter.h /usr/include/tensorflow/lite/kernels/internal/optimized/integer_ops/fully_connected.h /usr/include/tensorflow/lite/kernels/internal/optimized/integer_ops/mean.h /usr/include/tensorflow/lite/kernels/internal/optimized/integer_ops/mul.h /usr/include/tensorflow/lite/kernels/internal/optimized/integer_ops/pooling.h /usr/include/tensorflow/lite/kernels/internal/optimized/integer_ops/transpose_conv.h /usr/include/tensorflow/lite/kernels/internal/optimized/legacy_optimized_ops.h /usr/include/tensorflow/lite/kernels/internal/optimized/multithreaded_conv.h /usr/include/tensorflow/lite/kernels/internal/optimized/neon_check.h /usr/include/tensorflow/lite/kernels/internal/optimized/neon_tensor_utils.h /usr/include/tensorflow/lite/kernels/internal/optimized/neon_tensor_utils_impl.h /usr/include/tensorflow/lite/kernels/internal/optimized/optimized_ops.h /usr/include/tensorflow/lite/kernels/internal/optimized/resize_bilinear.h /usr/include/tensorflow/lite/kernels/internal/optimized/sparse_ops /usr/include/tensorflow/lite/kernels/internal/optimized/sparse_ops/fully_connected.h /usr/include/tensorflow/lite/kernels/internal/optimized/sse_check.h /usr/include/tensorflow/lite/kernels/internal/optimized/sse_tensor_utils.h /usr/include/tensorflow/lite/kernels/internal/optimized/sse_tensor_utils_impl.h /usr/include/tensorflow/lite/kernels/internal/portable_tensor.h /usr/include/tensorflow/lite/kernels/internal/quantization_util.h /usr/include/tensorflow/lite/kernels/internal/reference /usr/include/tensorflow/lite/kernels/internal/reference/add.h /usr/include/tensorflow/lite/kernels/internal/reference/add_n.h /usr/include/tensorflow/lite/kernels/internal/reference/arg_min_max.h /usr/include/tensorflow/lite/kernels/internal/reference/batch_matmul.h /usr/include/tensorflow/lite/kernels/internal/reference/batch_to_space_nd.h /usr/include/tensorflow/lite/kernels/internal/reference/binary_function.h /usr/include/tensorflow/lite/kernels/internal/reference/broadcast_to.h /usr/include/tensorflow/lite/kernels/internal/reference/cast.h /usr/include/tensorflow/lite/kernels/internal/reference/ceil.h /usr/include/tensorflow/lite/kernels/internal/reference/comparisons.h /usr/include/tensorflow/lite/kernels/internal/reference/concatenation.h /usr/include/tensorflow/lite/kernels/internal/reference/conv.h /usr/include/tensorflow/lite/kernels/internal/reference/conv3d.h /usr/include/tensorflow/lite/kernels/internal/reference/conv3d_transpose.h /usr/include/tensorflow/lite/kernels/internal/reference/cumsum.h /usr/include/tensorflow/lite/kernels/internal/reference/densify.h /usr/include/tensorflow/lite/kernels/internal/reference/depth_to_space.h /usr/include/tensorflow/lite/kernels/internal/reference/depthwiseconv_float.h /usr/include/tensorflow/lite/kernels/internal/reference/depthwiseconv_uint8.h /usr/include/tensorflow/lite/kernels/internal/reference/dequantize.h /usr/include/tensorflow/lite/kernels/internal/reference/div.h /usr/include/tensorflow/lite/kernels/internal/reference/elu.h /usr/include/tensorflow/lite/kernels/internal/reference/exp.h /usr/include/tensorflow/lite/kernels/internal/reference/fill.h /usr/include/tensorflow/lite/kernels/internal/reference/floor.h /usr/include/tensorflow/lite/kernels/internal/reference/floor_div.h /usr/include/tensorflow/lite/kernels/internal/reference/floor_mod.h /usr/include/tensorflow/lite/kernels/internal/reference/fully_connected.h /usr/include/tensorflow/lite/kernels/internal/reference/gather.h /usr/include/tensorflow/lite/kernels/internal/reference/hard_swish.h /usr/include/tensorflow/lite/kernels/internal/reference/integer_ops /usr/include/tensorflow/lite/kernels/internal/reference/integer_ops/add.h /usr/include/tensorflow/lite/kernels/internal/reference/integer_ops/conv.h /usr/include/tensorflow/lite/kernels/internal/reference/integer_ops/depthwise_conv.h /usr/include/tensorflow/lite/kernels/internal/reference/integer_ops/dequantize.h /usr/include/tensorflow/lite/kernels/internal/reference/integer_ops/fully_connected.h /usr/include/tensorflow/lite/kernels/internal/reference/integer_ops/l2normalization.h /usr/include/tensorflow/lite/kernels/internal/reference/integer_ops/log_softmax.h /usr/include/tensorflow/lite/kernels/internal/reference/integer_ops/logistic.h /usr/include/tensorflow/lite/kernels/internal/reference/integer_ops/mean.h /usr/include/tensorflow/lite/kernels/internal/reference/integer_ops/mul.h /usr/include/tensorflow/lite/kernels/internal/reference/integer_ops/pooling.h /usr/include/tensorflow/lite/kernels/internal/reference/integer_ops/tanh.h /usr/include/tensorflow/lite/kernels/internal/reference/integer_ops/transpose_conv.h /usr/include/tensorflow/lite/kernels/internal/reference/l2normalization.h /usr/include/tensorflow/lite/kernels/internal/reference/leaky_relu.h /usr/include/tensorflow/lite/kernels/internal/reference/legacy_reference_ops.h /usr/include/tensorflow/lite/kernels/internal/reference/log_softmax.h /usr/include/tensorflow/lite/kernels/internal/reference/logistic.h /usr/include/tensorflow/lite/kernels/internal/reference/maximum_minimum.h /usr/include/tensorflow/lite/kernels/internal/reference/mul.h /usr/include/tensorflow/lite/kernels/internal/reference/neg.h /usr/include/tensorflow/lite/kernels/internal/reference/non_max_suppression.h /usr/include/tensorflow/lite/kernels/internal/reference/pad.h /usr/include/tensorflow/lite/kernels/internal/reference/pooling.h /usr/include/tensorflow/lite/kernels/internal/reference/portable_tensor_utils.h /usr/include/tensorflow/lite/kernels/internal/reference/portable_tensor_utils_impl.h /usr/include/tensorflow/lite/kernels/internal/reference/prelu.h /usr/include/tensorflow/lite/kernels/internal/reference/process_broadcast_shapes.h /usr/include/tensorflow/lite/kernels/internal/reference/quantize.h /usr/include/tensorflow/lite/kernels/internal/reference/reduce.h /usr/include/tensorflow/lite/kernels/internal/reference/reference_ops.h /usr/include/tensorflow/lite/kernels/internal/reference/requantize.h /usr/include/tensorflow/lite/kernels/internal/reference/resize_bilinear.h /usr/include/tensorflow/lite/kernels/internal/reference/resize_nearest_neighbor.h /usr/include/tensorflow/lite/kernels/internal/reference/round.h /usr/include/tensorflow/lite/kernels/internal/reference/softmax.h /usr/include/tensorflow/lite/kernels/internal/reference/space_to_batch_nd.h /usr/include/tensorflow/lite/kernels/internal/reference/space_to_depth.h /usr/include/tensorflow/lite/kernels/internal/reference/sparse_ops /usr/include/tensorflow/lite/kernels/internal/reference/sparse_ops/fully_connected.h /usr/include/tensorflow/lite/kernels/internal/reference/strided_slice.h /usr/include/tensorflow/lite/kernels/internal/reference/string_comparisons.h /usr/include/tensorflow/lite/kernels/internal/reference/sub.h /usr/include/tensorflow/lite/kernels/internal/reference/svdf.h /usr/include/tensorflow/lite/kernels/internal/reference/tanh.h /usr/include/tensorflow/lite/kernels/internal/reference/transpose.h /usr/include/tensorflow/lite/kernels/internal/reference/transpose_conv.h /usr/include/tensorflow/lite/kernels/internal/spectrogram.h /usr/include/tensorflow/lite/kernels/internal/strided_slice_logic.h /usr/include/tensorflow/lite/kernels/internal/tensor.h /usr/include/tensorflow/lite/kernels/internal/tensor_ctypes.h /usr/include/tensorflow/lite/kernels/internal/tensor_utils.h /usr/include/tensorflow/lite/kernels/internal/tensor_utils_common.h /usr/include/tensorflow/lite/kernels/internal/test_util.h /usr/include/tensorflow/lite/kernels/internal/transpose_utils.h /usr/include/tensorflow/lite/kernels/internal/types.h /usr/include/tensorflow/lite/kernels/kernel_util.h /usr/include/tensorflow/lite/kernels/lstm_eval.h /usr/include/tensorflow/lite/kernels/lstm_shared.h /usr/include/tensorflow/lite/kernels/op_macros.h /usr/include/tensorflow/lite/kernels/padding.h /usr/include/tensorflow/lite/kernels/parse_example /usr/include/tensorflow/lite/kernels/parse_example/example_proto_fast_parsing.h /usr/include/tensorflow/lite/kernels/parse_example/parse_example.h /usr/include/tensorflow/lite/kernels/perception /usr/include/tensorflow/lite/kernels/perception/perception_ops.h /usr/include/tensorflow/lite/kernels/register.h /usr/include/tensorflow/lite/kernels/register_ref.h /usr/include/tensorflow/lite/kernels/reshape_test_common.h /usr/include/tensorflow/lite/kernels/shim /usr/include/tensorflow/lite/kernels/shim/op_kernel.h /usr/include/tensorflow/lite/kernels/shim/shape.h /usr/include/tensorflow/lite/kernels/shim/status_macros.h /usr/include/tensorflow/lite/kernels/shim/tensor_view.h /usr/include/tensorflow/lite/kernels/shim/test_op /usr/include/tensorflow/lite/kernels/shim/test_op/simple_op.h /usr/include/tensorflow/lite/kernels/shim/test_op/simple_tf_op.h /usr/include/tensorflow/lite/kernels/shim/test_op/simple_tflite_op.h /usr/include/tensorflow/lite/kernels/shim/test_util.h /usr/include/tensorflow/lite/kernels/shim/tf_op_shim.h /usr/include/tensorflow/lite/kernels/shim/tf_tensor_view.h /usr/include/tensorflow/lite/kernels/shim/tflite_op_shim.h /usr/include/tensorflow/lite/kernels/shim/tflite_tensor_view.h /usr/include/tensorflow/lite/kernels/subgraph_test_util.h /usr/include/tensorflow/lite/kernels/test_delegate_providers.h /usr/include/tensorflow/lite/kernels/test_util.h /usr/include/tensorflow/lite/memory_planner.h /usr/include/tensorflow/lite/micro /usr/include/tensorflow/lite/micro/all_ops_resolver.h /usr/include/tensorflow/lite/micro/benchmarks /usr/include/tensorflow/lite/micro/benchmarks/keyword_scrambled_model_data.h /usr/include/tensorflow/lite/micro/benchmarks/micro_benchmark.h /usr/include/tensorflow/lite/micro/compatibility.h /usr/include/tensorflow/lite/micro/cortex_m_generic /usr/include/tensorflow/lite/micro/cortex_m_generic/debug_log_callback.h /usr/include/tensorflow/lite/micro/debug_log.h /usr/include/tensorflow/lite/micro/examples /usr/include/tensorflow/lite/micro/examples/hello_world /usr/include/tensorflow/lite/micro/examples/hello_world/constants.h /usr/include/tensorflow/lite/micro/examples/hello_world/main_functions.h /usr/include/tensorflow/lite/micro/examples/hello_world/model.h /usr/include/tensorflow/lite/micro/examples/hello_world/output_handler.h /usr/include/tensorflow/lite/micro/examples/magic_wand /usr/include/tensorflow/lite/micro/examples/magic_wand/accelerometer_handler.h /usr/include/tensorflow/lite/micro/examples/magic_wand/constants.h /usr/include/tensorflow/lite/micro/examples/magic_wand/gesture_predictor.h /usr/include/tensorflow/lite/micro/examples/magic_wand/magic_wand_model_data.h /usr/include/tensorflow/lite/micro/examples/magic_wand/main_functions.h /usr/include/tensorflow/lite/micro/examples/magic_wand/output_handler.h /usr/include/tensorflow/lite/micro/examples/magic_wand/ring_micro_features_data.h /usr/include/tensorflow/lite/micro/examples/magic_wand/slope_micro_features_data.h /usr/include/tensorflow/lite/micro/examples/magic_wand/zephyr_riscv /usr/include/tensorflow/lite/micro/examples/magic_wand/zephyr_riscv/src /usr/include/tensorflow/lite/micro/examples/magic_wand/zephyr_riscv/src/accelerometer_handler.h /usr/include/tensorflow/lite/micro/examples/micro_speech /usr/include/tensorflow/lite/micro/examples/micro_speech/CMSIS /usr/include/tensorflow/lite/micro/examples/micro_speech/CMSIS/hanning.h /usr/include/tensorflow/lite/micro/examples/micro_speech/CMSIS/sin_1k.h /usr/include/tensorflow/lite/micro/examples/micro_speech/audio_provider.h /usr/include/tensorflow/lite/micro/examples/micro_speech/command_responder.h /usr/include/tensorflow/lite/micro/examples/micro_speech/esp /usr/include/tensorflow/lite/micro/examples/micro_speech/esp/ringbuf.h /usr/include/tensorflow/lite/micro/examples/micro_speech/feature_provider.h /usr/include/tensorflow/lite/micro/examples/micro_speech/main_functions.h /usr/include/tensorflow/lite/micro/examples/micro_speech/micro_features /usr/include/tensorflow/lite/micro/examples/micro_speech/micro_features/micro_features_generator.h /usr/include/tensorflow/lite/micro/examples/micro_speech/micro_features/micro_model_settings.h /usr/include/tensorflow/lite/micro/examples/micro_speech/micro_features/model.h /usr/include/tensorflow/lite/micro/examples/micro_speech/micro_features/no_feature_data_slice.h /usr/include/tensorflow/lite/micro/examples/micro_speech/micro_features/no_micro_features_data.h /usr/include/tensorflow/lite/micro/examples/micro_speech/micro_features/static_alloc.h /usr/include/tensorflow/lite/micro/examples/micro_speech/micro_features/yes_feature_data_slice.h /usr/include/tensorflow/lite/micro/examples/micro_speech/micro_features/yes_micro_features_data.h /usr/include/tensorflow/lite/micro/examples/micro_speech/no_1000ms_sample_data.h /usr/include/tensorflow/lite/micro/examples/micro_speech/no_30ms_sample_data.h /usr/include/tensorflow/lite/micro/examples/micro_speech/recognize_commands.h /usr/include/tensorflow/lite/micro/examples/micro_speech/simple_features /usr/include/tensorflow/lite/micro/examples/micro_speech/simple_features/model.h /usr/include/tensorflow/lite/micro/examples/micro_speech/simple_features/no_power_spectrum_data.h /usr/include/tensorflow/lite/micro/examples/micro_speech/simple_features/no_simple_features_data.h /usr/include/tensorflow/lite/micro/examples/micro_speech/simple_features/simple_features_generator.h /usr/include/tensorflow/lite/micro/examples/micro_speech/simple_features/simple_model_settings.h /usr/include/tensorflow/lite/micro/examples/micro_speech/simple_features/yes_power_spectrum_data.h /usr/include/tensorflow/lite/micro/examples/micro_speech/simple_features/yes_simple_features_data.h /usr/include/tensorflow/lite/micro/examples/micro_speech/yes_1000ms_sample_data.h /usr/include/tensorflow/lite/micro/examples/micro_speech/yes_30ms_sample_data.h /usr/include/tensorflow/lite/micro/examples/network_tester /usr/include/tensorflow/lite/micro/examples/network_tester/expected_output_data.h /usr/include/tensorflow/lite/micro/examples/network_tester/input_data.h /usr/include/tensorflow/lite/micro/examples/network_tester/network_model.h /usr/include/tensorflow/lite/micro/examples/person_detection /usr/include/tensorflow/lite/micro/examples/person_detection/arduino /usr/include/tensorflow/lite/micro/examples/person_detection/arduino/HM01B0_platform.h /usr/include/tensorflow/lite/micro/examples/person_detection/detection_responder.h /usr/include/tensorflow/lite/micro/examples/person_detection/esp /usr/include/tensorflow/lite/micro/examples/person_detection/esp/app_camera_esp.h /usr/include/tensorflow/lite/micro/examples/person_detection/himax_driver /usr/include/tensorflow/lite/micro/examples/person_detection/himax_driver/HM01B0.h /usr/include/tensorflow/lite/micro/examples/person_detection/himax_driver/HM01B0_RAW8_QVGA_8bits_lsb_5fps.h /usr/include/tensorflow/lite/micro/examples/person_detection/himax_driver/HM01B0_Walking1s_01.h /usr/include/tensorflow/lite/micro/examples/person_detection/himax_driver/HM01B0_debug.h /usr/include/tensorflow/lite/micro/examples/person_detection/himax_driver/HM01B0_optimized.h /usr/include/tensorflow/lite/micro/examples/person_detection/image_provider.h /usr/include/tensorflow/lite/micro/examples/person_detection/main_functions.h /usr/include/tensorflow/lite/micro/examples/person_detection/model_settings.h /usr/include/tensorflow/lite/micro/examples/person_detection/no_person_image_data.h /usr/include/tensorflow/lite/micro/examples/person_detection/person_detect_model_data.h /usr/include/tensorflow/lite/micro/examples/person_detection/person_image_data.h /usr/include/tensorflow/lite/micro/kernels /usr/include/tensorflow/lite/micro/kernels/activation_utils.h /usr/include/tensorflow/lite/micro/kernels/arc_mli /usr/include/tensorflow/lite/micro/kernels/arc_mli/mli_slicers.h /usr/include/tensorflow/lite/micro/kernels/arc_mli/mli_tf_utils.h /usr/include/tensorflow/lite/micro/kernels/arc_mli/scratch_buf_mgr.h /usr/include/tensorflow/lite/micro/kernels/arc_mli/scratch_buffers.h /usr/include/tensorflow/lite/micro/kernels/ceva /usr/include/tensorflow/lite/micro/kernels/ceva/ceva_common.h /usr/include/tensorflow/lite/micro/kernels/ceva/ceva_tflm_lib.h /usr/include/tensorflow/lite/micro/kernels/ceva/mcps_macros.h /usr/include/tensorflow/lite/micro/kernels/ceva/types.h /usr/include/tensorflow/lite/micro/kernels/circular_buffer_flexbuffers_generated_data.h /usr/include/tensorflow/lite/micro/kernels/conv.h /usr/include/tensorflow/lite/micro/kernels/conv_test.h /usr/include/tensorflow/lite/micro/kernels/depthwise_conv.h /usr/include/tensorflow/lite/micro/kernels/detection_postprocess_flexbuffers_generated_data.h /usr/include/tensorflow/lite/micro/kernels/ethosu.h /usr/include/tensorflow/lite/micro/kernels/fully_connected.h /usr/include/tensorflow/lite/micro/kernels/kernel_runner.h /usr/include/tensorflow/lite/micro/kernels/kernel_util.h /usr/include/tensorflow/lite/micro/kernels/micro_ops.h /usr/include/tensorflow/lite/micro/kernels/micro_utils.h /usr/include/tensorflow/lite/micro/kernels/quantize.h /usr/include/tensorflow/lite/micro/kernels/softmax.h /usr/include/tensorflow/lite/micro/kernels/svdf.h /usr/include/tensorflow/lite/micro/kernels/xtensa /usr/include/tensorflow/lite/micro/kernels/xtensa/fixedpoint_utils.h /usr/include/tensorflow/lite/micro/kernels/xtensa/xtensa.h /usr/include/tensorflow/lite/micro/kernels/xtensa/xtensa_conv.h /usr/include/tensorflow/lite/micro/kernels/xtensa/xtensa_softmax.h /usr/include/tensorflow/lite/micro/memory_helpers.h /usr/include/tensorflow/lite/micro/memory_planner /usr/include/tensorflow/lite/micro/memory_planner/greedy_memory_planner.h /usr/include/tensorflow/lite/micro/memory_planner/linear_memory_planner.h /usr/include/tensorflow/lite/micro/memory_planner/memory_planner.h /usr/include/tensorflow/lite/micro/micro_allocator.h /usr/include/tensorflow/lite/micro/micro_error_reporter.h /usr/include/tensorflow/lite/micro/micro_graph.h /usr/include/tensorflow/lite/micro/micro_interpreter.h /usr/include/tensorflow/lite/micro/micro_mutable_op_resolver.h /usr/include/tensorflow/lite/micro/micro_op_resolver.h /usr/include/tensorflow/lite/micro/micro_profiler.h /usr/include/tensorflow/lite/micro/micro_string.h /usr/include/tensorflow/lite/micro/micro_time.h /usr/include/tensorflow/lite/micro/micro_utils.h /usr/include/tensorflow/lite/micro/mock_micro_graph.h /usr/include/tensorflow/lite/micro/recording_micro_allocator.h /usr/include/tensorflow/lite/micro/recording_micro_interpreter.h /usr/include/tensorflow/lite/micro/recording_simple_memory_allocator.h /usr/include/tensorflow/lite/micro/simple_memory_allocator.h /usr/include/tensorflow/lite/micro/system_setup.h /usr/include/tensorflow/lite/micro/test_helpers.h /usr/include/tensorflow/lite/micro/testing /usr/include/tensorflow/lite/micro/testing/micro_test.h /usr/include/tensorflow/lite/micro/testing/test_conv_model.h /usr/include/tensorflow/lite/micro/tools /usr/include/tensorflow/lite/micro/tools/make /usr/include/tensorflow/lite/micro/tools/make/templates /usr/include/tensorflow/lite/micro/tools/make/templates/TensorFlowLite.h /usr/include/tensorflow/lite/minimal_logging.h /usr/include/tensorflow/lite/model.h /usr/include/tensorflow/lite/model_builder.h /usr/include/tensorflow/lite/mutable_op_resolver.h /usr/include/tensorflow/lite/nnapi /usr/include/tensorflow/lite/nnapi/NeuralNetworksShim.h /usr/include/tensorflow/lite/nnapi/NeuralNetworksTypes.h /usr/include/tensorflow/lite/nnapi/nnapi_handler.h /usr/include/tensorflow/lite/nnapi/nnapi_implementation.h /usr/include/tensorflow/lite/nnapi/nnapi_util.h /usr/include/tensorflow/lite/nnapi/sl /usr/include/tensorflow/lite/nnapi/sl/include /usr/include/tensorflow/lite/nnapi/sl/include/SupportLibrary.h /usr/include/tensorflow/lite/nnapi/sl/include/SupportLibrarySymbols.h /usr/include/tensorflow/lite/nnapi/sl/public /usr/include/tensorflow/lite/nnapi/sl/public/NeuralNetworksSupportLibraryImpl.h /usr/include/tensorflow/lite/objc /usr/include/tensorflow/lite/objc/apis /usr/include/tensorflow/lite/objc/apis/TFLCoreMLDelegate.h /usr/include/tensorflow/lite/objc/apis/TFLDelegate.h /usr/include/tensorflow/lite/objc/apis/TFLInterpreter.h /usr/include/tensorflow/lite/objc/apis/TFLInterpreterOptions.h /usr/include/tensorflow/lite/objc/apis/TFLMetalDelegate.h /usr/include/tensorflow/lite/objc/apis/TFLQuantizationParameters.h /usr/include/tensorflow/lite/objc/apis/TFLTensor.h /usr/include/tensorflow/lite/objc/apis/TFLTensorFlowLite.h /usr/include/tensorflow/lite/objc/apps /usr/include/tensorflow/lite/objc/apps/TestApp /usr/include/tensorflow/lite/objc/apps/TestApp/TestApp /usr/include/tensorflow/lite/objc/apps/TestApp/TestApp/AppDelegate.h /usr/include/tensorflow/lite/objc/apps/TestApp/TestApp/ViewController.h /usr/include/tensorflow/lite/objc/sources /usr/include/tensorflow/lite/objc/sources/TFLErrorUtil.h /usr/include/tensorflow/lite/objc/sources/TFLInterpreter+Internal.h /usr/include/tensorflow/lite/objc/sources/TFLQuantizationParameters+Internal.h /usr/include/tensorflow/lite/objc/sources/TFLTensor+Internal.h /usr/include/tensorflow/lite/op_resolver.h /usr/include/tensorflow/lite/optional_debug_tools.h /usr/include/tensorflow/lite/portable_type_to_tflitetype.h /usr/include/tensorflow/lite/profiling /usr/include/tensorflow/lite/profiling/atrace_profiler.h /usr/include/tensorflow/lite/profiling/buffered_profiler.h /usr/include/tensorflow/lite/profiling/memory_info.h /usr/include/tensorflow/lite/profiling/noop_profiler.h /usr/include/tensorflow/lite/profiling/platform_profiler.h /usr/include/tensorflow/lite/profiling/profile_buffer.h /usr/include/tensorflow/lite/profiling/profile_summarizer.h /usr/include/tensorflow/lite/profiling/profile_summary_formatter.h /usr/include/tensorflow/lite/profiling/profiler.h /usr/include/tensorflow/lite/profiling/signpost_profiler.h /usr/include/tensorflow/lite/profiling/time.h /usr/include/tensorflow/lite/python /usr/include/tensorflow/lite/python/analyzer_wrapper /usr/include/tensorflow/lite/python/analyzer_wrapper/model_analyzer.h /usr/include/tensorflow/lite/python/interpreter_wrapper /usr/include/tensorflow/lite/python/interpreter_wrapper/interpreter_wrapper.h /usr/include/tensorflow/lite/python/interpreter_wrapper/numpy.h /usr/include/tensorflow/lite/python/interpreter_wrapper/python_error_reporter.h /usr/include/tensorflow/lite/python/interpreter_wrapper/python_utils.h /usr/include/tensorflow/lite/python/metrics_wrapper /usr/include/tensorflow/lite/python/metrics_wrapper/metrics_wrapper.h /usr/include/tensorflow/lite/python/optimize /usr/include/tensorflow/lite/python/optimize/calibration_wrapper.h /usr/include/tensorflow/lite/python/testdata /usr/include/tensorflow/lite/python/testdata/test_registerer.h /usr/include/tensorflow/lite/schema /usr/include/tensorflow/lite/schema/builtin_ops_header /usr/include/tensorflow/lite/schema/builtin_ops_header/generator.h /usr/include/tensorflow/lite/schema/builtin_ops_list /usr/include/tensorflow/lite/schema/builtin_ops_list/generator.h /usr/include/tensorflow/lite/schema/schema.fbs /usr/include/tensorflow/lite/schema/schema_conversion_utils.h /usr/include/tensorflow/lite/schema/schema_generated.h /usr/include/tensorflow/lite/schema/schema_utils.h /usr/include/tensorflow/lite/shared_library.h /usr/include/tensorflow/lite/simple_memory_arena.h /usr/include/tensorflow/lite/stateful_error_reporter.h /usr/include/tensorflow/lite/stderr_reporter.h /usr/include/tensorflow/lite/string_type.h /usr/include/tensorflow/lite/string_util.h /usr/include/tensorflow/lite/swift /usr/include/tensorflow/lite/swift/docsgen /usr/include/tensorflow/lite/swift/docsgen/TensorFlowLiteSwift /usr/include/tensorflow/lite/swift/docsgen/TensorFlowLiteSwift/TensorFlowLiteSwift /usr/include/tensorflow/lite/swift/docsgen/TensorFlowLiteSwift/TensorFlowLiteSwift/TensorFlowLiteSwift.h /usr/include/tensorflow/lite/testing /usr/include/tensorflow/lite/testing/generate_testspec.h /usr/include/tensorflow/lite/testing/init_tensorflow.h /usr/include/tensorflow/lite/testing/join.h /usr/include/tensorflow/lite/testing/kernel_test /usr/include/tensorflow/lite/testing/kernel_test/diff_analyzer.h /usr/include/tensorflow/lite/testing/kernel_test/input_generator.h /usr/include/tensorflow/lite/testing/kernel_test/util.h /usr/include/tensorflow/lite/testing/message.h /usr/include/tensorflow/lite/testing/parse_testdata.h /usr/include/tensorflow/lite/testing/split.h /usr/include/tensorflow/lite/testing/string_util.h /usr/include/tensorflow/lite/testing/test_runner.h /usr/include/tensorflow/lite/testing/tf_driver.h /usr/include/tensorflow/lite/testing/tflite_diff_flags.h /usr/include/tensorflow/lite/testing/tflite_diff_util.h /usr/include/tensorflow/lite/testing/tflite_driver.h /usr/include/tensorflow/lite/testing/tokenize.h /usr/include/tensorflow/lite/testing/util.h /usr/include/tensorflow/lite/tflite_with_xnnpack_optional.h /usr/include/tensorflow/lite/toco /usr/include/tensorflow/lite/toco/allocate_transient_arrays.h /usr/include/tensorflow/lite/toco/args.h /usr/include/tensorflow/lite/toco/dump_graphviz.h /usr/include/tensorflow/lite/toco/export_tensorflow.h /usr/include/tensorflow/lite/toco/format_port.h /usr/include/tensorflow/lite/toco/graph_transformations /usr/include/tensorflow/lite/toco/graph_transformations/graph_transformations.h /usr/include/tensorflow/lite/toco/graph_transformations/identify_util.h /usr/include/tensorflow/lite/toco/graph_transformations/lstm_utils.h /usr/include/tensorflow/lite/toco/graph_transformations/quantization_util.h /usr/include/tensorflow/lite/toco/graph_transformations/remove_trivial_passthrough.h /usr/include/tensorflow/lite/toco/import_tensorflow.h /usr/include/tensorflow/lite/toco/logging /usr/include/tensorflow/lite/toco/logging/conversion_log_util.h /usr/include/tensorflow/lite/toco/model.h /usr/include/tensorflow/lite/toco/model_cmdline_flags.h /usr/include/tensorflow/lite/toco/python /usr/include/tensorflow/lite/toco/python/toco_python_api.h /usr/include/tensorflow/lite/toco/runtime /usr/include/tensorflow/lite/toco/runtime/common.h /usr/include/tensorflow/lite/toco/runtime/types.h /usr/include/tensorflow/lite/toco/tensorflow_graph_matching /usr/include/tensorflow/lite/toco/tensorflow_graph_matching/cluster.h /usr/include/tensorflow/lite/toco/tensorflow_graph_matching/cluster_utils.h /usr/include/tensorflow/lite/toco/tensorflow_graph_matching/resolve_cluster.h /usr/include/tensorflow/lite/toco/tensorflow_graph_matching/resolve_svdf.h /usr/include/tensorflow/lite/toco/tensorflow_util.h /usr/include/tensorflow/lite/toco/tflite /usr/include/tensorflow/lite/toco/tflite/builtin_operator.h /usr/include/tensorflow/lite/toco/tflite/custom_operator.h /usr/include/tensorflow/lite/toco/tflite/export.h /usr/include/tensorflow/lite/toco/tflite/import.h /usr/include/tensorflow/lite/toco/tflite/operator.h /usr/include/tensorflow/lite/toco/tflite/simple_operator.h /usr/include/tensorflow/lite/toco/tflite/types.h /usr/include/tensorflow/lite/toco/toco_cmdline_flags.h /usr/include/tensorflow/lite/toco/toco_convert.h /usr/include/tensorflow/lite/toco/toco_graphviz_dump_options.h /usr/include/tensorflow/lite/toco/toco_port.h /usr/include/tensorflow/lite/toco/toco_tooling.h /usr/include/tensorflow/lite/toco/toco_types.h /usr/include/tensorflow/lite/toco/tooling_util.h /usr/include/tensorflow/lite/tools /usr/include/tensorflow/lite/tools/benchmark /usr/include/tensorflow/lite/tools/benchmark/benchmark_model.h /usr/include/tensorflow/lite/tools/benchmark/benchmark_params.h /usr/include/tensorflow/lite/tools/benchmark/benchmark_performance_options.h /usr/include/tensorflow/lite/tools/benchmark/benchmark_tflite_model.h /usr/include/tensorflow/lite/tools/benchmark/benchmark_utils.h /usr/include/tensorflow/lite/tools/benchmark/experimental /usr/include/tensorflow/lite/tools/benchmark/experimental/c /usr/include/tensorflow/lite/tools/benchmark/experimental/c/benchmark_c_api.h /usr/include/tensorflow/lite/tools/benchmark/ios /usr/include/tensorflow/lite/tools/benchmark/ios/TFLiteBenchmark /usr/include/tensorflow/lite/tools/benchmark/ios/TFLiteBenchmark/TFLiteBenchmark /usr/include/tensorflow/lite/tools/benchmark/ios/TFLiteBenchmark/TFLiteBenchmark/AppDelegate.h /usr/include/tensorflow/lite/tools/benchmark/ios/TFLiteBenchmark/TFLiteBenchmark/BenchmarkViewController.h /usr/include/tensorflow/lite/tools/benchmark/profiling_listener.h /usr/include/tensorflow/lite/tools/command_line_flags.h /usr/include/tensorflow/lite/tools/delegates /usr/include/tensorflow/lite/tools/delegates/delegate_provider.h /usr/include/tensorflow/lite/tools/evaluation /usr/include/tensorflow/lite/tools/evaluation/evaluation_delegate_provider.h /usr/include/tensorflow/lite/tools/evaluation/evaluation_stage.h /usr/include/tensorflow/lite/tools/evaluation/stages /usr/include/tensorflow/lite/tools/evaluation/stages/image_classification_stage.h /usr/include/tensorflow/lite/tools/evaluation/stages/image_preprocessing_stage.h /usr/include/tensorflow/lite/tools/evaluation/stages/inference_profiler_stage.h /usr/include/tensorflow/lite/tools/evaluation/stages/object_detection_average_precision_stage.h /usr/include/tensorflow/lite/tools/evaluation/stages/object_detection_stage.h /usr/include/tensorflow/lite/tools/evaluation/stages/tflite_inference_stage.h /usr/include/tensorflow/lite/tools/evaluation/stages/topk_accuracy_eval_stage.h /usr/include/tensorflow/lite/tools/evaluation/stages/utils /usr/include/tensorflow/lite/tools/evaluation/stages/utils/image_metrics.h /usr/include/tensorflow/lite/tools/evaluation/tasks /usr/include/tensorflow/lite/tools/evaluation/tasks/task_executor.h /usr/include/tensorflow/lite/tools/evaluation/utils.h /usr/include/tensorflow/lite/tools/gen_op_registration.h /usr/include/tensorflow/lite/tools/list_flex_ops.h /usr/include/tensorflow/lite/tools/logging.h /usr/include/tensorflow/lite/tools/make /usr/include/tensorflow/lite/tools/make/downloads /usr/include/tensorflow/lite/tools/make/downloads/absl /usr/include/tensorflow/lite/tools/make/downloads/absl/absl /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/algorithm /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/algorithm/algorithm.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/algorithm/container.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/attributes.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/call_once.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/casts.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/config.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/const_init.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/dynamic_annotations.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/atomic_hook.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/atomic_hook_test_helper.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/cycleclock.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/direct_mmap.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/dynamic_annotations.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/endian.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/errno_saver.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/exception_safety_testing.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/exception_testing.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/exponential_biased.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/fast_type_id.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/hide_ptr.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/identity.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/inline_variable.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/inline_variable_testing.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/invoke.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/low_level_alloc.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/low_level_scheduling.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/per_thread_tls.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/periodic_sampler.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/pretty_function.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/raw_logging.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/scheduling_mode.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/scoped_set_env.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/spinlock.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/spinlock_wait.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/strerror.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/sysinfo.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/thread_annotations.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/thread_identity.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/throw_delegate.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/tsan_mutex_interface.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/unaligned_access.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/internal/unscaledcycleclock.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/log_severity.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/macros.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/optimization.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/options.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/policy_checks.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/port.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/base/thread_annotations.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/cleanup /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/cleanup/cleanup.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/cleanup/internal /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/cleanup/internal/cleanup.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/btree_map.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/btree_set.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/btree_test.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/fixed_array.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/flat_hash_map.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/flat_hash_set.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/inlined_vector.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/btree.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/btree_container.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/common.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/compressed_tuple.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/container_memory.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/counting_allocator.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/hash_function_defaults.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/hash_generator_testing.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/hash_policy_testing.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/hash_policy_traits.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/hashtable_debug.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/hashtable_debug_hooks.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/hashtablez_sampler.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/have_sse.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/inlined_vector.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/layout.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/node_hash_policy.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/raw_hash_map.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/raw_hash_set.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/test_instance_tracker.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/tracked.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/unordered_map_constructor_test.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/unordered_map_lookup_test.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/unordered_map_members_test.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/unordered_map_modifiers_test.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/unordered_set_constructor_test.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/unordered_set_lookup_test.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/unordered_set_members_test.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/internal/unordered_set_modifiers_test.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/node_hash_map.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/container/node_hash_set.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/debugging /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/debugging/failure_signal_handler.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/debugging/internal /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/debugging/internal/address_is_readable.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/debugging/internal/demangle.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/debugging/internal/elf_mem_image.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/debugging/internal/examine_stack.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/debugging/internal/stack_consumption.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/debugging/internal/stacktrace_config.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/debugging/internal/symbolize.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/debugging/internal/vdso_support.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/debugging/leak_check.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/debugging/stacktrace.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/debugging/symbolize.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/commandlineflag.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/config.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/declare.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/flag.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/internal /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/internal/commandlineflag.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/internal/flag.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/internal/parse.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/internal/path_util.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/internal/private_handle_accessor.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/internal/program_name.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/internal/registry.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/internal/sequence_lock.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/internal/usage.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/marshalling.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/parse.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/reflection.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/usage.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/flags/usage_config.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/functional /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/functional/bind_front.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/functional/function_ref.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/functional/internal /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/functional/internal/front_binder.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/functional/internal/function_ref.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/hash /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/hash/hash.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/hash/hash_testing.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/hash/internal /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/hash/internal/city.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/hash/internal/hash.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/hash/internal/spy_hash_state.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/hash/internal/wyhash.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/memory /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/memory/memory.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/meta /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/meta/type_traits.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/numeric /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/numeric/bits.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/numeric/int128.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/numeric/internal /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/numeric/internal/bits.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/numeric/internal/representation.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/bernoulli_distribution.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/beta_distribution.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/bit_gen_ref.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/discrete_distribution.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/distributions.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/exponential_distribution.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/gaussian_distribution.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/chi_square.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/distribution_caller.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/distribution_test_util.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/explicit_seed_seq.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/fast_uniform_bits.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/fastmath.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/generate_real.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/iostream_state_saver.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/mock_helpers.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/mock_overload_set.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/nanobenchmark.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/nonsecure_base.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/pcg_engine.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/platform.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/pool_urbg.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/randen.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/randen_detect.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/randen_engine.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/randen_hwaes.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/randen_slow.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/randen_traits.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/salted_seed_seq.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/seed_material.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/sequence_urbg.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/traits.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/uniform_helper.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/internal/wide_multiply.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/log_uniform_int_distribution.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/mock_distributions.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/mocking_bit_gen.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/poisson_distribution.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/random.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/seed_gen_exception.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/seed_sequences.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/uniform_int_distribution.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/uniform_real_distribution.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/random/zipf_distribution.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/status /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/status/internal /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/status/internal/status_internal.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/status/internal/statusor_internal.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/status/status.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/status/status_payload_printer.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/status/statusor.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/ascii.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/charconv.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/cord.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/cord_test_helpers.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/escaping.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/char_map.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/charconv_bigint.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/charconv_parse.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/cord_internal.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/cord_rep_flat.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/cord_rep_ring.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/cord_rep_ring_reader.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/escaping.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/escaping_test_common.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/memutil.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/numbers_test_common.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/ostringstream.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/pow10_helper.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/resize_uninitialized.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/stl_type_traits.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/str_format /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/str_format/arg.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/str_format/bind.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/str_format/checker.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/str_format/extension.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/str_format/float_conversion.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/str_format/output.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/str_format/parser.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/str_join_internal.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/str_split_internal.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/string_constant.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/internal/utf8.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/match.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/numbers.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/str_cat.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/str_format.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/str_join.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/str_replace.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/str_split.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/string_view.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/strip.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/strings/substitute.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/synchronization /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/synchronization/barrier.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/synchronization/blocking_counter.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/synchronization/internal /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/synchronization/internal/create_thread_identity.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/synchronization/internal/futex.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/synchronization/internal/graphcycles.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/synchronization/internal/kernel_timeout.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/synchronization/internal/per_thread_sem.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/synchronization/internal/thread_pool.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/synchronization/internal/waiter.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/synchronization/mutex.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/synchronization/notification.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/civil_time.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/clock.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/include /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/include/cctz /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/include/cctz/civil_time.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/include/cctz/civil_time_detail.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/include/cctz/time_zone.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/include/cctz/zone_info_source.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/src /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/src/time_zone_fixed.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/src/time_zone_if.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/src/time_zone_impl.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/src/time_zone_info.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/src/time_zone_libc.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/src/time_zone_posix.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/cctz/src/tzfile.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/internal/test_util.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/time/time.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/any.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/bad_any_cast.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/bad_optional_access.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/bad_variant_access.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/compare.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/internal /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/internal/conformance_aliases.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/internal/conformance_archetype.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/internal/conformance_profile.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/internal/conformance_testing.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/internal/conformance_testing_helpers.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/internal/optional.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/internal/parentheses.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/internal/span.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/internal/transform_args.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/internal/variant.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/optional.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/span.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/types/variant.h /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/utility /usr/include/tensorflow/lite/tools/make/downloads/absl/absl/utility/utility.h /usr/include/tensorflow/lite/tools/make/downloads/absl/ci /usr/include/tensorflow/lite/tools/make/downloads/absl/ci/absl_alternate_options.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/deps /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/deps/clog /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/deps/clog/include /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/deps/clog/include/clog.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/include /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/include/cpuinfo-mock.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/include/cpuinfo.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/arm /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/arm/android /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/arm/android/api.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/arm/api.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/arm/linux /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/arm/linux/api.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/arm/linux/cp.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/arm/midr.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/cpuinfo /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/cpuinfo/common.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/cpuinfo/internal-api.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/cpuinfo/log.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/cpuinfo/utils.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/linux /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/linux/api.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/mach /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/mach/api.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/x86 /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/x86/api.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/x86/cpuid.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/x86/linux /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/x86/linux/api.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/x86/windows /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/src/x86/windows/api.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/alcatel-revvl.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/alldocube-iwork8.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/atm7029b-tablet.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/blu-r1-hd.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-a3-2016-eu.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-a8-2016-duos.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-a8-2018.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-c9-pro.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-grand-prime-value-edition.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-j1-2016.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-j5.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-j7-prime.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-j7-tmobile.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-j7-uae.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-s3-us.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-s4-us.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-s5-global.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-s5-us.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-s6.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-s7-global.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-s7-us.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-s8-global.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-s8-us.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-s9-global.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-s9-us.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-tab-3-7.0.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-tab-3-lite.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/galaxy-win-duos.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/huawei-ascend-p7.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/huawei-honor-6.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/huawei-mate-10.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/huawei-mate-20.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/huawei-mate-8.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/huawei-mate-9.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/huawei-p20-pro.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/huawei-p8-lite.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/huawei-p9-lite.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/iconia-one-10.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/leagoo-t5c.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/lenovo-a6600-plus.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/lenovo-vibe-x2.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/lg-k10-eu.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/lg-optimus-g-pro.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/meizu-pro-6.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/meizu-pro-6s.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/meizu-pro-7-plus.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/memo-pad-7.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/moto-e-gen1.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/moto-g-gen1.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/moto-g-gen2.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/moto-g-gen3.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/moto-g-gen4.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/moto-g-gen5.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/nexus-s.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/nexus10.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/nexus4.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/nexus5x.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/nexus6.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/nexus6p.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/nexus9.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/oneplus-3t.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/oneplus-5.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/oneplus-5t.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/oppo-a37.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/oppo-r15.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/oppo-r9.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/padcod-10.1.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/pixel-2-xl.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/pixel-c.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/pixel-xl.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/pixel.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/scaleway.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/xiaomi-mi-5c.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/xiaomi-redmi-2a.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/xiaomi-redmi-note-3.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/xiaomi-redmi-note-4.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/xperia-c4-dual.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/xperia-sl.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/zenfone-2.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/zenfone-2e.h /usr/include/tensorflow/lite/tools/make/downloads/cpuinfo/test/mock/zenfone-c.h /usr/include/tensorflow/lite/tools/make/downloads/eigen /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Cholesky /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Cholesky/LDLT.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Cholesky/LLT.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/CholmodSupport /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/CholmodSupport/CholmodSupport.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/ArithmeticSequence.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Array.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/ArrayBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/ArrayWrapper.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Assign.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/AssignEvaluator.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Assign_MKL.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/BandMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Block.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/BooleanRedux.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/CommaInitializer.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/ConditionEstimator.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/CoreEvaluators.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/CoreIterators.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/CwiseBinaryOp.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/CwiseNullaryOp.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/CwiseTernaryOp.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/CwiseUnaryOp.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/CwiseUnaryView.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/DenseBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/DenseCoeffsBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/DenseStorage.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Diagonal.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/DiagonalMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/DiagonalProduct.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Dot.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/EigenBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/ForceAlignedAccess.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Fuzzy.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/GeneralProduct.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/GenericPacketMath.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/GlobalFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/IO.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/IndexedView.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Inverse.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Map.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/MapBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/MathFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/MathFunctionsImpl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Matrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/MatrixBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/NestByValue.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/NoAlias.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/NumTraits.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/PartialReduxEvaluator.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/PermutationMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/PlainObjectBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Product.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/ProductEvaluators.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Random.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Redux.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Ref.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Replicate.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Reshaped.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/ReturnByValue.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Reverse.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Select.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/SelfAdjointView.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Solve.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/SolveTriangular.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/SolverBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/StableNorm.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/StlIterators.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Stride.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Swap.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Transpose.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Transpositions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/TriangularMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/VectorBlock.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/VectorwiseOp.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Visitor.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AVX /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AVX/Complex.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AVX/PacketMath.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AVX512 /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AVX512/Complex.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AVX512/TypeCasting.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AltiVec /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AltiVec/Complex.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AltiVec/MatrixProduct.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/CUDA /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/CUDA/Complex.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/Default /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/Default/BFloat16.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/Default/ConjHelper.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/Default/Half.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/Default/Settings.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/Default/TypeCasting.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/GPU /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/GPU/MathFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/GPU/PacketMath.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/GPU/TypeCasting.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/HIP /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/HIP/hcc /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/HIP/hcc/math_constants.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/MSA /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/MSA/Complex.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/MSA/MathFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/MSA/PacketMath.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/NEON /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/NEON/Complex.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/NEON/PacketMath.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/NEON/TypeCasting.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SSE /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SSE/Complex.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SSE/PacketMath.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SVE /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SVE/MathFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SVE/PacketMath.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SVE/TypeCasting.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SYCL /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SYCL/InteropHeaders.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SYCL/MathFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SYCL/PacketMath.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/SYCL/TypeCasting.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/ZVector /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/ZVector/Complex.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/functors /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/functors/AssignmentFunctors.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/functors/BinaryFunctors.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/functors/NullaryFunctors.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/functors/StlFunctors.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/functors/TernaryFunctors.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/functors/UnaryFunctors.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/GeneralMatrixVector.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/Parallelizer.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/SelfadjointProduct.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/TriangularMatrixVector.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/products/TriangularSolverVector.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/BlasUtil.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/ConfigureVectorization.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/Constants.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/DisableStupidWarnings.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/ForwardDeclarations.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/IndexedViewHelper.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/IntegralConstant.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/MKL_support.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/Macros.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/Memory.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/Meta.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/NonMPL2.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/ReshapedHelper.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/StaticAssert.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/SymbolicIndex.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/XprHelper.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues/ComplexSchur.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues/EigenSolver.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues/RealQZ.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues/RealSchur.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/AlignedBox.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/AngleAxis.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/EulerAngles.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/Homogeneous.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/Hyperplane.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/OrthoMethods.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/ParametrizedLine.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/Quaternion.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/Rotation2D.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/RotationBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/Scaling.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/Transform.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/Translation.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/Umeyama.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/arch /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Geometry/arch/Geometry_SIMD.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Householder /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Householder/BlockHouseholder.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Householder/Householder.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Householder/HouseholderSequence.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/IterativeLinearSolvers /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Jacobi /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Jacobi/Jacobi.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/KLUSupport /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/KLUSupport/KLUSupport.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/LU /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/LU/Determinant.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/LU/FullPivLU.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/LU/InverseImpl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/LU/PartialPivLU.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/LU/arch /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/LU/arch/InverseSize4.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/MetisSupport /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/MetisSupport/MetisSupport.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/OrderingMethods /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/OrderingMethods/Amd.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/OrderingMethods/Ordering.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/PaStiXSupport /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/PardisoSupport /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/PardisoSupport/PardisoSupport.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/QR /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/QR/ColPivHouseholderQR.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/QR/FullPivHouseholderQR.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/QR/HouseholderQR.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SPQRSupport /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SVD /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SVD/BDCSVD.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SVD/JacobiSVD.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SVD/SVDBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SVD/UpperBidiagonalization.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCholesky /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/AmbiVector.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/CompressedStorage.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/MappedSparseMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseAssign.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseBlock.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseColEtree.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseCompressedBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseDenseProduct.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseDot.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseFuzzy.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseMap.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseMatrixBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparsePermutation.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseProduct.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseRedux.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseRef.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseSolverBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseTranspose.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseTriangularView.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseUtil.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseVector.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/SparseView.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseCore/TriangularSolver.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLUImpl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_Memory.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_Structs.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_Utils.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseQR /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SparseQR/SparseQR.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/StlSupport /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/StlSupport/StdDeque.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/StlSupport/StdList.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/StlSupport/StdVector.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/StlSupport/details.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SuperLUSupport /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/UmfPackSupport /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/misc /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/misc/Image.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/misc/Kernel.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/misc/RealSvd2x2.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/misc/blas.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/misc/lapack.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/misc/lapacke.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/misc/lapacke_mangling.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/plugins /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/plugins/BlockMethods.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/plugins/IndexedViewMethods.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/plugins/ReshapedMethods.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/BenchSparseUtil.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/BenchTimer.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/BenchUtil.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/basicbenchmark.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/btl /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/btl/generic_bench /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/btl/generic_bench/utils /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/btl/generic_bench/utils/utilities.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/btl/libs /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/btl/libs/BLAS /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/btl/libs/BLAS/blas.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/btl/libs/BLAS/c_interface_base.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/perf_monitoring /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/perf_monitoring/gemm_common.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/perf_monitoring/gemv_common.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/spbench /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/spbench/spbenchsolver.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/spbench/spbenchstyle.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/tensors /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/tensors/benchmark.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/bench/tensors/tensor_benchmarks.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/BandTriangularSolver.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/GeneralRank1Update.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/PackedSelfadjointProduct.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/PackedTriangularMatrixVector.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/PackedTriangularSolverVector.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/Rank2Update.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/common.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/f2c /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/f2c/datatypes.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/level1_cplx_impl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/level1_impl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/level1_real_impl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/level2_cplx_impl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/level2_impl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/level2_real_impl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/blas/level3_impl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/demos /usr/include/tensorflow/lite/tools/make/downloads/eigen/demos/mandelbrot /usr/include/tensorflow/lite/tools/make/downloads/eigen/demos/mandelbrot/mandelbrot.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/demos/mix_eigen_and_c /usr/include/tensorflow/lite/tools/make/downloads/eigen/demos/mix_eigen_and_c/binary_library.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/demos/opengl /usr/include/tensorflow/lite/tools/make/downloads/eigen/demos/opengl/camera.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/demos/opengl/gpuhelper.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/demos/opengl/icosphere.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/demos/opengl/quaternion_demo.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/demos/opengl/trackball.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/lapack /usr/include/tensorflow/lite/tools/make/downloads/eigen/lapack/lapack_common.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/AnnoyingScalar.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/MovableScalar.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/SafeScalar.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/bug1213.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/evaluator_common.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/gpu_common.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/main.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/packetmath_test_shared.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/product.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/random_without_cast_overflow.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/solverbase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/sparse.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/sparse_solver.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/split_test_helper.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/svd_common.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/test/svd_fill.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11 /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/Tensor.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/util /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/ThreadPool /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/util /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/util/CXX11Meta.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/util/EmulateArray.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/AutoDiff /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/BVH /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/BVH/BVAlgorithms.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/BVH/KdBVH.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Eigenvalues /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/EulerAngles /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/EulerAngles/EulerAngles.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/EulerAngles/EulerSystem.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/FFT /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/FFT/ei_fftw_impl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/FFT/ei_kissfft_impl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/IterativeSolvers /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/IterativeSolvers/DGMRES.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/IterativeSolvers/GMRES.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/IterativeSolvers/IDRS.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/IterativeSolvers/IterationController.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/IterativeSolvers/MINRES.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/IterativeSolvers/Scaling.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/KroneckerProduct /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/LevenbergMarquardt /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/MatrixFunctions /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/MatrixFunctions/StemFunction.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/MoreVectorization /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/MoreVectorization/MathFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/NonLinearOptimization /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/NonLinearOptimization/chkder.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/NonLinearOptimization/covar.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/NonLinearOptimization/dogleg.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/NonLinearOptimization/lmpar.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/NonLinearOptimization/r1updt.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/NumericalDiff /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Polynomials /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Polynomials/Companion.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Polynomials/PolynomialSolver.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Polynomials/PolynomialUtils.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Skyline /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Skyline/SkylineMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Skyline/SkylineProduct.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Skyline/SkylineStorage.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Skyline/SkylineUtil.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SparseExtra /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SparseExtra/MarketIO.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SparseExtra/RandomSetter.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/arch /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/arch/AVX /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/arch/AVX512 /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/arch/GPU /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/arch/NEON /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Splines /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Splines/Spline.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Splines/SplineFitting.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/Eigen/src/Splines/SplineFwd.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/test /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/test/matrix_functions.h /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/test/mpreal /usr/include/tensorflow/lite/tools/make/downloads/eigen/unsupported/test/mpreal/mpreal.h /usr/include/tensorflow/lite/tools/make/downloads/farmhash /usr/include/tensorflow/lite/tools/make/downloads/farmhash/dev /usr/include/tensorflow/lite/tools/make/downloads/farmhash/dev/farmhash.h /usr/include/tensorflow/lite/tools/make/downloads/farmhash/src /usr/include/tensorflow/lite/tools/make/downloads/farmhash/src/farmhash.h /usr/include/tensorflow/lite/tools/make/downloads/fft2d /usr/include/tensorflow/lite/tools/make/downloads/fft2d/alloc.h /usr/include/tensorflow/lite/tools/make/downloads/fft2d/sample2d /usr/include/tensorflow/lite/tools/make/downloads/fft2d/sample2d/alloc.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/gmock-actions.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/gmock-cardinalities.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/gmock-generated-actions.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/gmock-generated-function-mockers.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/gmock-generated-matchers.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/gmock-generated-nice-strict.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/gmock-matchers.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/gmock-more-actions.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/gmock-more-matchers.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/gmock-spec-builders.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/gmock.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/internal /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/internal/custom /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/internal/custom/gmock-matchers.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/internal/custom/gmock-port.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/internal/gmock-generated-internal-utils.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/internal/gmock-internal-utils.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/include/gmock/internal/gmock-port.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/test /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googlemock/test/gmock_link_test.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/gtest-death-test.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/gtest-message.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/gtest-param-test.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/gtest-printers.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/gtest-spi.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/gtest-test-part.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/gtest-typed-test.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/gtest.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/gtest_pred_impl.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/gtest_prod.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/custom /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/custom/gtest-port.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/custom/gtest-printers.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/custom/gtest.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/gtest-death-test-internal.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/gtest-filepath.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/gtest-internal.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/gtest-linked_ptr.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/gtest-param-util-generated.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/gtest-param-util.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/gtest-port-arch.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/gtest-port.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/gtest-string.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/gtest-tuple.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/include/gtest/internal/gtest-type-util.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/samples /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/samples/prime_tables.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/samples/sample1.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/samples/sample2.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/samples/sample3-inl.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/samples/sample4.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/src /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/src/gtest-internal-inl.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/test /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/test/gtest-param-test_test.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/test/gtest-typed-test_test.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/test/production.h /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/xcode /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/xcode/Samples /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/xcode/Samples/FrameworkSample /usr/include/tensorflow/lite/tools/make/downloads/fgoogletest/googletest/xcode/Samples/FrameworkSample/widget.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/eight_bit_int_gemm /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/eight_bit_int_gemm/eight_bit_int_gemm.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/fixedpoint /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/fixedpoint/fixedpoint.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/fixedpoint/fixedpoint_avx.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/fixedpoint/fixedpoint_msa.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/fixedpoint/fixedpoint_neon.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/fixedpoint/fixedpoint_sse.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/allocator.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/block_params.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/common.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/compute.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/detect_platform.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/dispatch_gemm_shape.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/kernel.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/kernel_avx.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/kernel_default.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/kernel_msa.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/kernel_neon.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/kernel_reference.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/kernel_sse.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/multi_thread_gemm.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/output.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/output_avx.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/output_msa.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/output_neon.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/output_sse.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/pack.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/pack_avx.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/pack_msa.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/pack_neon.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/pack_sse.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/platform.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/simd_wrappers.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/simd_wrappers_common_neon_sse.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/simd_wrappers_msa.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/simd_wrappers_neon.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/simd_wrappers_sse.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/single_thread_gemm.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/internal/unpack.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/base.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/legacy_multi_thread_common.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/legacy_multi_thread_gemm.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/legacy_multi_thread_gemv.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/legacy_operations_common.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/legacy_single_thread_gemm.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/multi_thread_common.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/multi_thread_gemm.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/multi_thread_transform.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/quantized_mul_kernels.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/quantized_mul_kernels_arm_32.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/quantized_mul_kernels_arm_64.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/single_thread_gemm.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/single_thread_transform.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/streams.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/streams_arm_32.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/streams_arm_64.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/transform_kernels.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/transform_kernels_arm_32.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/meta/transform_kernels_arm_64.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/profiling /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/profiling/instrumentation.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/profiling/profiler.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/profiling/pthread_everywhere.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/public /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/public/bit_depth.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/public/gemmlowp.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/public/map.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/public/output_stages.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/test /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/test/ios /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/test/ios/gemmlowp_test /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/test/ios/gemmlowp_test/AppDelegate.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/test/ios/gemmlowp_test/ViewController.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/test/test.h /usr/include/tensorflow/lite/tools/make/downloads/gemmlowp/test/test_data.h /usr/include/tensorflow/lite/tools/make/downloads/neon_2_sse /usr/include/tensorflow/lite/tools/make/downloads/neon_2_sse/NEON_2_SSE.h /usr/include/tensorflow/lite/tools/make/downloads/ruy /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/allocator.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/apply_multiplier.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/asm_helpers.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/block_map.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/blocking_counter.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/check_macros.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/context.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/context_get_ctx.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/cpu_cache_params.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/cpuinfo.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/create_trmul_params.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/ctx.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/ctx_impl.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/denormal.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/frontend.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/gtest_wrapper.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/have_built_path_for.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/kernel.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/kernel_arm.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/kernel_common.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/kernel_x86.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/mat.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/matrix.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/mul_params.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/opt_set.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/pack.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/pack_arm.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/pack_common.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/pack_x86.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/path.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/performance_advisory.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/platform.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/pmu.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/prepacked_cache.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/prepare_packed_matrices.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/profiler /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/profiler/instrumentation.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/profiler/profiler.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/profiler/test_instrumented_library.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/profiler/treeview.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/reference_mul.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/ruy.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/side_pair.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/size_util.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/system_aligned_alloc.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/test.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/thread_pool.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/time.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/trace.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/trmul.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/trmul_params.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/tune.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/validate.h /usr/include/tensorflow/lite/tools/make/downloads/ruy/ruy/wait.h /usr/include/tensorflow/lite/tools/optimize /usr/include/tensorflow/lite/tools/optimize/calibration /usr/include/tensorflow/lite/tools/optimize/calibration/builtin_logging_ops /usr/include/tensorflow/lite/tools/optimize/calibration/builtin_logging_ops/lstm.h /usr/include/tensorflow/lite/tools/optimize/calibration/calibration_common.h /usr/include/tensorflow/lite/tools/optimize/calibration/calibration_logger.h /usr/include/tensorflow/lite/tools/optimize/calibration/calibration_reader.h /usr/include/tensorflow/lite/tools/optimize/calibration/calibrator.h /usr/include/tensorflow/lite/tools/optimize/calibration/custom_logging_ops /usr/include/tensorflow/lite/tools/optimize/calibration/custom_logging_ops/lstm.h /usr/include/tensorflow/lite/tools/optimize/calibration/logging_op.h /usr/include/tensorflow/lite/tools/optimize/calibration/logging_op_resolver.h /usr/include/tensorflow/lite/tools/optimize/model_utils.h /usr/include/tensorflow/lite/tools/optimize/modify_model_interface.h /usr/include/tensorflow/lite/tools/optimize/operator_property.h /usr/include/tensorflow/lite/tools/optimize/quantization_utils.h /usr/include/tensorflow/lite/tools/optimize/quantization_wrapper.h /usr/include/tensorflow/lite/tools/optimize/quantization_wrapper_utils.h /usr/include/tensorflow/lite/tools/optimize/quantize_model.h /usr/include/tensorflow/lite/tools/optimize/quantize_weights.h /usr/include/tensorflow/lite/tools/optimize/reduced_precision_support.h /usr/include/tensorflow/lite/tools/optimize/sparsity /usr/include/tensorflow/lite/tools/optimize/sparsity/format_converter.h /usr/include/tensorflow/lite/tools/optimize/test_util.h /usr/include/tensorflow/lite/tools/serialization /usr/include/tensorflow/lite/tools/serialization/enum_mapping.h /usr/include/tensorflow/lite/tools/serialization/writer_lib.h /usr/include/tensorflow/lite/tools/signature /usr/include/tensorflow/lite/tools/signature/signature_def_util.h /usr/include/tensorflow/lite/tools/strip_buffers /usr/include/tensorflow/lite/tools/strip_buffers/stripping_lib.h /usr/include/tensorflow/lite/tools/tool_params.h /usr/include/tensorflow/lite/tools/verifier.h /usr/include/tensorflow/lite/tools/versioning /usr/include/tensorflow/lite/tools/versioning/gpu_compatibility.h /usr/include/tensorflow/lite/tools/versioning/op_signature.h /usr/include/tensorflow/lite/tools/versioning/op_version.h /usr/include/tensorflow/lite/tools/versioning/runtime_version.h /usr/include/tensorflow/lite/type_to_tflitetype.h /usr/include/tensorflow/lite/util.h /usr/include/tensorflow/lite/version.h /usr/lib64/libtensorflow-lite.a /usr/lib64/pkgconfig/tensorflow-lite.pc /usr/lib64/pkgconfig/tensorflow2-lite.pc
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Jul 9 16:14:43 2024