Skip to content

Commit 9338bf4

Browse files
authored
update publish yml (#983)
* update publish yml * rm attention from hip
1 parent ae303d0 commit 9338bf4

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

.github/workflows/publish.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,19 @@ jobs:
111111
- publish-cubecl-matmul
112112
secrets: inherit
113113

114+
publish-cubecl-attention:
115+
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
116+
with:
117+
crate: cubecl-attention
118+
needs:
119+
- publish-cubecl-runtime
120+
- publish-cubecl-std
121+
- publish-cubecl-core
122+
- publish-cubecl-common
123+
- publish-cubecl-random
124+
- publish-cubecl-matmul
125+
secrets: inherit
126+
114127
publish-cubecl-opt:
115128
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
116129
with:
@@ -146,6 +159,7 @@ jobs:
146159
- publish-cubecl-matmul
147160
- publish-cubecl-convolution
148161
- publish-cubecl-reduce
162+
- publish-cubecl-attention
149163
secrets: inherit
150164

151165
publish-cubecl-cpp:
@@ -156,6 +170,7 @@ jobs:
156170
- publish-cubecl-common
157171
- publish-cubecl-runtime
158172
- publish-cubecl-core
173+
- publish-cubecl-opt
159174
secrets: inherit
160175

161176
publish-cubecl-cuda:
@@ -171,6 +186,7 @@ jobs:
171186
- publish-cubecl-matmul
172187
- publish-cubecl-convolution
173188
- publish-cubecl-reduce
189+
- publish-cubecl-attention
174190
secrets: inherit
175191

176192
publish-cubecl-hip:
@@ -188,6 +204,28 @@ jobs:
188204
- publish-cubecl-reduce
189205
secrets: inherit
190206

207+
publish-cubecl-cpu:
208+
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
209+
with:
210+
crate: cubecl-cpu
211+
needs:
212+
- publish-cubecl-core
213+
- publish-cubecl-reduce
214+
- publish-cubecl-common
215+
- publish-cubecl-std
216+
secrets: inherit
217+
218+
publish-cubecl-quant:
219+
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
220+
with:
221+
crate: cubecl-quant
222+
needs:
223+
- publish-cubecl-core
224+
- publish-cubecl-common
225+
- publish-cubecl-runtime
226+
- publish-cubecl-std
227+
secrets: inherit
228+
191229
publish-cubecl:
192230
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
193231
with:

crates/cubecl-attention/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ cubecl-core = { path = "../cubecl-core", version = "0.7.0", default-features = f
2424
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.0", default-features = false }
2525
cubecl-std = { path = "../cubecl-std", version = "0.7.0", default-features = false }
2626
cubecl-matmul = { path = "../cubecl-matmul", version = "0.7.0", default-features = false }
27-
cubecl-reduce = { path = "../cubecl-reduce", version = "0.7.0", default-features = false }
2827
cubecl-random = { path = "../cubecl-random", version = "0.7.0", default-features = false }
2928
half = { workspace = true, features = ["bytemuck"] }
3029
pretty_assertions = { workspace = true, optional = true }

0 commit comments

Comments
 (0)