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

feat: diffusion.cpp bindings #1

Merged
merged 18 commits into from
Oct 16, 2024
Merged
Prev Previous commit
Next Next commit
ci: rocm runner introduction
  • Loading branch information
newfla committed Oct 16, 2024
commit e120c807fa0ce337910e425f7a5c222c08ce7c98
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,26 @@ jobs:
CUDA_COMPUTE_CAP: "75"
run: cargo build --features cublas

build-rocm:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Ubuntu build dependencies
run: sudo apt update && sudo apt install -y clang cmake
- name: Install Rocm Toolkit
run: |
wget https://repo.radeon.com/amdgpu-install/6.1.2/ubuntu/jammy/amdgpu-install_6.1.60102-1_all.deb
sudo apt install ./amdgpu-install_6.1.60102-1_all.deb
sudo apt update
sudo apt install -y rocm
- uses: dtolnay/rust-toolchain@stable
- name: Build
run: |
source /opt/intel/oneapi/setvars.sh
cargo build --features hipblas

build-sycl:
runs-on: ubuntu-22.04
steps:
Expand Down
Loading