• Home
  • Raw
  • Download

Lines Matching refs:inputData

34 bool copyData(const void* inputData, const Shape& inputShape, void* outputData,  in copyData()  argument
38 memcpy(outputData, inputData, count); in copyData()
43 bool depthToSpaceGeneric(const T* inputData, const Shape& inputShape, int32_t blockSize, in depthToSpaceGeneric() argument
46 tflite::optimized_ops::DepthToSpace(inputData, convertShapeToDims(inputShape), blockSize, in depthToSpaceGeneric()
50 template bool depthToSpaceGeneric<float>(const float* inputData, const Shape& inputShape,
53 template bool depthToSpaceGeneric<_Float16>(const _Float16* inputData, const Shape& inputShape,
56 template bool depthToSpaceGeneric<uint8_t>(const uint8_t* inputData, const Shape& inputShape,
59 template bool depthToSpaceGeneric<int8_t>(const int8_t* inputData, const Shape& inputShape,
64 bool spaceToDepthGeneric(const T* inputData, const Shape& inputShape, int32_t blockSize, in spaceToDepthGeneric() argument
67 tflite::optimized_ops::SpaceToDepth(inputData, convertShapeToDims(inputShape), blockSize, in spaceToDepthGeneric()
71 template bool spaceToDepthGeneric<float>(const float* inputData, const Shape& inputShape,
74 template bool spaceToDepthGeneric<_Float16>(const _Float16* inputData, const Shape& inputShape,
77 template bool spaceToDepthGeneric<uint8_t>(const uint8_t* inputData, const Shape& inputShape,
80 template bool spaceToDepthGeneric<int8_t>(const int8_t* inputData, const Shape& inputShape,
85 bool padGeneric(const T* inputData, const Shape& inputShape, const int32_t* paddings, T padValue, in padGeneric() argument
151 inputData + tflite::Offset(extInputShape, outB - leftBPadding, in padGeneric()
184 template bool padGeneric<float>(const float* inputData, const Shape& inputShape,
187 template bool padGeneric<_Float16>(const _Float16* inputData, const Shape& inputShape,
190 template bool padGeneric<uint8_t>(const uint8_t* inputData, const Shape& inputShape,
193 template bool padGeneric<int8_t>(const int8_t* inputData, const Shape& inputShape,
198 bool batchToSpaceGeneric(const T* inputData, const Shape& inputShape, const int32_t* blockSize, in batchToSpaceGeneric() argument
204 tflite::optimized_ops::BatchToSpaceND(inputData, convertShapeToDims(inputShape), blockSize, in batchToSpaceGeneric()
209 template bool batchToSpaceGeneric<float>(const float* inputData, const Shape& inputShape,
212 template bool batchToSpaceGeneric<_Float16>(const _Float16* inputData, const Shape& inputShape,
215 template bool batchToSpaceGeneric<uint8_t>(const uint8_t* inputData, const Shape& inputShape,
218 template bool batchToSpaceGeneric<int8_t>(const int8_t* inputData, const Shape& inputShape,
223 bool spaceToBatchGeneric(const T* inputData, const Shape& inputShape, const int32_t* blockSize, in spaceToBatchGeneric() argument
230 {.output_offset = outputShape.offset}, convertShapeToTflshape(inputShape), inputData, in spaceToBatchGeneric()
235 template bool spaceToBatchGeneric<float>(const float* inputData, const Shape& inputShape,
239 template bool spaceToBatchGeneric<_Float16>(const _Float16* inputData, const Shape& inputShape,
243 template bool spaceToBatchGeneric<uint8_t>(const uint8_t* inputData, const Shape& inputShape,
247 template bool spaceToBatchGeneric<int8_t>(const int8_t* inputData, const Shape& inputShape,