Commit 998d7c6b authored by fenglei.tian's avatar fenglei.tian

remove unused variable

parent 2e295d27
...@@ -246,7 +246,6 @@ ngraph::runtime::gpu::GPU_ExternalFunction::GPU_ExternalFunction( ...@@ -246,7 +246,6 @@ ngraph::runtime::gpu::GPU_ExternalFunction::GPU_ExternalFunction(
: ngraph::runtime::ExternalFunction(function, release_function) : ngraph::runtime::ExternalFunction(function, release_function)
, m_compiled_function(nullptr) , m_compiled_function(nullptr)
, m_emit_timing(std::getenv("NGRAPH_GPU_EMIT_TIMING") != nullptr) , m_emit_timing(std::getenv("NGRAPH_GPU_EMIT_TIMING") != nullptr)
, m_function_name(function->get_name())
{ {
} }
......
...@@ -82,7 +82,6 @@ namespace ngraph ...@@ -82,7 +82,6 @@ namespace ngraph
std::unique_ptr<codegen::ExecutionEngine> m_execution_engine; std::unique_ptr<codegen::ExecutionEngine> m_execution_engine;
bool m_emit_timing; bool m_emit_timing;
std::unordered_map<std::string, std::string> m_variable_name_map; std::unordered_map<std::string, std::string> m_variable_name_map;
std::string m_function_name;
}; };
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment