Skip to content

Commit

Permalink
disable amd for win32
Browse files Browse the repository at this point in the history
  • Loading branch information
wkpark committed Feb 10, 2024
1 parent 2465e8d commit 50bbd49
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,10 @@ def build_extension(self, ext):
url_func=lambda system, arch, version:
f"https://anaconda.org/nvidia/cuda-nvdisasm/{version}/download/{system}-{arch}/cuda-nvdisasm-{version}-0.tar.bz2",
)
backends = _copy_backends(["nvidia", "amd"])
backends = ["nvidia", "amd"]
if os.name == "nt":
backends = ["nvidia"]
backends = _copy_backends(backends)


def add_link_to_backends():
Expand Down

0 comments on commit 50bbd49

Please sign in to comment.