Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions ggml/src/ggml-openvino/ggml-decoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -747,10 +747,6 @@ std::vector<std::string> GgmlOvDecoder::get_input_names(int node_idx) const {
return m_node_info_list[node_idx].node_inputs_names;
}

std::vector<size_t> GgmlOvDecoder::get_output_stride(const std::string & name) const {
return get_stride(m_outputs.at(name));
}

ov::PartialShape GgmlOvDecoder::get_output_shape(const std::string & name) const {
auto * ggml_tensor = m_outputs.at(name);
if (ggml_tensor->op == GGML_OP_SET_ROWS) {
Expand Down
2 changes: 0 additions & 2 deletions ggml/src/ggml-openvino/ggml-decoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ class GgmlOvDecoder : public ov::frontend::ggml::GgmlDecoder {

virtual ov::PartialShape get_output_shape(int node_idx, const std::string & name) const override;

virtual std::vector<size_t> get_output_stride(const std::string & name) const override;

virtual ov::element::Type get_output_type(const std::string & name) const override;

virtual int32_t * get_input_op_params(const std::string & name) const override;
Expand Down
2 changes: 0 additions & 2 deletions ggml/src/ggml-openvino/openvino/decoder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ class GgmlDecoder : public DecoderBase {

virtual PartialShape get_output_shape(int node_idx, const std::string& name) const = 0;

virtual std::vector<size_t> get_output_stride(const std::string& name) const = 0;

virtual element::Type get_output_type(const std::string& name) const = 0;

virtual int32_t* get_input_op_params(const std::string& name) const = 0;
Expand Down