Skip to content

Commit 61661ff

Browse files
committed
refactor(aten::topk): apply linting to topk
Signed-off-by: Naren Dasan <[email protected]> Signed-off-by: Naren Dasan <[email protected]>
1 parent 81f1e9d commit 61661ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/conversion/converters/impl/topk.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ auto topk_registrations TRTORCH_UNUSED = RegisterNodeConversionPatterns().patter
2121
auto k = args[1].unwrapToInt();
2222
auto dim = args[2].unwrapToInt();
2323
auto largest = args[3].unwrapToBool();
24-
LOG_DEBUG("Note: sorted argument is not used in TensorRT for aten::topk, results will depend on the value of largest");
24+
LOG_DEBUG(
25+
"Note: sorted argument is not used in TensorRT for aten::topk, results will depend on the value of largest");
2526
// auto sorted = args[4].unwrapToBool(); # Currently unused
2627

2728
auto selfDim = util::toVec(self->getDimensions());

0 commit comments

Comments
 (0)