mirror of
https://github.com/huggingface/candle.git
synced 2025-06-19 11:56:45 +00:00
Add the cat operator (without the storage implementation for now).
This commit is contained in:
@ -147,4 +147,15 @@ impl Storage {
|
||||
}),
|
||||
}
|
||||
}
|
||||
|
||||
// self, the source can be strided whereas dst is contiguous.
|
||||
pub(crate) fn copy_strided_src(
|
||||
&self,
|
||||
_dst: &mut Self,
|
||||
_shape: &Shape,
|
||||
_stride: &[usize],
|
||||
_offset: usize,
|
||||
) {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user