Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/common/operations/
DL2Normalization.cpp142 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in l2normFloat32()
171 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in l2normQuant8()
187 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in l2normQuant8Signed()
266 NN_RET_CHECK(handleNegativeAxis(context->getInputShape(kInputTensor), &axis)); in execute()
DChannelShuffle.cpp86 NN_RET_CHECK(handleNegativeAxis(input, &axis)); in prepare()
95 NN_RET_CHECK(handleNegativeAxis(context->getInputShape(kInputTensor), &axis)); in execute()
DGather.cpp85 NN_RET_CHECK(handleNegativeAxis(input, &axis)); in prepare()
103 NN_RET_CHECK(handleNegativeAxis(context->getInputShape(kInputTensor), &axis)); in execute()
DLocalResponseNormalization.cpp90 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in localResponseNorm()
128 NN_RET_CHECK(handleNegativeAxis(context->getInputShape(kInputTensor), &axis)); in executeTyped()
DExpandDims.cpp28 NN_CHECK(handleNegativeAxis(getNumberOfDimensions(input) + 1, &axis)); in prepare()
DSoftmax.cpp88 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in softmaxFloat32()
206 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in softmaxQuant8()
DArgMinMax.cpp54 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in argMinMaxGeneric()
DSplit.cpp32 NN_CHECK(handleNegativeAxis(inputShape, &axis)); in splitGeneric()
DLogSoftmax.cpp99 NN_RET_CHECK(handleNegativeAxis(context->getInputShape(kInputTensor), &axis)); in execute()
DReduce.cpp142 NN_RET_CHECK(handleNegativeAxis(inputRank, &axis)); in prepare()
/packages/modules/NeuralNetworks/common/include/
DOperationsUtils.h142 bool handleNegativeAxis(int32_t numberOfDimensions, int32_t* axis);
144 inline bool handleNegativeAxis(const Shape& shape, int32_t* axis) { in handleNegativeAxis() function
145 return handleNegativeAxis(getNumberOfDimensions(shape), axis); in handleNegativeAxis()
/packages/modules/NeuralNetworks/common/
DOperationsUtils.cpp167 bool handleNegativeAxis(int32_t numberOfDimensions, int32_t* axis) { in handleNegativeAxis() function
670 NN_CHECK(handleNegativeAxis(input, &axis)); in argMinMaxPrepare()
691 NN_CHECK(handleNegativeAxis(input, &axis)); in splitPrepare()