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

Update to ROCm 6.3.1 #12

Merged
merged 1 commit into from
Jan 11, 2025
Merged
Changes from all commits
Commits
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
Update to 6.3.1
Knight-Ops committed Jan 11, 2025
commit 8dd5b4b4b9148942e3c645e25dc1beeedf312b5f
4 changes: 3 additions & 1 deletion crates/cubecl-hip-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -12,16 +12,18 @@ version.workspace = true
rust-version = "1.81"

[features]
default = ["rocm__6_3_0"]
default = ["rocm__6_3_1"]

# ROCm versions
rocm__6_2_2 = [ "hip_41134" ]
rocm__6_2_4 = [ "hip_41134" ]
rocm__6_3_0 = [ "hip_42131" ]
rocm__6_3_1 = [ "hip_42133" ]

# HIP versions
hip_41134 = []
hip_42131 = []
hip_42133 = []

[dependencies]
libc = { workspace = true }
8,162 changes: 8,162 additions & 0 deletions crates/cubecl-hip-sys/src/bindings/bindings_42133.rs

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions crates/cubecl-hip-sys/src/bindings/mod.rs
Original file line number Diff line number Diff line change
@@ -7,3 +7,8 @@ pub use bindings_41134::*;
mod bindings_42131;
#[cfg(feature = "hip_42131")]
pub use bindings_42131::*;

#[cfg(feature = "hip_42133")]
mod bindings_42133;
#[cfg(feature = "hip_42133")]
pub use bindings_42133::*;