/
rnekrasov
/
bitsandbytes
Обзор
Документация
Войти
/
rnekrasov
/
bitsandbytes
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
docs/source/algorithms.mdx
12 строк
480 B
Titus
documentation release v1 (#1012)
04 фев 2024, 22:12
Не верифицирован
04 фев 2024, 22:12
acc7fb3
Код
Авторство
О чём код?
# 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) ```