From 9fdcd5a4c2def9243bdb80402cbf5d655e77a233 Mon Sep 17 00:00:00 2001 From: Predrag Ilkic <148892209+pilkicTT@users.noreply.github.com> Date: Thu, 8 Aug 2024 17:52:38 +0200 Subject: [PATCH] update tt-mlir version (#50) --- pybuda/csrc/passes/lower_to_mlir.cpp | 4 ++-- third_party/tt-mlir | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pybuda/csrc/passes/lower_to_mlir.cpp b/pybuda/csrc/passes/lower_to_mlir.cpp index 10bb809ec..1dc2fa92b 100644 --- a/pybuda/csrc/passes/lower_to_mlir.cpp +++ b/pybuda/csrc/passes/lower_to_mlir.cpp @@ -204,7 +204,7 @@ class MLIRGenerator ::llvm::ArrayRef<::llvm::StringRef> operation_attributes = TTIROp::getAttributeNames(); for(auto attribute_name: operation_attributes) { - if(attribute_name.equals("operand_constraints")) + if(attribute_name == "operand_constraints") { // Create operation constraint attributes mlir::NamedAttribute operand_constraints_attribute = builder_.getNamedAttr( @@ -212,7 +212,7 @@ class MLIRGenerator builder_.getArrayAttr(get_mlir_operand_constraint_attributes(graph, op_node))); attributes.push_back(operand_constraints_attribute); } - else if(attribute_name.equals(mlir::OpTrait::AttrSizedOperandSegments::getOperandSegmentSizeAttr())) + else if(attribute_name == mlir::OpTrait::AttrSizedOperandSegments::getOperandSegmentSizeAttr()) { // Create operation segment sizes attributes mlir::NamedAttribute operand_segment_sizes_attribute = builder_.getNamedAttr( diff --git a/third_party/tt-mlir b/third_party/tt-mlir index c0bc2692e..3b627dd87 160000 --- a/third_party/tt-mlir +++ b/third_party/tt-mlir @@ -1 +1 @@ -Subproject commit c0bc2692ed47bb7f3f32c95bec048ce1174f131b +Subproject commit 3b627dd87d50b5a8ecef6e85802430376f411a70