You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[CPU] Fix load failure when using ov_dir for SDPA models (#29149)
### Details:
- *The process of core.compile_model() for first run(create cache):*
- *plugin.compile_model()*
- *Transformations(m_model) // apply ngraph transformation for m_model*
- *...*
- *compiled_model.export_model()*
- *ModelSerializer.operator<< // serialize the m_model*
- *call `visit_attributes` of each node to save attributes in m_model*
- *...*
- *The process of core.compile_model() for second+ run(load cache):*
- *core.load_model_from_cache()*
- *...*
- *plugin.import_model()*
- *ModelDeserializer.operator>> // deserialize into m_model*
- *call `visit_attributes` of each node to restore attributes in
m_model*
- *...*
- *So `visit_attributes` is needed if op has attributes*
### Tickets:
- *[162979](https://jira.devtools.intel.com/browse/CVS-162979)*
0 commit comments