Basics of CuPy ============== .. currentmodule:: cupy In this section, you will learn about the following things: * Basics of :class:`cupy.ndarray` * The concept of *current device* * host-device and device-device array transfer Basics of cupy.ndarray ---------------------- CuPy is a GPU array backend that implements a subset of NumPy interface. In the following code, ``cp`` is an abbreviation of ``cupy``, following the standard convention of abbreviating ``numpy`` as ``np``: .. doctest:: >>> import numpy as np >>> import cupy as cp The :class:`cupy.ndarray` class is at the core of ``CuPy`` and is a replacement class for ``NumPy``'s :class:`numpy.ndarray`. .. doctest:: >>> x_gpu = cp.array([1, 2, 3]) ``x_gpu`` above is an instance of :class:`cupy.ndarray`. As one can see, CuPy's syntax here is identical to that of NumPy. The main difference between :class:`cupy.ndarray` and :class:`numpy.ndarray` is that the CuPy arrays are allocated on the *current device*, which we will talk about later. Most of the array manipulations are also done in the way similar to NumPy. Take the Euclidean norm (a.k.a L2 norm), for example. NumPy has :func:`numpy.linalg.norm` function that calculates it on CPU. .. doctest:: >>> x_cpu = np.array([1, 2, 3]) >>> l2_cpu = np.linalg.norm(x_cpu) Using CuPy, we can perform the same calculations on GPU in a similar way: .. doctest:: >>> x_gpu = cp.array([1, 2, 3]) >>> l2_gpu = cp.linalg.norm(x_gpu) CuPy implements many functions on :class:`cupy.ndarray` objects. See the :ref:`reference ` for the supported subset of NumPy API. Knowledge of NumPy will help you utilize most of the CuPy features. We, therefore, recommend you familiarize yourself with the `NumPy documentation `_. Current Device -------------- CuPy has a concept of a *current device*, which is the default GPU device on which the allocation, manipulation, calculation, etc., of arrays take place. Suppose ID of the current device is 0. In such a case, the following code would create an array ``x_on_gpu0`` on GPU 0. .. doctest:: >>> x_on_gpu0 = cp.array([1, 2, 3, 4, 5]) To switch to another GPU device, use the :class:`~cupy.cuda.Device` context manager: .. doctest:: >>> with cp.cuda.Device(1): ... x_on_gpu1 = cp.array([1, 2, 3, 4, 5]) >>> x_on_gpu0 = cp.array([1, 2, 3, 4, 5]) All CuPy operations (except for multi-GPU features and device-to-device copy) are performed on the currently active device. In general, CuPy functions expect that the array is on the same device as the current one. Passing an array stored on a non-current device may work depending on the hardware configuration but is generally discouraged as it may not be performant. .. note:: If the array's device and the current device mismatch, CuPy functions try to establish `peer-to-peer memory access `_ (P2P) between them so that the current device can directly read the array from another device. Note that P2P is available only when the topology permits it. If P2P is unavailable, such an attempt will fail with ``ValueError``. ``cupy.ndarray.device`` attribute indicates the device on which the array is allocated. .. doctest:: >>> with cp.cuda.Device(1): ... x = cp.array([1, 2, 3, 4, 5]) >>> x.device .. note:: When only one device is available, explicit device switching is not needed. .. _current_stream: Current Stream -------------- Associated with the concept of current devices are *current streams*, which help avoid explicitly passing streams in every single operation so as to keep the APIs pythonic and user-friendly. In CuPy, all CUDA operations such as data transfer (see the :ref:`data-transfer-basics` section) and kernel launches are enqueued onto the current stream, and the queued tasks on the same stream will be executed in serial (but *asynchronously* with respect to the host). The default current stream in CuPy is CUDA's null stream (i.e., stream 0). It is also known as the *legacy* default stream, which is unique per device. However, it is possible to change the current stream using the :class:`cupy.cuda.Stream` API, please see :doc:`cuda_api` for example. The current stream in CuPy can be retrieved using :func:`cupy.cuda.get_current_stream`. It is worth noting that CuPy's current stream is managed on a *per thread, per device* basis, meaning that on different Python threads or different devices the current stream (if not the null stream) can be different. .. _data-transfer-basics: Data Transfer ------------- Move arrays to a device ~~~~~~~~~~~~~~~~~~~~~~~ :func:`cupy.asarray` can be used to move a :class:`numpy.ndarray`, a list, or any object that can be passed to :func:`numpy.array` to the current device: .. doctest:: >>> x_cpu = np.array([1, 2, 3]) >>> x_gpu = cp.asarray(x_cpu) # move the data to the current device. :func:`cupy.asarray` can accept :class:`cupy.ndarray`, which means we can transfer the array between devices with this function. .. doctest:: >>> with cp.cuda.Device(0): ... x_gpu_0 = cp.ndarray([1, 2, 3]) # create an array in GPU 0 >>> with cp.cuda.Device(1): ... x_gpu_1 = cp.asarray(x_gpu_0) # move the array to GPU 1 .. note:: :func:`cupy.asarray` does not copy the input array if possible. So, if you put an array of the current device, it returns the input object itself. If we do copy the array in this situation, you can use :func:`cupy.array` with `copy=True`. Actually :func:`cupy.asarray` is equivalent to `cupy.array(arr, dtype, copy=False)`. Move array from a device to the host ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Moving a device array to the host can be done by :func:`cupy.asnumpy` as follows: .. doctest:: >>> x_gpu = cp.array([1, 2, 3]) # create an array in the current device >>> x_cpu = cp.asnumpy(x_gpu) # move the array to the host. We can also use :meth:`cupy.ndarray.get()`: .. doctest:: >>> x_cpu = x_gpu.get() Memory management ----------------- Check :doc:`./memory` for a detailed description of how memory is managed in CuPy using memory pools. How to write CPU/GPU agnostic code ---------------------------------- CuPy's compatibility with NumPy makes it possible to write CPU/GPU agnostic code. For this purpose, CuPy implements the :func:`cupy.get_array_module` function that returns a reference to :mod:`cupy` if any of its arguments resides on a GPU and :mod:`numpy` otherwise. Here is an example of a CPU/GPU agnostic function that computes ``log1p``: .. doctest:: >>> # Stable implementation of log(1 + exp(x)) >>> def softplus(x): ... xp = cp.get_array_module(x) # 'xp' is a standard usage in the community ... print("Using:", xp.__name__) ... return xp.maximum(0, x) + xp.log1p(xp.exp(-abs(x))) When you need to manipulate CPU and GPU arrays, an explicit data transfer may be required to move them to the same location -- either CPU or GPU. For this purpose, CuPy implements two sister methods called :func:`cupy.asnumpy` and :func:`cupy.asarray`. Here is an example that demonstrates the use of both methods: .. doctest:: >>> x_cpu = np.array([1, 2, 3]) >>> y_cpu = np.array([4, 5, 6]) >>> x_cpu + y_cpu array([5, 7, 9]) >>> x_gpu = cp.asarray(x_cpu) >>> x_gpu + y_cpu Traceback (most recent call last): ... TypeError: Unsupported type >>> cp.asnumpy(x_gpu) + y_cpu array([5, 7, 9]) >>> cp.asnumpy(x_gpu) + cp.asnumpy(y_cpu) array([5, 7, 9]) >>> x_gpu + cp.asarray(y_cpu) array([5, 7, 9]) >>> cp.asarray(x_gpu) + cp.asarray(y_cpu) array([5, 7, 9]) The :func:`cupy.asnumpy` method returns a NumPy array (array on the host), whereas :func:`cupy.asarray` method returns a CuPy array (array on the current device). Both methods can accept arbitrary input, meaning that they can be applied to any data that is located on either the host or device and can be converted to an array.