Skip to content

Commit 5959389

Browse files
Temporary updates for release
1 parent 19fe95a commit 5959389

File tree

4 files changed

+13
-22
lines changed

4 files changed

+13
-22
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ jobs:
104104
retention-days: 7
105105

106106
build-shared-libs-rocm:
107+
if: false # Temporarily disabled
107108
strategy:
108109
matrix:
109110
os: [ubuntu-22.04]
@@ -151,7 +152,7 @@ jobs:
151152
needs:
152153
- build-shared-libs
153154
- build-shared-libs-cuda
154-
- build-shared-libs-rocm
155+
#- build-shared-libs-rocm
155156
strategy:
156157
matrix:
157158
os: [ubuntu-22.04, ubuntu-22.04-arm, windows-latest, macos-latest]

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ bitsandbytes has the following minimum requirements for all platforms:
2626
#### Accelerator support:
2727

2828
<small>Note: this table reflects the status of the current development branch. For the latest stable release, see the
29-
[document in the v0.46.0 tag](https://github.com/bitsandbytes-foundation/bitsandbytes/blob/0.46.0/README.md#accelerator-support).
29+
[document in the 0.47.0 tag](https://github.com/bitsandbytes-foundation/bitsandbytes/blob/0.47.0/README.md#accelerator-support).
3030
</small>
3131

3232
##### Legend:
@@ -73,9 +73,9 @@ bitsandbytes has the following minimum requirements for all platforms:
7373
CDNA: gfx90a, gfx942<br>
7474
RDNA: gfx1100
7575
</td>
76-
<td></td>
77-
<td>〰️</td>
78-
<td></td>
76+
<td>🚧</td>
77+
<td>🚧</td>
78+
<td>🚧</td>
7979
</tr>
8080
<tr>
8181
<td></td>
@@ -85,16 +85,16 @@ bitsandbytes has the following minimum requirements for all platforms:
8585
Arc A-Series (Alchemist)<br>
8686
Arc B-Series (Battlemage)
8787
</td>
88-
<td></td>
89-
<td></td>
88+
<td>🚧</td>
89+
<td>🚧</td>
9090
<td>🚧</td>
9191
</tr>
9292
<tr>
9393
<td></td>
9494
<td>🟪 Intel Gaudi <br><code>hpu</code></td>
9595
<td>Gaudi1, Gaudi2, Gaudi3</td>
96-
<td></td>
97-
<td>〰️</td>
96+
<td>🚧</td>
97+
<td>🚧</td>
9898
<td>❌</td>
9999
</tr>
100100
<tr>
@@ -139,8 +139,8 @@ bitsandbytes has the following minimum requirements for all platforms:
139139
Arc A-Series (Alchemist) <br>
140140
Arc B-Series (Battlemage)
141141
</td>
142-
<td></td>
143-
<td></td>
142+
<td>🚧</td>
143+
<td>🚧</td>
144144
<td>🚧</td>
145145
</tr>
146146
<tr>

bitsandbytes/__init__.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,6 @@
3535
if torch.cuda.is_available():
3636
from .backends.cuda import ops as cuda_ops
3737

38-
if hasattr(torch, "xpu") and torch.xpu.is_available():
39-
from .backends.xpu import ops as xpu_ops
40-
41-
42-
if importlib.util.find_spec("habana_frameworks") and importlib.util.find_spec("habana_frameworks.torch"):
43-
# In case not automatically imported
44-
import habana_frameworks.torch
45-
46-
if hasattr(torch, "hpu") and torch.hpu.is_available():
47-
from .backends.hpu import ops as hpu_ops
48-
4938

5039
def _import_backends():
5140
"""

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ test = [
7474
package-data = { "*" = ["libbitsandbytes*.*"] }
7575

7676
[tool.setuptools.packages.find]
77+
exclude = ["*backends.xpu", "*backends.hpu", "*backends.triton"]
7778
include = ["bitsandbytes*"]
7879

7980
[tool.setuptools.dynamic]

0 commit comments

Comments
 (0)