Skip to content

Commit c56754b

Browse files
authored
Auto-format (#96)
1 parent b9c92c4 commit c56754b

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

src/tensorflow.cc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@
2424
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2525
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2626

27+
#include <atomic>
28+
#include <chrono>
29+
#include <memory>
30+
#include <set>
31+
#include <thread>
32+
#include <unordered_map>
33+
2734
#include "tensorflow_backend_tf.h"
2835
#include "tensorflow_utils.h"
2936
#include "triton/backend/backend_common.h"
@@ -32,13 +39,6 @@
3239
#include "triton/backend/backend_model_instance.h"
3340
#include "triton/backend/backend_output_responder.h"
3441

35-
#include <atomic>
36-
#include <chrono>
37-
#include <memory>
38-
#include <set>
39-
#include <thread>
40-
#include <unordered_map>
41-
4242
#ifdef TRITON_ENABLE_GPU
4343
#include <cuda_runtime_api.h>
4444
#endif // TRITON_ENABLE_GPU
@@ -1925,9 +1925,9 @@ ModelInstanceState::Create(
19251925
}
19261926
}
19271927

1928-
auto model_path =
1929-
JoinPath({model_state->RepositoryPath(),
1930-
std::to_string(model_state->Version()), cc_model_filename});
1928+
auto model_path = JoinPath(
1929+
{model_state->RepositoryPath(), std::to_string(model_state->Version()),
1930+
cc_model_filename});
19311931

19321932
{
19331933
bool exists;

src/tensorflow_backend_tf.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
#include <stddef.h>
2929
#include <stdint.h>
30+
3031
#include <map>
3132
#include <vector>
3233

0 commit comments

Comments
 (0)