From 603d6887777c01f14a5de27941582142d9679e68 Mon Sep 17 00:00:00 2001
From: tanmayv25 <tanmay2592@gmail.com>
Date: Thu, 18 Apr 2024 14:36:28 -0700
Subject: [PATCH] Format fix

---
 src/libtorch.cc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/libtorch.cc b/src/libtorch.cc
index 8809206..c6d0b5a 100644
--- a/src/libtorch.cc
+++ b/src/libtorch.cc
@@ -476,8 +476,8 @@ ModelState::ParseParameters()
     // is made to 'intra_op_thread_count', which by default will take all
     // threads
     int intra_op_thread_count = -1;
-    err = ParseParameter(
-        params, "INTRA_OP_THREAD_COUNT", &intra_op_thread_count);
+    err =
+        ParseParameter(params, "INTRA_OP_THREAD_COUNT", &intra_op_thread_count);
     if (err != nullptr) {
       if (TRITONSERVER_ErrorCode(err) != TRITONSERVER_ERROR_NOT_FOUND) {
         return err;
@@ -500,8 +500,8 @@ ModelState::ParseParameters()
     // is made to 'inter_op_thread_count', which by default will take all
     // threads
     int inter_op_thread_count = -1;
-    err = ParseParameter(
-        params, "INTER_OP_THREAD_COUNT", &inter_op_thread_count);
+    err =
+        ParseParameter(params, "INTER_OP_THREAD_COUNT", &inter_op_thread_count);
     if (err != nullptr) {
       if (TRITONSERVER_ErrorCode(err) != TRITONSERVER_ERROR_NOT_FOUND) {
         return err;