forked from M-Labs/nac3
1
0
Fork 0

core/ndstrides: add NDArrayObject::make_copy

This commit is contained in:
lyken 2024-08-20 15:00:27 +08:00
parent a40cdde8d2
commit 6edc3f895b
No known key found for this signature in database
GPG Key ID: 3BD5FC6AC8325DD8
1 changed files with 18 additions and 0 deletions

View File

@ -338,6 +338,24 @@ impl<'ctx> NDArrayObject<'ctx> {
call_nac3_ndarray_set_strides_by_shape(generator, ctx, self.instance); call_nac3_ndarray_set_strides_by_shape(generator, ctx, self.instance);
} }
/// Clone/Copy this ndarray - Allocate a new ndarray with the same shape as this ndarray and copy the contents over.
///
/// The new ndarray will own its data and will be C-contiguous.
#[must_use]
pub fn make_copy<G: CodeGenerator + ?Sized>(
&self,
generator: &mut G,
ctx: &mut CodeGenContext<'ctx, '_>,
) -> Self {
let clone = NDArrayObject::alloca(generator, ctx, self.dtype, self.ndims);
let shape = self.instance.gep(ctx, |f| f.shape).load(generator, ctx);
clone.copy_shape_from_array(generator, ctx, shape);
clone.create_data(generator, ctx);
clone.copy_data_from(generator, ctx, *self);
clone
}
/// Copy data from another ndarray. /// Copy data from another ndarray.
/// ///
/// This ndarray and `src` is that their `np.size()` should be the same. Their shapes /// This ndarray and `src` is that their `np.size()` should be the same. Their shapes