From f9847a2eb2be8cf483b1d25802451a9c6f888407 Mon Sep 17 00:00:00 2001 From: Nicolas <344493+haricot@users.noreply.github.com> Date: Wed, 12 Feb 2025 23:58:00 +0100 Subject: [PATCH] macro formatting cleanup --- candle-core/src/dtype.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/candle-core/src/dtype.rs b/candle-core/src/dtype.rs index acf4a3bc7..b7df84404 100644 --- a/candle-core/src/dtype.rs +++ b/candle-core/src/dtype.rs @@ -141,7 +141,7 @@ macro_rules! cpu_storage_as { $( (CpuStorage::$in_dtype(storage), DType::$out_dtype) => { Ok({ let data = crate::cpu_backend::unary_map(&storage, $layout, - |v| as_!($in_dtype , $out_dtype, v)); + |v| as_!($in_dtype, $out_dtype, v)); CpuStorage::$out_dtype(data) })}, )*