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.RegularArray
nodes; 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.Content
subclass.behavior (None or dict) – Custom
ak.behavior
for 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.Content
types
(only):
ak.contents.RegularArray
ifregulararray=True
.
See also ak.to_cupy
, ak.from_numpy
and ak.from_jax
.