summaryrefslogtreecommitdiff
path: root/candle-core/src/strided_index.rs
diff options
context:
space:
mode:
authorlaurent <laurent.mazare@gmail.com>2023-06-28 14:32:02 +0100
committerlaurent <laurent.mazare@gmail.com>2023-06-28 14:32:02 +0100
commitcaafef6cc14fc355af8401985e0b596b4a481bb7 (patch)
tree9417d6fed8921fde1725638c5eb6f37a98cff6e9 /candle-core/src/strided_index.rs
parent14449ff80c7ce59b38b5b5d4ee706fddfd8c6762 (diff)
downloadcandle-caafef6cc14fc355af8401985e0b596b4a481bb7.tar.gz
candle-caafef6cc14fc355af8401985e0b596b4a481bb7.tar.bz2
candle-caafef6cc14fc355af8401985e0b596b4a481bb7.zip
Get the cpu tests to run.
Diffstat (limited to 'candle-core/src/strided_index.rs')
-rw-r--r--candle-core/src/strided_index.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-core/src/strided_index.rs b/candle-core/src/strided_index.rs
index f8dc522f..e6d2868b 100644
--- a/candle-core/src/strided_index.rs
+++ b/candle-core/src/strided_index.rs
@@ -17,7 +17,7 @@ impl<'a> StridedIndex<'a> {
None
} else {
// This applies to the scalar case.
- Some(0)
+ Some(layout.start_offset())
};
StridedIndex {
next_storage_index,