Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable bitsandbytes packaging for ROCm #1299

Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
5891465
Add build job for rocm
pnunna93 Jun 19, 2024
d03a680
Add rocm build script
pnunna93 Jun 19, 2024
ec9000f
Copy shared obj file into output_dir
pnunna93 Jun 20, 2024
9b8c1da
upload build artifacts and enable wheels build
pnunna93 Jun 20, 2024
1413c5f
Remove cuda build temporarily
pnunna93 Jun 20, 2024
578b2f4
Merge pull request #38 from ROCm/enable_rocm_build_ci
pnunna93 Jun 21, 2024
fd655b0
Add ROCm version to .so filename
pnunna93 Jul 29, 2024
6b77f4c
Add rocm_version to whls build
pnunna93 Jul 29, 2024
78324b3
Revert "Remove cuda build temporarily"
pnunna93 Jul 29, 2024
c146b8b
Add rocm_version env var
pnunna93 Jul 29, 2024
953a383
Merge remote-tracking branch 'upstream/multi-backend-refactor' into e…
pnunna93 Jul 29, 2024
d6c3df4
Remove thrush header files
pnunna93 Jul 30, 2024
7e9a65c
Print node info
pnunna93 Jul 30, 2024
cdb209a
print cuda node info
pnunna93 Jul 30, 2024
77e1499
Revert "print cuda node info"
pnunna93 Jul 30, 2024
7c91909
Revert "Print node info"
pnunna93 Jul 30, 2024
b78b340
Add rocm arch to compile command
pnunna93 Jul 30, 2024
a62b9d4
Rename .so files to rocm
pnunna93 Jul 30, 2024
9059bff
Update default gpu arch
pnunna93 Jul 30, 2024
c5a406a
Skip cpu based igemmlt int tests on ROCm
pnunna93 Jul 30, 2024
9cbb5e1
Update Documentation
pnunna93 Jul 30, 2024
3580624
Update upstream repo name
pnunna93 Jul 30, 2024
3bde1b7
Update docs
pnunna93 Jul 30, 2024
b123125
Merge pull request #39 from ROCm/enable_rocm_whls
pnunna93 Jul 31, 2024
db1df72
Update string format
pnunna93 Jul 31, 2024
e498b4d
Remove pre-release option for torch install
pnunna93 Jul 31, 2024
7d2e027
Update pytorch install path
pnunna93 Aug 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Print node info
pnunna93 committed Jul 30, 2024
commit 7e9a65c33f66fffcb14ee2438170718777c06022
2 changes: 1 addition & 1 deletion .github/scripts/build-rocm.sh
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ if [ "${build_os:0:6}" == ubuntu ]; then
-w /src -v "$PWD:/src" "$image" sh -c \
"apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends cmake \
&& cmake -DCOMPUTE_BACKEND=hip . \
&& rocminfo && cmake -DCOMPUTE_BACKEND=hip . \
&& cmake --build ."
fi