• Home
  • Annotate
  • current directory
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 D29-Oct-2021297 3124

.gitmodules A D29-Oct-2021192 76

BUILD A D29-Oct-202199 85

CMakeLists.txt A D29-Oct-20213.7 KiB9179

CONTRIBUTING.md A D29-Oct-20211.1 KiB2920

LICENSE A D29-Oct-202111.1 KiB203169

README.md A D29-Oct-20211 KiB2617

WORKSPACE A D29-Oct-20211.5 KiB4538

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