Skip to content

Commit

Permalink
#13738: remove unused template from SimpleShape constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
o2buzzle committed Oct 15, 2024
1 parent 7b95079 commit 79bcb01
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ttnn/cpp/ttnn/tensor/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ SimpleShape is a temporary measure aimed at making a clear distinction between S
**/
class SimpleShape {
public:
template <typename T>
explicit SimpleShape(const std::vector<uint32_t>& shape) : value(shape) {}
explicit SimpleShape(std::vector<uint32_t>&& shape) : value(std::move(shape)) {}
explicit SimpleShape(std::initializer_list<uint32_t> ilist) : value(ilist) {}
Expand Down

0 comments on commit 79bcb01

Please sign in to comment.