cunumeric.full_like#

cunumeric.full_like(a: ndarray, value: int | float, dtype: npt.DTypeLike | None = None, shape: NdShapeLike | None = None) ndarray#

Return a full array with the same shape and type as a given array.

Parameters:
  • a (array_like) – The shape and data-type of a define these same attributes of the returned array.

  • fill_value (scalar) – Fill value.

  • dtype (data-type, optional) – Overrides the data type of the result.

  • shape (int or tuple[int], optional) – Overrides the shape of the result.

Returns:

out – Array of fill_value with the same shape and type as a.

Return type:

ndarray

See also

numpy.full_like

Availability:

Multiple GPUs, Multiple CPUs