jax.从单设备数组创建数组#
- jax.make_array_from_single_device_arrays(shape, sharding, arrays)[源代码][源代码]#
- 从一个设备上的
jax.Array
序列返回一个jax.Array
。 输入
sharding
网格中的每个设备在arrays
中必须有一个数组。
- 参数:
shape (Shape) – 输出
jax.Array
的形状。这传达了已经包含在sharding
和arrays
中的信息,并作为双重检查。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
。- 从一个设备上的