Skip to content

Commit 8c87601

Browse files
committed
fix after rebase
1 parent f41e309 commit 8c87601

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/plugins/intel_cpu/src/nodes/unique.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -367,16 +367,16 @@ void Unique::slicedTensorExec() {
367367

368368
int *firstPtr = nullptr, *inToOutPtr = nullptr, *occurNPtr = nullptr;
369369
if (definedOutputs[FIRST_UNIQUE_IDX]) {
370-
firstPtr = reinterpret_cast<int*>(getChildEdgesAtPort(FIRST_UNIQUE_IDX)[0]->getMemoryPtr()->GetPtr());
370+
firstPtr = reinterpret_cast<int*>(getChildEdgesAtPort(FIRST_UNIQUE_IDX)[0]->getMemoryPtr()->getData());
371371
}
372372
if (definedOutputs[INPUT_TO_UNIQ_IDX]) {
373-
inToOutPtr = reinterpret_cast<int*>(getChildEdgesAtPort(INPUT_TO_UNIQ_IDX)[0]->getMemoryPtr()->GetPtr());
373+
inToOutPtr = reinterpret_cast<int*>(getChildEdgesAtPort(INPUT_TO_UNIQ_IDX)[0]->getMemoryPtr()->getData());
374374
}
375375
if (definedOutputs[OCCURRENCES_NUM]) {
376-
occurNPtr = reinterpret_cast<int*>(getChildEdgesAtPort(OCCURRENCES_NUM)[0]->getMemoryPtr()->GetPtr());
376+
occurNPtr = reinterpret_cast<int*>(getChildEdgesAtPort(OCCURRENCES_NUM)[0]->getMemoryPtr()->getData());
377377
}
378378

379-
T* dstDataPtr = reinterpret_cast<T*>(getChildEdgesAtPort(UNIQUE_DATA)[0]->getMemoryPtr()->GetPtr());
379+
T* dstDataPtr = reinterpret_cast<T*>(getChildEdgesAtPort(UNIQUE_DATA)[0]->getMemoryPtr()->getData());
380380
const auto dstOuterStep = innerLen * uniqueLen;
381381
// Filling of the first output if needed.
382382
if (sorted || definedOutputs[UNIQUE_DATA]) {

0 commit comments

Comments
 (0)