From 79bcb0163aa68dc345ab984936eb54a411490f84 Mon Sep 17 00:00:00 2001 From: o2buzzle <76864037+o2buzzle@users.noreply.github.com> Date: Tue, 15 Oct 2024 02:37:15 +0000 Subject: [PATCH] #13738: remove unused template from SimpleShape constructor --- ttnn/cpp/ttnn/tensor/types.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/ttnn/cpp/ttnn/tensor/types.hpp b/ttnn/cpp/ttnn/tensor/types.hpp index 8a54c164d80..cd8735871c9 100644 --- a/ttnn/cpp/ttnn/tensor/types.hpp +++ b/ttnn/cpp/ttnn/tensor/types.hpp @@ -34,7 +34,6 @@ SimpleShape is a temporary measure aimed at making a clear distinction between S **/ class SimpleShape { public: - template explicit SimpleShape(const std::vector& shape) : value(shape) {} explicit SimpleShape(std::vector&& shape) : value(std::move(shape)) {} explicit SimpleShape(std::initializer_list ilist) : value(ilist) {}