summaryrefslogtreecommitdiff
path: root/candle-core/src
diff options
context:
space:
mode:
Diffstat (limited to 'candle-core/src')
-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