Ryan Kuester
Ryan Kuester
Building on g++ 13.2.0, the current compiler in Debian testing, results in `-Wstringop-overread` warnings (logs below). This is reproducible with `//tests:flatbuffers_test` in today's master branch at 205285c3, and at least...
It is a goal to eventually Bazel build system might be used to build for multiple target platforms. Some work towards that goal is prototyped and documented in [rkuester/tflm-multiplatform](https://github.com/rkuester/tflm-multiplatform).
Begin using -std=c++17 and -std=c17 in Makefile builds on all platforms. Bazel builds have been using C++17 since 52c9568. BUG=see description
Add a type, tflite::StaticVector, which behaves like std::vector, but which avoids heap memory allocation. BUG=#2636
An issue to track the implementation of model compression. ### Queue The [commits along the branch rkuester/compress-next](https://github.com/tensorflow/tflite-micro/compare/main...rkuester:tflite-micro:compress-next) are queued, so to speak, for submission via PRs. ### Integration Use the...
Add tflite::hexdump() for printing raw memory to output streams. Copy the output format of Python's hexdump module. BUG=#2636
This is a draft PR for running CI tests on the full change. The commits along this branch will be individually submitted for review. See the linked issue for a...
Implement unified module for creating, reading, and modifying TFLite models with a clean API. This provides an easy, readable solution for creating models in unit tests, unified with our need...
## Summary Update the compression tooling to produce models that use DECODE operators instead of the metadata-based compression scheme. The interpreter already supports DECODE operators for decompression. The previous tooling...
This feature bug tracks the work of adding compression tools to our Python package, `tflite_micro.` The complete implementation is available in the [rkuester/package](https://github.com/tensorflow/tflite-micro/compare/main...rkuester:tflite-micro:package) branch and will be integrated via a...