Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
vwellsTT committed Nov 14, 2024
1 parent 1beb01f commit 9ec7a5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/lib/common/system_desc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ static std::unique_ptr<::tt::runtime::SystemDesc> getCurrentSystemDescImpl(
getAllDeviceConnections(devices);
// Store CPUDesc
std::vector<::flatbuffers::Offset<tt::target::CPUDesc>> cpuDescs;
cpuDescs.emplace_back(::tt::target::CPUDesc{::tt::target::CPURole::Host, std::string(TARGET_TRIPLE)});
cpuDescs.emplace_back(::tt::target::CreateCPUDesc(::tt::target::CPURole::Host, std::string(TARGET_TRIPLE)));

// Create SystemDesc
auto systemDesc = ::tt::target::CreateSystemDescDirect(
Expand Down

0 comments on commit 9ec7a5e

Please sign in to comment.