You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
Attempting to use this library on a gfx1030 (6800XT) with the huggingface transformers results in:
python -m bitsandbytes
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++ DEBUG INFORMATION +++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++ DEBUG INFO END ++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Running a quick check that:
+ library is importable
+ CUDA function is callable
SUCCESS!
Installation was successful!
Trying to load a simple huggingface transformer results in:
=============================================
ERROR: Your GPU does not support Int8 Matmul!
=============================================
python3: /dockerx/temp/bitsandbytes-rocm/csrc/ops.cu:347: int igemmlt(cublasLtHandle_t, int, int, int, const int8_t *, const int8_t *, void *, float *, int, int, int) [FORMATB = 3, DTYPE_OUT = 32, SCALE_ROWS = 0]: Assertion `false' failed.
Aborted (core dumped)
I am using Rocm 5.4.0 (I updated the library paths in the makefile to point to 5.4)
The text was updated successfully, but these errors were encountered:
Attempting to use this library on a gfx1030 (6800XT) with the huggingface transformers results in:
python -m bitsandbytes
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++ DEBUG INFORMATION +++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++ DEBUG INFO END ++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Running a quick check that:
+ library is importable
+ CUDA function is callable
SUCCESS!
Installation was successful!
Trying to load a simple huggingface transformer results in:
=============================================
ERROR: Your GPU does not support Int8 Matmul!
=============================================
python3: /dockerx/temp/bitsandbytes-rocm/csrc/ops.cu:347: int igemmlt(cublasLtHandle_t, int, int, int, const int8_t *, const int8_t *, void *, float *, int, int, int) [FORMATB = 3, DTYPE_OUT = 32, SCALE_ROWS = 0]: Assertion `false' failed.
Aborted (core dumped)
I am using Rocm 5.4.0 (I updated the library paths in the makefile to point to 5.4)
May I ask what your make command was? I haven't been able to get as far as you have with my installation.
Currently no released RDNA card can support "Int8 mat mul", that's the original author's words for specific tensor core operations. I have explicitly deleted igemmlt as it's just not available for RDNA platform.
I have successfully used the AdamW 8 bit optimizer from this fork, but nothing else was tested.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Attempting to use this library on a gfx1030 (6800XT) with the huggingface transformers results in:
Trying to load a simple huggingface transformer results in:
I am using Rocm 5.4.0 (I updated the library paths in the makefile to point to 5.4)
The text was updated successfully, but these errors were encountered: