-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#0: Typo fix in TT distributed tech report #16308
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1016,18 +1016,18 @@ Below, we include snippets from both the TT-Mesh and TT-Metal examples to illust | |
MeshConfig mesh_config_0 = MeshConfig{.shape = virtual_mesh_shape, .offset = {0, 0}, .type=mesh_type}; | ||
MeshConfig mesh_config_1 = MeshConfig{.shape = virtual_mesh_shape, .offset = {0, 4}, .type=mesh_type}; | ||
|
||
DeviceHandle virtual_mesh_0 = CreateMeshDevice(mesh_config_0, 2 /* num_cqs */, DEFAULT_L1_SMALL_SIZE, DEFAULT_TRACE_REGION_SIZE, 1 /* num_command_queues */); | ||
DeviceHandle virtual_mesh_1 = CreateMeshDevice(mesh_config_1, 2 /* num_cqs */, DEFAULT_L1_SMALL_SIZE, DEFAULT_TRACE_REGION_SIZE, 1 /* num_command_queues */); | ||
DeviceHandle virtual_mesh_0 = CreateMeshDevice(mesh_config_0, DEFAULT_L1_SMALL_SIZE, DEFAULT_TRACE_REGION_SIZE, 1 /* num_command_queues */); | ||
DeviceHandle virtual_mesh_1 = CreateMeshDevice(mesh_config_1, DEFAULT_L1_SMALL_SIZE, DEFAULT_TRACE_REGION_SIZE, 1 /* num_command_queues */); | ||
``` | ||
|
||
*Directly create raw handles to two Devices.* | ||
|
||
```cpp | ||
DeviceHandle device_0 = CreateDevice( | ||
0, /* device_id */ | ||
2, /* num_hw_cqs */ | ||
DEFAULT_L1_SMALL_SIZE, | ||
DEFAULT_TRACE_REGION_SIZE); | ||
DeviceHandle device_0 = CreateDevice( | ||
0, /* device_id */ | ||
2, /* num_hw_cqs */ | ||
DEFAULT_L1_SMALL_SIZE, | ||
DEFAULT_TRACE_REGION_SIZE); | ||
DeviceHandle device_1 = CreateDevice( | ||
1, /* device_id */ | ||
2, /* num_hw_cqs */ | ||
|
@@ -1070,7 +1070,7 @@ DeviceLocalLayoutConfig per_device_buffer_config { | |
ShardedBufferConfig distributed_buffer_config_virtual_mesh_0 { | ||
.mesh_device = virtual_mesh_0; | ||
.buffer_type = BufferType::DRAM, | ||
.global_tensor_shape = global_tensor_shape, | ||
.global_buffer_shape = global_buffer_shape, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As per the declaration earlier in the document. |
||
.distributed_shard_shape = device_shard_shape, | ||
.global_buffer_size = distributed_buffer_size, | ||
.device_shard_layout = per_device_buffer_config | ||
|
@@ -1079,7 +1079,7 @@ ShardedBufferConfig distributed_buffer_config_virtual_mesh_0 { | |
ShardedBufferConfig distributed_buffer_config_virtual_mesh_1 { | ||
.mesh_device = virtual_mesh_1; | ||
.buffer_type = BufferType::DRAM, | ||
.global_tensor_shape = global_tensor_shape, | ||
.global_buffer_shape = global_buffer_shape, | ||
.distributed_shard_shape = device_shard_shape, | ||
.global_buffer_size = distributed_buffer_size, | ||
.device_shard_layout = per_device_buffer_config | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
num_cqs
andnum_command_queues
were repeated. This version also aligns with the existing mesh device impl.