Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
alvoron committed Dec 11, 2024
1 parent 859958f commit b027958
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ void Graph::CreatePrimitivesAndExecConstants() const {
node->createPrimitive();
}

if (!node->isConstant()) {
if (!node->isConstant() || !node->isExecutable()) {
continue;
}

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/nodes/paged_attn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ void PagedAttention::execute(dnnl::stream strm) {
VectorDims scoreDims{len};
redefineOutputMemory({outDims, scoreDims});
} else {
redefineOutputMemory(0, outDims);
redefineOutputMemory({outDims, {}});
}

outputs[0] = getDstMemoryAtPort(0);
Expand Down

0 comments on commit b027958

Please sign in to comment.