File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -476,8 +476,8 @@ ModelState::ParseParameters()
476
476
// is made to 'intra_op_thread_count', which by default will take all
477
477
// threads
478
478
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);
481
481
if (err != nullptr ) {
482
482
if (TRITONSERVER_ErrorCode (err) != TRITONSERVER_ERROR_NOT_FOUND) {
483
483
return err;
@@ -500,8 +500,8 @@ ModelState::ParseParameters()
500
500
// is made to 'inter_op_thread_count', which by default will take all
501
501
// threads
502
502
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);
505
505
if (err != nullptr ) {
506
506
if (TRITONSERVER_ErrorCode (err) != TRITONSERVER_ERROR_NOT_FOUND) {
507
507
return err;
You can’t perform that action at this time.
0 commit comments