Skip to content

Commit

Permalink
Replace Shape with SimpleShape after metal change 452da80
Browse files Browse the repository at this point in the history
  • Loading branch information
brataTT committed Jan 31, 2025
1 parent b159ebc commit f0389ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/lib/ttnn/operations/data_movement/repeat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ void run(const ::tt::target::ttnn::RepeatOp *op, ProgramContext &context) {
DEBUG_ASSERT(in.is_allocated());
const auto *fbShape = op->repeat_dims();
const std::vector<uint32_t> repeatDims(fbShape->begin(), fbShape->end());
::ttnn::Shape repeatDimsShape(repeatDims);
::ttnn::SimpleShape repeatDimsShape(repeatDims);
::ttnn::Tensor out = ::ttnn::repeat(in, repeatDimsShape);
tensorPool.insert_or_assign(op->out()->global_id(), out);
}
Expand Down

0 comments on commit f0389ef

Please sign in to comment.