diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-07-14 08:22:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-14 08:22:08 +0100 |
commit | a2f72edc0de31709f9489922f93bb52b50035ebd (patch) | |
tree | 7e3d114b4a6c3d3c265867eb91100a7f905177cb /candle-core/examples/cuda_basics.rs | |
parent | 2bfa791336b320b96d392aba83cbd4cee87173e3 (diff) | |
download | candle-a2f72edc0de31709f9489922f93bb52b50035ebd.tar.gz candle-a2f72edc0de31709f9489922f93bb52b50035ebd.tar.bz2 candle-a2f72edc0de31709f9489922f93bb52b50035ebd.zip |
Simplify the parameters used by sum and sum_keepdim. (#165)
Diffstat (limited to 'candle-core/examples/cuda_basics.rs')
-rw-r--r-- | candle-core/examples/cuda_basics.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/candle-core/examples/cuda_basics.rs b/candle-core/examples/cuda_basics.rs index 37a66cb5..645420e5 100644 --- a/candle-core/examples/cuda_basics.rs +++ b/candle-core/examples/cuda_basics.rs @@ -7,9 +7,9 @@ use candle::{Device, Tensor}; fn main() -> Result<()> { let device = Device::new_cuda(0)?; let t = Tensor::new(&[[1f32, 2., 3., 4.2]], &device)?; - let sum = t.sum_keepdim(&[0])?; + let sum = t.sum_keepdim(0)?; println!("{sum}"); - let sum = t.sum_keepdim(&[1])?; + let sum = t.sum_keepdim(1)?; println!("{sum}"); Ok(()) } |