From 2f8bad3c60a906a9a2673befd1a377d2875c332f Mon Sep 17 00:00:00 2001 From: zhengsize Date: Tue, 7 Jan 2025 18:06:00 +0800 Subject: [PATCH] fix: fix 'Shard' capital letter --- recipes_source/distributed_device_mesh.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes_source/distributed_device_mesh.rst b/recipes_source/distributed_device_mesh.rst index ee437f06f9..17ce3c4859 100644 --- a/recipes_source/distributed_device_mesh.rst +++ b/recipes_source/distributed_device_mesh.rst @@ -164,7 +164,7 @@ DeviceMesh allows users to slice child mesh from the parent mesh and re-use the # Users can access the underlying process group thru `get_group` API. replicate_group = hsdp_mesh["replicate"].get_group() - shard_group = hsdp_mesh["Shard"].get_group() + shard_group = hsdp_mesh["shard"].get_group() tp_group = tp_mesh.get_group()