Skip to content

Commit 108bf26

Browse files
committed
Correcting linting error
1 parent 691c29b commit 108bf26

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

py/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ def build_libtorchtrt_pre_cxx11_abi(develop=True, use_dist_dir=True, cxx11_abi=F
145145
cmd.append("--platforms=//toolchains:ci_rhel_x86_64_linux")
146146
print("CI based build")
147147

148+
cmd.append("--jobs=4")
148149
print("building libtorchtrt")
149150
status_code = subprocess.run(cmd).returncode
150151

py/torch_tensorrt/fx/converters/nn_ops_converters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ def tanh(network, submod, args, kwargs, layer_name):
3535
source_ir=SourceIR.NN,
3636
name=layer_name,
3737
input_val=kwargs["input"],
38-
)
38+
)

py/torch_tensorrt/fx/test/converters/aten_op/test_tanh_aten.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ def forward(self, x):
4848

4949

5050
if __name__ == "__main__":
51-
run_tests()
51+
run_tests()

0 commit comments

Comments
 (0)