Add the cat operator (without the storage implementation for now).

This commit is contained in:
laurent
2023-06-23 10:13:37 +01:00
parent bf9e1d1c23
commit 6110db31c9
4 changed files with 118 additions and 0 deletions

View File

@ -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!()
}
}