Home
last modified time | relevance | path

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

/frameworks/ml/nn/common/operations/
DL2Normalization.cpp141 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in l2normFloat32()
170 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in l2normQuant8()
186 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in l2normQuant8Signed()
261 NN_RET_CHECK(handleNegativeAxis(context->getInputShape(kInputTensor), &axis)); in execute()
DChannelShuffle.cpp89 NN_RET_CHECK(handleNegativeAxis(input, &axis)); in prepare()
98 NN_RET_CHECK(handleNegativeAxis(context->getInputShape(kInputTensor), &axis)); in execute()
DExpandDims.cpp28 NN_CHECK(handleNegativeAxis(getNumberOfDimensions(input) + 1, &axis)); in prepare()
DGather.cpp88 NN_RET_CHECK(handleNegativeAxis(input, &axis)); in prepare()
106 NN_RET_CHECK(handleNegativeAxis(context->getInputShape(kInputTensor), &axis)); in execute()
DArgMinMax.cpp58 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in argMinMaxGeneric()
DLocalResponseNormalization.cpp89 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in localResponseNorm()
126 NN_RET_CHECK(handleNegativeAxis(context->getInputShape(kInputTensor), &axis)); in executeTyped()
DSplit.cpp33 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in splitGeneric()
DLogSoftmax.cpp101 NN_RET_CHECK(handleNegativeAxis(context->getInputShape(kInputTensor), &axis)); in execute()
DSoftmax.cpp85 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in softmaxFloat32()
203 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in softmaxQuant8()
DReduce.cpp140 NN_RET_CHECK(handleNegativeAxis(inputRank, &axis)); in prepare()
/frameworks/ml/nn/common/include/
DOperationsUtils.h158 bool handleNegativeAxis(int32_t numberOfDimensions, int32_t* axis);
160 inline bool handleNegativeAxis(const Shape& shape, int32_t* axis) { in handleNegativeAxis() function
161 return handleNegativeAxis(getNumberOfDimensions(shape), axis); in handleNegativeAxis()
/frameworks/ml/nn/common/
DOperationsUtils.cpp169 bool handleNegativeAxis(int32_t numberOfDimensions, int32_t* axis) { in handleNegativeAxis() function
676 NN_CHECK(handleNegativeAxis(input, &axis)); in argMinMaxPrepare()
697 NN_CHECK(handleNegativeAxis(input, &axis)); in splitPrepare()