Skip to content

Commit

Permalink
Another clang tidy move suggestion
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
jaykru-tt and github-actions[bot] committed Nov 28, 2024
1 parent 52e1c9f commit 3c434b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ttnn/cpp/ttnn/operations/data_movement/tilize/tilize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ MassagedTilize build_ndiml_tilize(BaseTilizeType base_tilize) {
auto unsqueezed_tensor = ttnn::reshape(output, *original_shape);
return unsqueezed_tensor;
},
.operation = base_tilize});
.operation = std::move(base_tilize)});
}

ttnn::Tensor ExecuteTilize::invoke(
Expand Down

0 comments on commit 3c434b9

Please sign in to comment.