File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -642,7 +642,7 @@ struct PyModule final {
642642 at_tensor.dim () == 4 ) {
643643 dim_order = decltype (dim_order)({0 , 2 , 3 , 1 });
644644 } else {
645- auto error_msg = " Input " + std::to_string (i) + " for method " +
645+ auto error_msg = " Input " + std::to_string (i) + " for method " +
646646 method_name + " should be contiguous or channels-last." ;
647647 throw std::runtime_error (error_msg);
648648 }
@@ -992,7 +992,7 @@ struct PyMethod final {
992992 at_tensor.dim () == 4 ) {
993993 dim_order = decltype (dim_order)({0 , 2 , 3 , 1 });
994994 } else {
995- auto error_msg = " Input " + std::to_string (i) + " for method " +
995+ auto error_msg = " Input " + std::to_string (i) + " for method " +
996996 method_->method_meta ().name () +
997997 " should be contiguous or channels-last." ;
998998 throw std::runtime_error (error_msg);
You can’t perform that action at this time.
0 commit comments