Skip to content

Commit 1e12738

Browse files
committed
Fixes
1 parent d7dedde commit 1e12738

File tree

4 files changed

+35
-13
lines changed

4 files changed

+35
-13
lines changed

Cargo.lock

+27-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,11 @@ ahash = { version = "0.8.11", default-features = false }
153153
portable-atomic-util = { version = "0.2.4", features = ["alloc"] }
154154

155155
### For the main burn branch. ###
156-
#cubecl = { git = "https://github.com/tracel-ai/cubecl", default-features = false, rev = "4c42d0b54ac9069ff520c7719e7ef77833248e34" }
157-
#cubecl-common = { git = "https://github.com/tracel-ai/cubecl", default-features = false, rev = "4c42d0b54ac9069ff520c7719e7ef77833248e34" }
156+
cubecl = { git = "https://github.com/tracel-ai/cubecl", default-features = false, rev = "2cc42af02671d90255ab823e29a4a3ad2e564333" }
157+
cubecl-common = { git = "https://github.com/tracel-ai/cubecl", default-features = false, rev = "2cc42af02671d90255ab823e29a4a3ad2e564333" }
158158
### For local development. ###
159-
cubecl = { path = "../cubecl/crates/cubecl", default-features = false }
160-
cubecl-common = { path = "../cubecl/crates/cubecl-common", default-features = false }
159+
# cubecl = { path = "../cubecl/crates/cubecl", default-features = false }
160+
# cubecl-common = { path = "../cubecl/crates/cubecl-common", default-features = false }
161161
### For the release. ###
162162
# cubecl = { version = "0.4.0", default-features = false }
163163
# cubecl-common = { version = "0.4.0", default-features = false }

crates/burn-jit/src/kernel/conv/conv2d/tune/conv_transpose2d.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use burn_tensor::{ops::ConvTransposeOptions, ElementConversion, Shape};
2-
use cubecl::tune::{local_tuner, tune_with, LocalTuner, TunableSet};
2+
use cubecl::tune::{local_tuner, LocalTuner, TunableSet};
33

44
use crate::{
55
kernel::{
@@ -64,7 +64,7 @@ pub fn create_transpose2d_input<R: JitRuntime, E: FloatElement>(
6464
let bias = key
6565
.has_bias
6666
.then(|| random_uniform(bias_shape, device, random_bounds.0, random_bounds.1));
67-
tune_with!(input, weights, bias, options.clone())
67+
(input, weights, bias, options.clone())
6868
}
6969

7070
fn create_key<R: JitRuntime, E: FloatElement>(

crates/burn-jit/src/kernel/matmul/tune/base.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use burn_tensor::{Element, ElementConversion};
22
use cubecl::{
33
linalg::matmul::{kernels::tiling2d::Tiling2dConfig, Strategy},
4-
tune::{local_tuner, tune_with, LocalTuner, TunableSet},
4+
tune::{local_tuner, LocalTuner, TunableSet},
55
};
66

77
use crate::{
@@ -27,7 +27,7 @@ fn matmul_input_gen<R: JitRuntime, E: FloatElement>(
2727

2828
let out = empty_device::<R, E>(out.client.clone(), out.device.clone(), out.shape.clone());
2929

30-
tune_with!(lhs, rhs, out)
30+
(lhs, rhs, out)
3131
}
3232

3333
/// Executes autotune on matmul operations

0 commit comments

Comments
 (0)