Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | 29-Oct-2021 | - | ||||
cmake/ | 29-Oct-2021 | - | ||||
doc/ | 29-Oct-2021 | - | ||||
example/ | 29-Oct-2021 | - | ||||
ruy/ | 29-Oct-2021 | - | ||||
third_party/ | 29-Oct-2021 | - | ||||
.gitignore | A D | 29-Oct-2021 | 297 | 31 | 24 | |
.gitmodules | A D | 29-Oct-2021 | 192 | 7 | 6 | |
BUILD | A D | 29-Oct-2021 | 99 | 8 | 5 | |
CMakeLists.txt | A D | 29-Oct-2021 | 3.7 KiB | 91 | 79 | |
CONTRIBUTING.md | A D | 29-Oct-2021 | 1.1 KiB | 29 | 20 | |
LICENSE | A D | 29-Oct-2021 | 11.1 KiB | 203 | 169 | |
README.md | A D | 29-Oct-2021 | 1 KiB | 26 | 17 | |
WORKSPACE | A D | 29-Oct-2021 | 1.5 KiB | 45 | 38 |
README.md
1# The ruy matrix multiplication library 2 3This is not an officially supported Google product. 4 5ruy is a matrix multiplication library. Its focus is to cover the matrix 6multiplication needs of neural network inference engines. Its initial user has 7been TensorFlow Lite, where it is used by default on the ARM CPU architecture. 8 9ruy supports both floating-point and 8bit-integer-quantized matrices. 10 11## Efficiency 12 13ruy is designed to achieve high performance not just on very large sizes, as 14is the focus of many established libraries, but on whatever are the actual sizes 15and shapes of matrices most critical in current TensorFlow Lite applications. 16This often means quite small sizes, e.g. 100x100 or even 50x50, and all sorts of 17rectangular shapes. It's not as fast as completely specialized code for each 18shape, but it aims to offer a good compromise of speed across all shapes and a 19small binary size. 20 21## Documentation 22 23Some documentation will eventually be available in the doc/ directory, see 24[doc/README.md](doc/README.md). 25 26