diff options
author | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-07-10 19:02:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-10 19:02:35 +0200 |
commit | 5ea747c0472dbab4625a5d84058f2d897b18b51e (patch) | |
tree | d17e51e171e84dc23e92373014e93234a81fcc44 | |
parent | ef0375d8bcfcf2ec335a12a04d793d784dfca45d (diff) | |
download | candle-5ea747c0472dbab4625a5d84058f2d897b18b51e.tar.gz candle-5ea747c0472dbab4625a5d84058f2d897b18b51e.tar.bz2 candle-5ea747c0472dbab4625a5d84058f2d897b18b51e.zip |
Update candle-core/src/indexer.rs
-rw-r--r-- | candle-core/src/indexer.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/candle-core/src/indexer.rs b/candle-core/src/indexer.rs index 44c38206..59cefc19 100644 --- a/candle-core/src/indexer.rs +++ b/candle-core/src/indexer.rs @@ -43,7 +43,6 @@ impl Tensor { Bound::Unbounded => dims[i], }; let len = stop - start; - println!(" indexer {indexer:?} Start {start} stop{stop} - {len:?}"); let out = x.narrow(current_dim, start, stop - start)?; current_dim += 1; out |