Bug: 180660762

Clone this repo:
  1. 1b6b893 Upgrade ruy to c08ec529fc91722bde519628d9449258082eb847 am: 898c7d70e1 by Sadaf Ebrahimi · 2 months ago main master
  2. 00dae12 Add OWNERS file am: de0564b988 by Sadaf Ebrahimi · 3 months ago
  3. 898c7d7 Upgrade ruy to c08ec529fc91722bde519628d9449258082eb847 by Sadaf Ebrahimi · 3 months ago
  4. de0564b Add OWNERS file by Sadaf Ebrahimi · 3 months ago
  5. fc9e6cc [automerger skipped] Empty merge of Android 24Q2 Release (ab/11526283) to aosp-main-future am: fae850ec1f -s ours by Xin Li · 9 months ago android15-automotiveos-dev android15-qpr1-release android15-qpr1-s3-release android15-qpr1-s4-release android15-qpr1-s5-release android15-tests-dev android-15.0.0_r10 android-15.0.0_r11 android-15.0.0_r12 android-15.0.0_r13 android-15.0.0_r6 android-15.0.0_r7 android-15.0.0_r8 android-15.0.0_r9

The ruy matrix multiplication library

This is not an officially supported Google product.

ruy is a matrix multiplication library. Its focus is to cover the matrix multiplication needs of neural network inference engines. Its initial user has been TensorFlow Lite, where it is used by default on the ARM CPU architecture.

ruy supports both floating-point and 8bit-integer-quantized matrices.

Efficiency

ruy is designed to achieve high performance not just on very large sizes, as is the focus of many established libraries, but on whatever are the actual sizes and shapes of matrices most critical in current TensorFlow Lite applications. This often means quite small sizes, e.g. 100x100 or even 50x50, and all sorts of rectangular shapes. It's not as fast as completely specialized code for each shape, but it aims to offer a good compromise of speed across all shapes and a small binary size.

Documentation

Some documentation will eventually be available in the doc/ directory, see doc/README.md.