File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/plugins/intel_cpu/src/nodes Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -367,16 +367,16 @@ void Unique::slicedTensorExec() {
367
367
368
368
int *firstPtr = nullptr , *inToOutPtr = nullptr , *occurNPtr = nullptr ;
369
369
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 ());
371
371
}
372
372
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 ());
374
374
}
375
375
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 ());
377
377
}
378
378
379
- T* dstDataPtr = reinterpret_cast <T*>(getChildEdgesAtPort (UNIQUE_DATA)[0 ]->getMemoryPtr ()->GetPtr ());
379
+ T* dstDataPtr = reinterpret_cast <T*>(getChildEdgesAtPort (UNIQUE_DATA)[0 ]->getMemoryPtr ()->getData ());
380
380
const auto dstOuterStep = innerLen * uniqueLen;
381
381
// Filling of the first output if needed.
382
382
if (sorted || definedOutputs[UNIQUE_DATA]) {
You can’t perform that action at this time.
0 commit comments