tf.experimental.dtensor.create_distributed_mesh
Stay organized with collections
Save and categorize content based on your preferences.
Creates a distributed mesh.
tf.experimental.dtensor.create_distributed_mesh(
mesh_dims: List[Tuple[str, int]],
mesh_name: str = '',
local_devices: Optional[List[str]] = None,
device_type: Optional[str] = None,
use_xla_spmd: bool = layout.USE_XLA_SPMD
) -> tf.experimental.dtensor.Mesh
This is similar to create_mesh
, but with a different set of arguments to
create a mesh that spans evenly across a multi-client DTensor cluster.
For CPU and GPU meshes, users can choose to use fewer local devices than what
is available local_devices
.
For TPU, only meshes that uses all TPU cores is supported by the DTensor
runtime.
Args |
mesh_dims
|
A list of (dim_name, dim_size) tuples.
|
mesh_name
|
Name of the created mesh. Defaults to ''.
|
local_devices
|
String representations of devices to use. This is the device
part of tf.DeviceSpec, e.g. 'CPU:0'. Defaults to all available local
logical devices.
|
device_type
|
Type of device to build the mesh for. Defaults to 'CPU'.
Supported values are 'CPU', 'GPU', 'TPU'.6
|
use_xla_spmd
|
Boolean when True, will use XLA SPMD instead of
DTensor SPMD.
|
Returns |
A mesh that spans evenly across all DTensor clients in the cluster.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
Last updated 2023-10-06 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[],[]]