Removed API m_outputs

This commit is contained in:
Xuejun Zhai 2025-12-03 23:25:55 -08:00 committed by Mustafa Cavus
parent 111c96c266
commit 8ff73e5d53
2 changed files with 0 additions and 3 deletions

View File

@ -134,8 +134,6 @@ void GgmlOvDecoder::set_input_output(ggml_tensor * node, bool naive) {
node_output = node->view_src;
}
m_outputs[node_output_name] = node_output;
current_node_info.node = node;
current_node_info.node_name = node_name;
current_node_info.node_output = node_output;

View File

@ -230,7 +230,6 @@ private:
std::vector<ggml_tensor *> m_nodes;
std::map<std::string, ggml_tensor *> m_inputs;
std::vector<std::string> m_input_names;
std::map<std::string, ggml_tensor *> m_outputs;
std::vector<std::string> m_output_names;
std::map<std::string, std::shared_ptr<ov::Node>> m_model_inputs;