From b25af68f34c0cc46621899be3e04add3a99f292a Mon Sep 17 00:00:00 2001 From: Juan Camilo Vega Date: Tue, 10 Dec 2024 15:14:28 +0000 Subject: [PATCH] #0: small oops --- ttnn/cpp/ttnn/operations/data_movement/view/view.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ttnn/cpp/ttnn/operations/data_movement/view/view.cpp b/ttnn/cpp/ttnn/operations/data_movement/view/view.cpp index bc0686355e3..313c360df1a 100644 --- a/ttnn/cpp/ttnn/operations/data_movement/view/view.cpp +++ b/ttnn/cpp/ttnn/operations/data_movement/view/view.cpp @@ -26,7 +26,7 @@ ttnn::Tensor ViewOperation::invoke(const ttnn::Tensor& tensor, const ttnn::Shape shape.logical_shape().volume() == tensor.get_logical_volume(), "Invalid view, logical volumes are changing from {} to {}", tensor.get_logical_volume(), - shape.logical_shape().volume()) + shape.logical_shape().volume()); TT_FATAL( ttnn::has_storage_type_of(tensor, ttnn::StorageType::DEVICE), "View requires the tensor be stored on device, use reshape instead");