jax.device_get — JAX documentation (original) (raw)

jax.device_get#

jax.device_get(x)[source]#

Transfer x to host.

If x is a pytree, then the individual buffers are copied in parallel.

Parameters:

x (Any) – An array, scalar, Array or (nested) standard Python container thereof representing the array to be transferred to host.

Returns:

An array or (nested) Python container thereof representing the value of x.

Examples

Passing a Array:

import jax x = jax.numpy.array([1., 2., 3.]) jax.device_get(x) array([1., 2., 3.], dtype=float32)

Passing a scalar (has no effect):

See also