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 81f1e9d commit 61661ffCopy full SHA for 61661ff
core/conversion/converters/impl/topk.cpp
@@ -21,7 +21,8 @@ auto topk_registrations TRTORCH_UNUSED = RegisterNodeConversionPatterns().patter
21
auto k = args[1].unwrapToInt();
22
auto dim = args[2].unwrapToInt();
23
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");
+ LOG_DEBUG(
25
+ "Note: sorted argument is not used in TensorRT for aten::topk, results will depend on the value of largest");
26
// auto sorted = args[4].unwrapToBool(); # Currently unused
27
28
auto selfDim = util::toVec(self->getDimensions());
0 commit comments