Skip to content

Commit 79e0e4a

Browse files
authored
bump 0.7.1 (#992)
1 parent 04b1024 commit 79e0e4a

File tree

25 files changed

+121
-121
lines changed

25 files changed

+121
-121
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ edition = "2024"
1111
license = "MIT OR Apache-2.0"
1212
readme = "README.md"
1313
rust-version = "1.88"
14-
version = "0.7.0"
14+
version = "0.7.1"
1515

1616
[workspace.dependencies]
1717
bitflags = { version = "2.9.1", features = ["serde"] }

crates/cubecl-attention/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ attention_tests = []
1919

2020
[dependencies]
2121
bytemuck = { workspace = true }
22-
cubecl-common = { path = "../cubecl-common", version = "0.7.0", default-features = false }
23-
cubecl-core = { path = "../cubecl-core", version = "0.7.0", default-features = false }
24-
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.0", default-features = false }
25-
cubecl-std = { path = "../cubecl-std", version = "0.7.0", default-features = false }
26-
cubecl-matmul = { path = "../cubecl-matmul", version = "0.7.0", default-features = false }
27-
cubecl-random = { path = "../cubecl-random", version = "0.7.0", default-features = false }
22+
cubecl-common = { path = "../cubecl-common", version = "0.7.1", default-features = false }
23+
cubecl-core = { path = "../cubecl-core", version = "0.7.1", default-features = false }
24+
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.1", default-features = false }
25+
cubecl-std = { path = "../cubecl-std", version = "0.7.1", default-features = false }
26+
cubecl-matmul = { path = "../cubecl-matmul", version = "0.7.1", default-features = false }
27+
cubecl-random = { path = "../cubecl-random", version = "0.7.1", default-features = false }
2828
half = { workspace = true, features = ["bytemuck"] }
2929
pretty_assertions = { workspace = true, optional = true }
3030
serde = { workspace = true }

crates/cubecl-convolution/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ conv_tests = []
1919

2020
[dependencies]
2121
bytemuck = { workspace = true }
22-
cubecl-common = { path = "../cubecl-common", version = "0.7.0", default-features = false }
23-
cubecl-core = { path = "../cubecl-core", version = "0.7.0", default-features = false }
24-
cubecl-matmul = { path = "../cubecl-matmul", version = "0.7.0", default-features = false }
25-
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.0", default-features = false }
26-
cubecl-std = { path = "../cubecl-std", version = "0.7.0", default-features = false }
27-
cubecl-reduce = { path = "../cubecl-reduce", version = "0.7.0", default-features = false }
28-
cubecl-random = { path = "../cubecl-random", version = "0.7.0", default-features = false }
22+
cubecl-common = { path = "../cubecl-common", version = "0.7.1", default-features = false }
23+
cubecl-core = { path = "../cubecl-core", version = "0.7.1", default-features = false }
24+
cubecl-matmul = { path = "../cubecl-matmul", version = "0.7.1", default-features = false }
25+
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.1", default-features = false }
26+
cubecl-std = { path = "../cubecl-std", version = "0.7.1", default-features = false }
27+
cubecl-reduce = { path = "../cubecl-reduce", version = "0.7.1", default-features = false }
28+
cubecl-random = { path = "../cubecl-random", version = "0.7.1", default-features = false }
2929
half = { workspace = true, features = ["bytemuck"] }
3030
pretty_assertions = { workspace = true, optional = true }
3131
serde = { workspace = true }

crates/cubecl-core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ std = ["cubecl-runtime/std"]
2020
template = []
2121

2222
[dependencies]
23-
cubecl-ir = { path = "../cubecl-ir", version = "0.7.0", default-features = false, features = [
23+
cubecl-ir = { path = "../cubecl-ir", version = "0.7.1", default-features = false, features = [
2424
"serde",
2525
] }
26-
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.0", default-features = false }
26+
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.1", default-features = false }
2727

2828
bitflags = { workspace = true }
2929
bytemuck = { workspace = true }
30-
cubecl-common = { path = "../cubecl-common", version = "0.7.0", default-features = false }
31-
cubecl-macros = { path = "../cubecl-macros", version = "0.7.0", default-features = false }
30+
cubecl-common = { path = "../cubecl-common", version = "0.7.1", default-features = false }
31+
cubecl-macros = { path = "../cubecl-macros", version = "0.7.1", default-features = false }
3232
derive-new = { workspace = true }
3333
derive_more = { workspace = true, features = [
3434
"not",

crates/cubecl-cpp/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ metal = []
2323
std = ["cubecl-runtime/std", "cubecl-common/std", "cubecl-core/std"]
2424

2525
[dependencies]
26-
cubecl-common = { path = "../cubecl-common", version = "0.7.0", default-features = false }
27-
cubecl-core = { path = "../cubecl-core", version = "0.7.0", default-features = false }
26+
cubecl-common = { path = "../cubecl-common", version = "0.7.1", default-features = false }
27+
cubecl-core = { path = "../cubecl-core", version = "0.7.1", default-features = false }
2828
# For shared allocation
29-
cubecl-opt = { path = "../cubecl-opt", version = "0.7.0", default-features = false }
30-
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.0", default-features = false, features = [
29+
cubecl-opt = { path = "../cubecl-opt", version = "0.7.1", default-features = false }
30+
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.1", default-features = false, features = [
3131
"channel-mutex",
3232
] }
3333
itertools = { version = "0.14.0", default-features = false }

crates/cubecl-cpu/Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -73,20 +73,20 @@ matmul_tests_all = [
7373
conv_tests = ["cubecl-convolution/conv_tests"]
7474

7575
[dependencies]
76-
cubecl-common = { path = "../cubecl-common", version = "0.7.0", default-features = false }
77-
cubecl-std = { path = "../cubecl-std", version = "0.7.0", default-features = false }
78-
cubecl-core = { path = "../cubecl-core", version = "0.7.0", default-features = false }
79-
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.0", default-features = false, features = [
76+
cubecl-common = { path = "../cubecl-common", version = "0.7.1", default-features = false }
77+
cubecl-std = { path = "../cubecl-std", version = "0.7.1", default-features = false }
78+
cubecl-core = { path = "../cubecl-core", version = "0.7.1", default-features = false }
79+
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.1", default-features = false, features = [
8080
"channel-mutex",
8181
] }
82-
cubecl-opt = { path = "../cubecl-opt", version = "0.7.0", default-features = false }
83-
cubecl-matmul = { path = "../cubecl-matmul", version = "0.7.0", features = [
82+
cubecl-opt = { path = "../cubecl-opt", version = "0.7.1", default-features = false }
83+
cubecl-matmul = { path = "../cubecl-matmul", version = "0.7.1", features = [
8484
"export_tests",
8585
] }
86-
cubecl-convolution = { path = "../cubecl-convolution", version = "0.7.0", features = [
86+
cubecl-convolution = { path = "../cubecl-convolution", version = "0.7.1", features = [
8787
"export_tests",
8888
] }
89-
cubecl-reduce = { path = "../cubecl-reduce", version = "0.7.0", features = [
89+
cubecl-reduce = { path = "../cubecl-reduce", version = "0.7.1", features = [
9090
"export_tests",
9191
] }
9292

@@ -99,20 +99,20 @@ sysinfo = { workspace = true }
9999
tracel-llvm = { workspace = true }
100100

101101
[dev-dependencies]
102-
cubecl-core = { path = "../cubecl-core", version = "0.7.0", features = [
102+
cubecl-core = { path = "../cubecl-core", version = "0.7.1", features = [
103103
"export_tests",
104104
] }
105-
cubecl-reduce = { path = "../cubecl-reduce", version = "0.7.0", features = [
105+
cubecl-reduce = { path = "../cubecl-reduce", version = "0.7.1", features = [
106106
"export_tests",
107107
] }
108-
cubecl-random = { path = "../cubecl-random", version = "0.7.0", features = [
108+
cubecl-random = { path = "../cubecl-random", version = "0.7.1", features = [
109109
"export_tests",
110110
] }
111-
cubecl-std = { path = "../cubecl-std", version = "0.7.0", features = [
111+
cubecl-std = { path = "../cubecl-std", version = "0.7.1", features = [
112112
"export_tests",
113113
] }
114114
paste = { workspace = true }
115115
pretty_assertions = { workspace = true }
116116

117117
[build-dependencies]
118-
tracel-llvm-bundler = { version = "20.1.4-5" }
118+
tracel-llvm-bundler = { version = "20.1.4-5" }

crates/cubecl-cuda/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ matmul_tests_unit = ["cubecl-matmul/matmul_tests_unit"]
8080
matmul_tests_vecmat = ["cubecl-matmul/matmul_tests_vecmat"]
8181

8282
[dependencies]
83-
cubecl-common = { path = "../cubecl-common", version = "0.7.0", default-features = false, features = [
83+
cubecl-common = { path = "../cubecl-common", version = "0.7.1", default-features = false, features = [
8484
"cache",
8585
] }
86-
cubecl-core = { path = "../cubecl-core", version = "0.7.0", default-features = false }
87-
cubecl-cpp = { path = "../cubecl-cpp", version = "0.7.0", default-features = false, features = [
86+
cubecl-core = { path = "../cubecl-core", version = "0.7.1", default-features = false }
87+
cubecl-cpp = { path = "../cubecl-cpp", version = "0.7.1", default-features = false, features = [
8888
"cuda",
8989
] }
90-
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.0", default-features = false, features = [
90+
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.1", default-features = false, features = [
9191
"channel-mutex",
9292
] }
9393

@@ -100,29 +100,29 @@ log = { workspace = true }
100100
serde = { workspace = true }
101101

102102
[dev-dependencies]
103-
cubecl-attention = { path = "../cubecl-attention", version = "0.7.0", features = [
103+
cubecl-attention = { path = "../cubecl-attention", version = "0.7.1", features = [
104104
"export_tests",
105105
] }
106-
cubecl-convolution = { path = "../cubecl-convolution", version = "0.7.0", features = [
106+
cubecl-convolution = { path = "../cubecl-convolution", version = "0.7.1", features = [
107107
"export_tests",
108108
] }
109-
cubecl-core = { path = "../cubecl-core", version = "0.7.0", features = [
109+
cubecl-core = { path = "../cubecl-core", version = "0.7.1", features = [
110110
"export_tests",
111111
] }
112-
cubecl-matmul = { path = "../cubecl-matmul", version = "0.7.0", features = [
112+
cubecl-matmul = { path = "../cubecl-matmul", version = "0.7.1", features = [
113113
"export_tests",
114114
] }
115-
cubecl-quant = { path = "../cubecl-quant", version = "0.7.0", features = [
115+
cubecl-quant = { path = "../cubecl-quant", version = "0.7.1", features = [
116116
"export_tests",
117117
"kernels",
118118
] }
119-
cubecl-random = { path = "../cubecl-random", version = "0.7.0", features = [
119+
cubecl-random = { path = "../cubecl-random", version = "0.7.1", features = [
120120
"export_tests",
121121
] }
122-
cubecl-reduce = { path = "../cubecl-reduce", version = "0.7.0", features = [
122+
cubecl-reduce = { path = "../cubecl-reduce", version = "0.7.1", features = [
123123
"export_tests",
124124
] }
125-
cubecl-std = { path = "../cubecl-std", version = "0.7.0", features = [
125+
cubecl-std = { path = "../cubecl-std", version = "0.7.1", features = [
126126
"export_tests",
127127
] }
128128
paste = { workspace = true }

crates/cubecl-hip/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -73,18 +73,18 @@ matmul_tests_all = [
7373
conv_tests = ["cubecl-convolution/conv_tests"]
7474

7575
[dependencies]
76-
cubecl-common = { path = "../cubecl-common", version = "0.7.0", features = [
76+
cubecl-common = { path = "../cubecl-common", version = "0.7.1", features = [
7777
"cache",
7878
] }
79-
cubecl-core = { path = "../cubecl-core", version = "0.7.0", default-features = false }
80-
cubecl-cpp = { path = "../cubecl-cpp", version = "0.7.0", default-features = false, features = [
79+
cubecl-core = { path = "../cubecl-core", version = "0.7.1", default-features = false }
80+
cubecl-cpp = { path = "../cubecl-cpp", version = "0.7.1", default-features = false, features = [
8181
"hip",
8282
] }
83-
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.0", default-features = false, features = [
83+
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.1", default-features = false, features = [
8484
"channel-mutex",
8585
] }
8686
cubecl-hip-sys = { version = "7.0.5183101" }
87-
cubecl-quant = { path = "../cubecl-quant", version = "0.7.0", default-features = false }
87+
cubecl-quant = { path = "../cubecl-quant", version = "0.7.1", default-features = false }
8888

8989

9090
bytemuck = { workspace = true }
@@ -96,26 +96,26 @@ paste = { workspace = true }
9696
serde = { workspace = true }
9797

9898
[dev-dependencies]
99-
cubecl-core = { path = "../cubecl-core", version = "0.7.0", features = [
99+
cubecl-core = { path = "../cubecl-core", version = "0.7.1", features = [
100100
"export_tests",
101101
] }
102-
cubecl-std = { path = "../cubecl-std", version = "0.7.0", features = [
102+
cubecl-std = { path = "../cubecl-std", version = "0.7.1", features = [
103103
"export_tests",
104104
] }
105-
cubecl-matmul = { path = "../cubecl-matmul", version = "0.7.0", features = [
105+
cubecl-matmul = { path = "../cubecl-matmul", version = "0.7.1", features = [
106106
"export_tests",
107107
] }
108-
cubecl-convolution = { path = "../cubecl-convolution", version = "0.7.0", features = [
108+
cubecl-convolution = { path = "../cubecl-convolution", version = "0.7.1", features = [
109109
"export_tests",
110110
] }
111-
cubecl-reduce = { path = "../cubecl-reduce", version = "0.7.0", features = [
111+
cubecl-reduce = { path = "../cubecl-reduce", version = "0.7.1", features = [
112112
"export_tests",
113113
] }
114-
cubecl-random = { path = "../cubecl-random", version = "0.7.0", features = [
114+
cubecl-random = { path = "../cubecl-random", version = "0.7.1", features = [
115115
"export_tests",
116116
] }
117117
pretty_assertions = { workspace = true }
118-
cubecl-quant = { path = "../cubecl-quant", version = "0.7.0", features = [
118+
cubecl-quant = { path = "../cubecl-quant", version = "0.7.1", features = [
119119
"export_tests",
120120
"kernels",
121121
] }

crates/cubecl-matmul/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ matmul_tests_all = [
7575

7676
[dependencies]
7777
bytemuck = { workspace = true }
78-
cubecl-common = { path = "../cubecl-common", version = "0.7.0", default-features = false }
79-
cubecl-core = { path = "../cubecl-core", version = "0.7.0", default-features = false }
80-
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.0", default-features = false }
81-
cubecl-std = { path = "../cubecl-std", version = "0.7.0", default-features = false }
82-
cubecl-reduce = { path = "../cubecl-reduce", version = "0.7.0", default-features = false }
83-
cubecl-random = { path = "../cubecl-random", version = "0.7.0", default-features = false }
78+
cubecl-common = { path = "../cubecl-common", version = "0.7.1", default-features = false }
79+
cubecl-core = { path = "../cubecl-core", version = "0.7.1", default-features = false }
80+
cubecl-runtime = { path = "../cubecl-runtime", version = "0.7.1", default-features = false }
81+
cubecl-std = { path = "../cubecl-std", version = "0.7.1", default-features = false }
82+
cubecl-reduce = { path = "../cubecl-reduce", version = "0.7.1", default-features = false }
83+
cubecl-random = { path = "../cubecl-random", version = "0.7.1", default-features = false }
8484
half = { workspace = true, features = ["bytemuck"] }
8585
pretty_assertions = { workspace = true, optional = true }
8686
serde = { workspace = true }

crates/cubecl-opt/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ default = ["std", "cubecl-common/default", "cubecl-ir/default"]
1515
std = ["cubecl-common/std"]
1616

1717
[dependencies]
18-
cubecl-common = { path = "../cubecl-common", version = "0.7.0", default-features = false }
19-
cubecl-ir = { path = "../cubecl-ir", version = "0.7.0", default-features = false }
20-
cubecl-core = { path = "../cubecl-core", version = "0.7.0", default-features = false }
18+
cubecl-common = { path = "../cubecl-common", version = "0.7.1", default-features = false }
19+
cubecl-ir = { path = "../cubecl-ir", version = "0.7.1", default-features = false }
20+
cubecl-core = { path = "../cubecl-core", version = "0.7.1", default-features = false }
2121

2222
float-ord = "0.3"
2323
log = "0.4"

0 commit comments

Comments
 (0)