@@ -66,6 +66,9 @@ Here is the table of currently available bindings:
66
66
| 6.3.0 | rocm__ 6_3_0 | cubecl-hip-sys |
67
67
| 6.3.1 | rocm__ 6_3_1 | cubecl-hip-sys |
68
68
| 6.3.2 | rocm__ 6_3_2 | cubecl-hip-sys |
69
+ | 6.3.3 | rocm__ 6_3_3 | cubecl-hip-sys |
70
+ | 6.3.4 | rocm__ 6_3_4 | cubecl-hip-sys |
71
+ | 6.4.0 | rocm__ 6_4_0 | cubecl-hip-sys |
69
72
70
73
Here is a table of the libraries covered by each crate:
71
74
@@ -123,14 +126,7 @@ hip feature.
123
126
rocm__6_3_0 = [ " hip_42131" ]
124
127
```
125
128
126
- 4 ) Replace the default feature in the ` Cargo.toml ` file be the latest one, in this case ` rocm__6_3_0 ` .
127
-
128
- ``` toml
129
- [features ]
130
- default = [" rocm__6_3_0" ]
131
- ```
132
-
133
- 5 ) Add the generated bindings module to the file ` crates/cubecl-hip-sys/src/bindings/mod.rs `
129
+ 4 ) Add the generated bindings module to the file ` crates/cubecl-hip-sys/src/bindings/mod.rs `
134
130
conditionally to the new feature you just declared as well as the re-exports:
135
131
136
132
``` rs
@@ -140,12 +136,12 @@ mod bindings_42131;
140
136
pub use bindings_42131 :: * ;
141
137
```
142
138
143
- 6 ) Run the tests as explain in the previous section using the new feature you just created.
139
+ 5 ) Run the tests as explain in the previous section using the new feature you just created.
144
140
145
- 7 ) Open a pull request with the modifications, do not forget to add the new generated bindings
141
+ 6 ) Open a pull request with the modifications, do not forget to add the new generated bindings
146
142
file in the ` crates/cubecl-hip-sys/src/bindings/ ` directory.
147
143
148
- 8 ) Note that the CI runner might need to be updated by an administrator to install the new version of ROCm.
144
+ 7 ) Note that the CI runner might need to be updated by an administrator to install the new version of ROCm.
149
145
150
146
[ 1 ] : https://rocmdocs.amd.com/projects/install-on-linux/en/latest/install/detailed-install.html
151
147
[ 2 ] : https://crates.io/crates/cubecl-hip-sys
0 commit comments