Skip to content

v0.1.1

Compare
Choose a tag to compare
@advaitjain advaitjain released this 14 May 16:38
· 196 commits to main since this release
875f2ea

Installation and Dependencies

pip install -r https://github.com/google-ai-edge/ai-edge-torch/releases/download/v0.1.1/requirements.txt
pip install ai-edge-torch==0.1.1
  • Python versions: 3.9, 3.10, 3.11
  • Operating system: Linux
  • PyTorch: 2.4.0.dev20240429
  • TensorFlow: 2.17.0.dev20240509

See this section of the README

PyTorch Converter (Beta)

Functionality

First release of a direct path from PyTorch to the TFLite runtime (blog post).

Coverage

Performance

  • Excellent CPU performance for the converted models, leveraging the TFLite XNNPACK delegate.
  • A subset of the Beta test set can be fully delegated to GPU, others are partially delegated or unsupported.
  • QNN delegate (available here) supports most models in the Beta test set with significant average acceleration relative to CPU (20X) and GPU (5X) using Qualcomm’s DSP and neural processing units.

Quantization

  • Support for dynamic quantization with PT2E.
  • Support for post-training quantization via the TFLite converter.
  • AI Edge Torch Converter APIs to use these two quantization frameworks are here.

Known Issues

  • Inference latency with quantized models is higher than unquantized models in some cases.

Generative API (Alpha)

Functionality

  • Provides PyTorch native building blocks to compose LLMs using mobile friendly abstractions for performant execution on TFLite runtime.
  • Examples to author LLMs via Edge Generative API for conversion to TFLite for Gemma, TinyLlama and Phi-2. (Examples)
  • Supports 8-bit dynamic range quantization. (here)
  • Integration with MediaPipe LLM Inference API for easy integration into Mobile Apps, and a prompt interface.

Known Issues

  • The conversion, and serialization process is unoptimized for LLMs. It requires keeping multiple copies of the weights in memory for transformations, and serialization/deserialization.
  • Runtime execution of the LLM in TFLite is missing some memory optimizations, and inefficient during memory unpacking on XNNPack.