Skip to content

Commit

Permalink
Update default sys desc
Browse files Browse the repository at this point in the history
  • Loading branch information
jnie-TT committed Aug 8, 2024
1 parent bc16b85 commit 1bf8d22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Dialect/TT/IR/TTOpsTypes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ mlir::tt::SystemDescAttr::getDefault(MLIRContext *context) {
{
tt::ChipDescAttr::get(
context, tt::ArchAttr::get(context, tt::Arch::WormholeB0), {8, 8},
(1 << 20), 12, (1 << 20), 16, 32, 32),
1499136, 12, (1 << 30), 16, 32, 32),
},
// Chip Descriptor Indices
{
Expand Down
3 changes: 2 additions & 1 deletion runtime/lib/ttnn/runtime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ getCurrentSystemDescImpl(const ::ttnn::multi_device::DeviceMesh &deviceMesh) {
std::vector<uint32_t> chipDescIndices;
std::vector<::tt::target::ChipCapability> chipCapabilities;
// Ignore for now
std::vector<::tt::target::ChipCoord> chipCoords;
std::vector<::tt::target::ChipCoord> chipCoords = {
::tt::target::ChipCoord(0, 0, 0, 0)};
::flatbuffers::FlatBufferBuilder fbb;

for (const ::ttnn::Device *device : devices) {
Expand Down

0 comments on commit 1bf8d22

Please sign in to comment.