jax.make_array_from_single_device_arrays#
- jax.make_array_from_single_device_arrays(shape, sharding, arrays)[源代码]#
- 从一系列每个都在单个设备上的
jax.Array
返回一个jax.Array
。 输入
sharding
的网格中的每个设备都必须在arrays
中有一个数组。
- 参数:
shape (Shape) – 输出
jax.Array
的形状。这传达了已经包含在sharding
和arrays
中的信息,并作为双重检查。sharding (Sharding) – 分片:一个全局的 Sharding 实例,描述了输出 jax.Array 如何在设备之间布局。
arrays (Sequence[basearray.Array]) – 一系列
jax.Array
,每个都是单设备可寻址的。len(arrays)
必须等于len(sharding.addressable_devices)
,并且每个数组的形状必须相同。对于多进程代码,每个进程将使用与该进程数据对应的不同arrays
参数进行调用。这些数组通常通过jax.device_put
创建。
- 返回:
- 一个全局的
jax.Array
,按照sharding
分片,形状等于shape
,并且每个设备的内容与arrays
匹配。
- 一个全局的
- 返回类型:
ArrayImpl
示例
>>> import math >>> from jax.sharding import Mesh >>> from jax.sharding import PartitionSpec as P >>> import numpy as np ... >>> mesh_rows = 2 >>> mesh_cols = jax.device_count() // 2 ... >>> global_shape = (8, 8) >>> mesh = Mesh(np.array(jax.devices()).reshape(mesh_rows, mesh_cols), ('x', 'y')) >>> sharding = jax.sharding.NamedSharding(mesh, P('x', 'y')) >>> inp_data = np.arange(math.prod(global_shape)).reshape(global_shape) ... >>> arrays = [ ... jax.device_put(inp_data[index], d) ... for d, index in sharding.addressable_devices_indices_map(global_shape).items()] ... >>> arr = jax.make_array_from_single_device_arrays(global_shape, sharding, arrays) >>> assert arr.shape == (8,8) # arr.shape is (8,8) regardless of jax.device_count()
对于您有一个本地数组并希望将其转换为全局 jax.Array 的情况,请使用
jax.make_array_from_process_local_data
。- 从一系列每个都在单个设备上的