Home
last modified time | relevance | path

Searched refs:valuesShape (Results 1 – 3 of 3) sorted by relevance

/frameworks/ml/nn/common/operations/
DTopK_V2.cpp68 const Shape& valuesShape, void* indicesData, const Shape& indicesShape) { in eval() argument
72 reinterpret_cast<_Float16*>(valuesData), valuesShape, in eval()
77 reinterpret_cast<float*>(valuesData), valuesShape, in eval()
82 reinterpret_cast<int32_t*>(valuesData), valuesShape, in eval()
87 reinterpret_cast<uint8_t*>(valuesData), valuesShape, in eval()
DTopK_V2.h29 const Shape& valuesShape, void* indicesData, const Shape& indicesShape);
/frameworks/ml/nn/common/
DCpuExecutor.cpp1719 Shape valuesShape = values.shape(); in executeOperation() local
1723 success = topk_v2::prepare(input.shape(), k, &valuesShape, &indicesShape) && in executeOperation()
1724 setInfoAndAllocateIfNeeded(&values, valuesShape, &result) && in executeOperation()
1726 topk_v2::eval(input.buffer, input.shape(), k, values.buffer, valuesShape, in executeOperation()