Skip to content

Commit

Permalink
[GPU] Add runtime_skippable to load / store APIs for model-cache (ope…
Browse files Browse the repository at this point in the history
…nvinotoolkit#24128)

### Details:
 - *Add runtime_skippable to load / store APIs for model-cache*

### Tickets:
 - *137650*
  • Loading branch information
ahnyoung-paul authored Apr 19, 2024
1 parent dc8db45 commit 6cc755b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/plugins/intel_gpu/src/graph/program_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -671,6 +671,7 @@ void program_node::save(cldnn::BinaryOutputBuffer& ob) const {
ob << constant;
ob << data_flow;
ob << in_shape_of_subgraph;
ob << runtime_skippable;

ob << output;
ob << user_mark;
Expand Down Expand Up @@ -836,6 +837,7 @@ void program_node::load(cldnn::BinaryInputBuffer& ib) {
ib >> constant;
ib >> data_flow;
ib >> in_shape_of_subgraph;
ib >> runtime_skippable;

ib >> output;
ib >> user_mark;
Expand Down

0 comments on commit 6cc755b

Please sign in to comment.