algorithms.mdx 480 Bytes
Newer Older
Titus's avatar
Titus committed
1
2
3
4
5
6
7
8
9
10
11
12
# 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

For straight Int8 matrix multiplication with mixed precision decomposition you can use ``bnb.matmul(...)``. To enable mixed precision decomposition, use the threshold parameter:

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