summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Patry <patry.nicolas@protonmail.com>2023-07-10 19:02:35 +0200
committerGitHub <noreply@github.com>2023-07-10 19:02:35 +0200
commit5ea747c0472dbab4625a5d84058f2d897b18b51e (patch)
treed17e51e171e84dc23e92373014e93234a81fcc44
parentef0375d8bcfcf2ec335a12a04d793d784dfca45d (diff)
downloadcandle-5ea747c0472dbab4625a5d84058f2d897b18b51e.tar.gz
candle-5ea747c0472dbab4625a5d84058f2d897b18b51e.tar.bz2
candle-5ea747c0472dbab4625a5d84058f2d897b18b51e.zip
Update candle-core/src/indexer.rs
-rw-r--r--candle-core/src/indexer.rs1
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