From 005f9dca9650c048fc960f91c681a32dac1ebcfe Mon Sep 17 00:00:00 2001 From: Ke Zhang Date: Tue, 4 Dec 2018 13:25:39 -0800 Subject: [PATCH] Kezhan/renaming graph_base.h to graph.h (#95) * rename graph.h to graph_viewer.h * rename graph_base.h to graph.h --- include/onnxruntime/core/graph/{graph_base.h => graph.h} | 0 include/onnxruntime/core/graph/graph_viewer.h | 2 +- onnxruntime/core/session/onnxruntime_c_api.cc | 2 +- onnxruntime/python/onnxruntime_pybind_mlvalue.cc | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename include/onnxruntime/core/graph/{graph_base.h => graph.h} (100%) diff --git a/include/onnxruntime/core/graph/graph_base.h b/include/onnxruntime/core/graph/graph.h similarity index 100% rename from include/onnxruntime/core/graph/graph_base.h rename to include/onnxruntime/core/graph/graph.h diff --git a/include/onnxruntime/core/graph/graph_viewer.h b/include/onnxruntime/core/graph/graph_viewer.h index 0549d9542f..b464a3a6aa 100644 --- a/include/onnxruntime/core/graph/graph_viewer.h +++ b/include/onnxruntime/core/graph/graph_viewer.h @@ -3,7 +3,7 @@ #pragma once -#include "core/graph/graph_base.h" +#include "core/graph/graph.h" namespace onnxruntime { class Function; diff --git a/onnxruntime/core/session/onnxruntime_c_api.cc b/onnxruntime/core/session/onnxruntime_c_api.cc index dba6daec10..7f04b0135b 100644 --- a/onnxruntime/core/session/onnxruntime_c_api.cc +++ b/onnxruntime/core/session/onnxruntime_c_api.cc @@ -13,7 +13,7 @@ #include "core/common/logging/logging.h" #include "core/common/logging/sinks/clog_sink.h" #include "core/common/status.h" -#include "core/graph/graph_base.h" +#include "core/graph/graph.h" #include "core/framework/allocator.h" #include "core/framework/tensor.h" #include "core/framework/ml_value.h" diff --git a/onnxruntime/python/onnxruntime_pybind_mlvalue.cc b/onnxruntime/python/onnxruntime_pybind_mlvalue.cc index f3db01441f..1725f9d403 100644 --- a/onnxruntime/python/onnxruntime_pybind_mlvalue.cc +++ b/onnxruntime/python/onnxruntime_pybind_mlvalue.cc @@ -8,7 +8,7 @@ #define PY_ARRAY_UNIQUE_SYMBOL onnxruntime_python_ARRAY_API #include -#include "core/graph/graph_base.h" +#include "core/graph/graph.h" #include "core/framework/tensor_shape.h" #include "core/framework/tensor.h"