diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2025-01-16 09:39:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-16 09:39:16 +0100 |
commit | 6fd2f63a15353ceaac674165d13d2241589382e0 (patch) | |
tree | 4c00dda0658464b91cab5d489660e7101e223c6a | |
parent | efd0e6822f4d0e2433f0ae02ba16f16cda834d97 (diff) | |
download | candle-6fd2f63a15353ceaac674165d13d2241589382e0.tar.gz candle-6fd2f63a15353ceaac674165d13d2241589382e0.tar.bz2 candle-6fd2f63a15353ceaac674165d13d2241589382e0.zip |
Bump the ug dependency. (#2720)
* Bump the ug dependency.
* Fix some test.
* Fix the ug test.
-rw-r--r-- | Cargo.toml | 6 | ||||
-rw-r--r-- | candle-core/tests/custom_op_tests.rs | 2 |
2 files changed, 4 insertions, 4 deletions
@@ -70,9 +70,9 @@ tokenizers = { version = "0.19.1", default-features = false } tracing = "0.1.37" tracing-chrome = "0.7.1" tracing-subscriber = "0.3.7" -ug = "0.0.2" -ug-cuda = "0.0.2" -ug-metal = "0.0.2" +ug = "0.1.0" +ug-cuda = "0.1.0" +ug-metal = "0.1.0" yoke = { version = "0.7.2", features = ["derive"] } zip = { version = "1.1.1", default-features = false } metal = { version = "0.27.0", features = ["mps"]} diff --git a/candle-core/tests/custom_op_tests.rs b/candle-core/tests/custom_op_tests.rs index 3572a4c9..3fc45971 100644 --- a/candle-core/tests/custom_op_tests.rs +++ b/candle-core/tests/custom_op_tests.rs @@ -158,7 +158,7 @@ fn ug_op() -> Result<()> { let st = op::store(ptr.id(), layout, src)?; let kernel = op::Kernel::new("exp".to_string(), vec![ptr], vec![st]); let opts: ug::lower_op::Opts = Default::default(); - kernel.lower(&opts.with_global(0, 12))? + kernel.lower(&opts)? }; let device = if candle_core::utils::cuda_is_available() { Device::new_cuda(0)? |