Skip to content

Commit b1035c5

Browse files
authored
Merge pull request #996 from NVIDIA/linting
refactor: apply linting
2 parents 22bde26 + 6f41407 commit b1035c5

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)