ak.from_cupy#
Defined in awkward.operations.ak_from_cupy on line 12.
- ak.from_cupy(array, *, regulararray=False, highlevel=True, behavior=None, primitive_policy='error', attrs=None)#
- Parameters:
array (cp.ndarray) – The CuPy array to convert into an Awkward Array.
regulararray (bool) – If True and the array is multidimensional, the dimensions are represented by nested
ak.contents.RegularArraynodes; if False and the array is multidimensional, the dimensions are represented by a multivaluedak.contents.NumpyArray.shape. If the array is one-dimensional, this has no effect.highlevel (bool) – If True, return an
ak.Array; otherwise, return a low-levelak.contents.Contentsubclass.behavior (None or dict) – Custom
ak.behaviorfor the output array, if high-level.attrs (None or dict) – Custom attributes for the output array, if high-level.
Converts a CuPy array into an Awkward Array.
The resulting layout may involve the following
ak.contents.Contenttypes (only):ak.contents.RegularArrayifregulararray=True.
See also
ak.to_cupy,ak.from_numpyandak.from_jax.