From 7f1e8806492014d0c7e14cfbef791a67b7cd7549 Mon Sep 17 00:00:00 2001 From: ashari4 <70242157+ashari4@users.noreply.github.com> Date: Tue, 24 Aug 2021 14:48:43 -0700 Subject: [PATCH] Reorder ORT eager headers (#8813) --- orttraining/orttraining/eager/ort_eager.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/orttraining/orttraining/eager/ort_eager.cpp b/orttraining/orttraining/eager/ort_eager.cpp index 0ce4cd27f0..36ebf85ae9 100644 --- a/orttraining/orttraining/eager/ort_eager.cpp +++ b/orttraining/orttraining/eager/ort_eager.cpp @@ -1,17 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. -#include -#include "torch/csrc/autograd/python_variable.h" +#include "python/onnxruntime_pybind_state_common.h" +#include "orttraining/core/framework/torch/dlpack_python.h" +#include #include "ort_backends.h" #include "ort_log.h" #include "ort_aten.h" #include "ort_backends.h" #include "orttraining/core/framework/ortmodule_graph_builder.h" -#include "python/onnxruntime_pybind_state_common.h" -#include "orttraining/core/framework/torch/dlpack_python.h" -#include #include "ort_customops.h" +#include +#include "torch/csrc/autograd/python_variable.h" namespace onnxruntime{ namespace python{