Home
last modified time | relevance | path

Searched refs:handleNegativeAxis (Results 1 – 12 of 12) sorted by relevance

/frameworks/ml/nn/common/operations/
DChannelShuffle.cpp78 NN_RET_CHECK(handleNegativeAxis(input, &axis)); in prepare()
87 NN_RET_CHECK(handleNegativeAxis(context->getInputShape(kInputTensor), &axis)); in execute()
DExpandDims.cpp28 NN_CHECK(handleNegativeAxis(getNumberOfDimensions(input) + 1, &axis)); in prepare()
DL2Normalization.cpp101 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in l2normFloat32()
130 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in l2normQuant8()
194 NN_RET_CHECK(handleNegativeAxis(context->getInputShape(kInputTensor), &axis)); in execute()
DGather.cpp80 NN_RET_CHECK(handleNegativeAxis(input, &axis)); in prepare()
98 NN_RET_CHECK(handleNegativeAxis(context->getInputShape(kInputTensor), &axis)); in execute()
DArgMinMax.cpp59 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in argMinMaxGeneric()
DSplit.cpp31 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in splitGeneric()
DNormalization.cpp78 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in localResponseNormFloat32()
DSoftmax.cpp77 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in softmaxFloat32()
189 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in softmaxQuant8()
DLogSoftmax.cpp99 NN_RET_CHECK(handleNegativeAxis(context->getInputShape(kInputTensor), &axis)); in execute()
DReduce.cpp116 NN_RET_CHECK(handleNegativeAxis(inputRank, &axis)); in prepare()
/frameworks/ml/nn/common/include/
DOperationsUtils.h157 bool handleNegativeAxis(int32_t numberOfDimensions, int32_t* axis);
159 inline bool handleNegativeAxis(const Shape& shape, int32_t* axis) { in handleNegativeAxis() function
160 return handleNegativeAxis(getNumberOfDimensions(shape), axis); in handleNegativeAxis()
/frameworks/ml/nn/common/
DOperationsUtils.cpp145 bool handleNegativeAxis(int32_t numberOfDimensions, int32_t* axis) { in handleNegativeAxis() function
831 NN_CHECK(handleNegativeAxis(input, &axis)); in argMinMaxPrepare()
850 NN_CHECK(handleNegativeAxis(input, &axis)); in splitPrepare()