Skip to content

Commit eb6cf1a

Browse files
committed
chore: cpp lint
Signed-off-by: Anurag Dixit <[email protected]>
1 parent 6d149bc commit eb6cf1a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

core/lowering/register_trt_placeholder_ops.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ c10::AliasAnalysisKind aliasAnalysisFromSchema() {
1010
RegisterOperators trt_placeholder_ops_reg({
1111
/// Op marks a Tensor to be conveted from an Torch Tensor
1212
/// to a TRT constant Tensor
13-
Operator("trt::const(Tensor val) -> Tensor", [](Stack& stack) { /*noop*/ }, aliasAnalysisFromSchema()),
13+
Operator(
14+
"trt::const(Tensor val) -> Tensor",
15+
[](Stack& stack) { /*noop*/ },
16+
aliasAnalysisFromSchema()),
1417
});
1518

1619
} // namespace jit

0 commit comments

Comments
 (0)