algorithms.mdx 483 Bytes
Newer Older
Titus's avatar
Titus committed
1
2
3
4
5
6
7
# Other algorithms
_WIP: Still incomplete... Community contributions would be greatly welcome!_

This is an overview of the `bnb.functional` API in `bitsandbytes` that we think would also be useful as standalone entities.

## Using Int8 Matrix Multiplication

8
For straight Int8 matrix multiplication without mixed precision decomposition you can use ``bnb.matmul(...)``. To enable mixed precision decomposition, use the threshold parameter:
Titus's avatar
Titus committed
9
10
11
12

```py
bnb.matmul(..., threshold=6.0)
```