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
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ class OPENVINO_API WeightlessCacheAttribute : public RuntimeAttribute {

bool is_copyable() const override;

bool visit_attributes(AttributeVisitor& visitor) override;

size_t original_size;
size_t bin_offset;
ov::element::Type original_dtype;
Expand Down
7 changes: 0 additions & 7 deletions src/core/src/op/util/weightless_caching_attributes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@ bool ov::WeightlessCacheAttribute::is_copyable() const {
return false;
}

bool ov::WeightlessCacheAttribute::visit_attributes(AttributeVisitor& visitor) {
visitor.on_attribute("original_dtype", original_dtype);
visitor.on_attribute("bin_offset", bin_offset);
visitor.on_attribute("original_size", original_size);
return true;
}

OPENVINO_API void ov::copy_weightless_cache_attr(const std::shared_ptr<ov::Node>& from,
const std::shared_ptr<ov::Node>& to) {
const auto& rt_info = from->get_rt_info();
Expand Down
Loading