Skip to content

Commit

Permalink
#0: Test flipping to_torch to logical
Browse files Browse the repository at this point in the history
  • Loading branch information
TT-BrianLiu committed Feb 18, 2025
1 parent a0ea595 commit 74fa5b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ttnn/cpp/pybind11/pytensor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1475,7 +1475,7 @@ void pytensor_module(py::module& m_tensor) {
py::return_value_policy::reference)
.def(
"to_torch",
[](const Tensor& self) -> py::object { return detail::convert_tt_tensor_to_torch_tensor(self, true); },
[](const Tensor& self) -> py::object { return detail::convert_tt_tensor_to_torch_tensor(self); },
R"doc(
Convert tensor to torch tensor using legacy padded shape.
WARNING: Will be deprecated soon!
Expand Down

0 comments on commit 74fa5b5

Please sign in to comment.