Skip to content

Commit 603d688

Browse files
committed
Format fix
1 parent d548ab2 commit 603d688

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/libtorch.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -476,8 +476,8 @@ ModelState::ParseParameters()
476476
// is made to 'intra_op_thread_count', which by default will take all
477477
// threads
478478
int intra_op_thread_count = -1;
479-
err = ParseParameter(
480-
params, "INTRA_OP_THREAD_COUNT", &intra_op_thread_count);
479+
err =
480+
ParseParameter(params, "INTRA_OP_THREAD_COUNT", &intra_op_thread_count);
481481
if (err != nullptr) {
482482
if (TRITONSERVER_ErrorCode(err) != TRITONSERVER_ERROR_NOT_FOUND) {
483483
return err;
@@ -500,8 +500,8 @@ ModelState::ParseParameters()
500500
// is made to 'inter_op_thread_count', which by default will take all
501501
// threads
502502
int inter_op_thread_count = -1;
503-
err = ParseParameter(
504-
params, "INTER_OP_THREAD_COUNT", &inter_op_thread_count);
503+
err =
504+
ParseParameter(params, "INTER_OP_THREAD_COUNT", &inter_op_thread_count);
505505
if (err != nullptr) {
506506
if (TRITONSERVER_ErrorCode(err) != TRITONSERVER_ERROR_NOT_FOUND) {
507507
return err;

0 commit comments

Comments
 (0)