Skip to content

Commit dd0a7b0

Browse files
Apply clang-format to C++ code
Signed-off-by: padg9912 <phone.and.desktop@gmail.com>
1 parent 151ea66 commit dd0a7b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

csrc/quantization/cutlass_w8a8/c3x/scaled_mm_helper.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ void dispatch_scaled_mm(torch::Tensor& c, torch::Tensor const& a,
2626
int8_func(c, a, b, a_scales, b_scales, bias);
2727
} else {
2828
int32_t version_num = get_sm_version_num();
29-
TORCH_CHECK(false,
30-
"Int8 not supported on SM", version_num,
31-
". Use FP8 quantization instead, or run on older arch (SM < 100).");
29+
TORCH_CHECK(
30+
false, "Int8 not supported on SM", version_num,
31+
". Use FP8 quantization instead, or run on older arch (SM < 100).");
3232
}
3333
}
3434
} else {

0 commit comments

Comments
 (0)