Skip to content

Commit

Permalink
fix compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dgomezTT committed Mar 5, 2025
1 parent 7ffffbf commit 95f740c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ttnn/cpp/ttnn/graph/graph_argument_serializer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ std::ostream& operator<<(std::ostream& os, const tt::tt_metal::Layout& layout) {
}
}

std::ostream& operator<<(std::ostream& os, const Tile& config) {
std::ostream& operator<<(std::ostream& os, const tt::tt_metal::Tile& config) {
tt::stl::reflection::operator<<(os, config);
return os;
}

std::ostream& operator<<(std::ostream& os, const Tensor& tensor) {
std::ostream& operator<<(std::ostream& os, const tt::tt_metal::Tensor& tensor) {
tt::stl::reflection::operator<<(os, tensor);
return os;
}
Expand Down
2 changes: 1 addition & 1 deletion ttnn/cpp/ttnn/graph/graph_argument_serializer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include <unordered_map>

namespace ttnn::graph {
std::string graph_demangle(const std::string_view& name);
std::string graph_demangle(const std::string_view name);

class GraphArgumentSerializer {
public:
Expand Down

0 comments on commit 95f740c

Please sign in to comment.