Home
last modified time | relevance | path

Searched refs:axisShape (Results 1 – 4 of 4) sorted by relevance

/frameworks/ml/nn/common/operations/
DSimpleMath.cpp34 const Shape& axisShape, bool keepDims, _Float16* outputData, in meanFloat16() argument
41 meanGeneric<float, float>(inputDataFloat32.data(), inputShape, axis, axisShape, keepDims, in meanFloat16()
48 bool meanGeneric(T* inputData, const Shape& inputShape, const int32_t* axis, const Shape& axisShape, in meanGeneric() argument
55 int32_t axisSize = static_cast<int32_t>(getSizeOfDimension(axisShape, 0)); in meanGeneric()
78 const int32_t* axis, const Shape& axisShape, bool keepDims,
81 const int32_t* axis, const Shape& axisShape,
85 const int32_t* axis, const Shape& axisShape,
/frameworks/ml/nn/common/include/
DOperations.h110 const Shape& axisShape, bool keepDims, _Float16* outputData,
113 bool meanGeneric(T* inputData, const Shape& inputShape, const int32_t* axis, const Shape& axisShape,
DOperationsUtils.h328 bool meanPrepare(const Shape& input, const int32_t* axisData, const Shape& axisShape, bool keepDims,
/frameworks/ml/nn/common/
DOperationsUtils.cpp594 bool meanPrepare(const Shape& input, const int32_t* axisData, const Shape& axisShape, bool keepDims, in meanPrepare() argument
597 NN_OPS_CHECK(axisShape.type == OperandType::TENSOR_INT32); in meanPrepare()
598 NN_OPS_CHECK(getNumberOfDimensions(axisShape) == 1); in meanPrepare()
601 int32_t axisSize = static_cast<int32_t>(getSizeOfDimension(axisShape, 0)); in meanPrepare()