We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7242ff5 commit 5090416Copy full SHA for 5090416
runtime/core/exec_aten/util/test/scalar_type_util_test.cpp
@@ -21,7 +21,8 @@ using exec_aten::ScalarType;
21
TEST(ScalarTypeUtilTest, ToString) {
22
// Some known types.
23
EXPECT_STREQ(torch::executor::toString(ScalarType::Int), "Int");
24
- EXPECT_STREQ(torch::executor::toString(ScalarType::ComplexHalf), "ComplexHalf");
+ EXPECT_STREQ(
25
+ torch::executor::toString(ScalarType::ComplexHalf), "ComplexHalf");
26
27
// Undefined, which is sort of a special case since it's not part of the
28
// iteration macros but is still a part of the enum.
0 commit comments