Skip to content

Commit

Permalink
Update sparsity_info.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
gkrivor authored May 27, 2024
1 parent 2d34c39 commit d4d406a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,14 @@ class SparsityInfo : public ov::RuntimeAttribute {
}

private:
const uint8_t* m_values; // Sparse values
std::vector<int32_t> m_shape; // Target shape of the tensor
std::vector<int32_t> m_traversal_order; // Sparse tensor traversal order
std::vector<int32_t> m_block_map; // Block map of the tensor
std::vector<uint16_t> m_dim_format; // List of dimension's format
std::vector<SparsityDataDesc> m_data_desc; // Tensor data descriptors
std::vector<uint8_t> m_data; // Dense data
ov::element::Type m_target_type; // Target type
const uint8_t* m_values; // Sparse values
bool m_disabled;

// Unpack sparse tensor and return pointer on unpacked data
Expand Down

0 comments on commit d4d406a

Please sign in to comment.