• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:inputData

40 bool copyData(const void* inputData, const Shape& inputShape, void* outputData,  in copyData()  argument
44 memcpy(outputData, inputData, count); in copyData()
49 bool depthToSpaceGeneric(const T* inputData, const Shape& inputShape, int32_t blockSize, in depthToSpaceGeneric() argument
52 tflite::optimized_ops::DepthToSpace(inputData, convertShapeToDims(inputShape), blockSize, in depthToSpaceGeneric()
56 template bool depthToSpaceGeneric<float>(const float* inputData, const Shape& inputShape,
59 template bool depthToSpaceGeneric<_Float16>(const _Float16* inputData, const Shape& inputShape,
62 template bool depthToSpaceGeneric<uint8_t>(const uint8_t* inputData, const Shape& inputShape,
65 template bool depthToSpaceGeneric<int8_t>(const int8_t* inputData, const Shape& inputShape,
70 bool spaceToDepthGeneric(const T* inputData, const Shape& inputShape, int32_t blockSize, in spaceToDepthGeneric() argument
73 tflite::optimized_ops::SpaceToDepth(inputData, convertShapeToDims(inputShape), blockSize, in spaceToDepthGeneric()
77 template bool spaceToDepthGeneric<float>(const float* inputData, const Shape& inputShape,
80 template bool spaceToDepthGeneric<_Float16>(const _Float16* inputData, const Shape& inputShape,
83 template bool spaceToDepthGeneric<uint8_t>(const uint8_t* inputData, const Shape& inputShape,
86 template bool spaceToDepthGeneric<int8_t>(const int8_t* inputData, const Shape& inputShape,
91 bool padGeneric(const T* inputData, const Shape& inputShape, const int32_t* paddings, T padValue, in padGeneric() argument
157 inputData + tflite::Offset(extInputShape, outB - leftBPadding, in padGeneric()
190 template bool padGeneric<float>(const float* inputData, const Shape& inputShape,
193 template bool padGeneric<_Float16>(const _Float16* inputData, const Shape& inputShape,
196 template bool padGeneric<uint8_t>(const uint8_t* inputData, const Shape& inputShape,
199 template bool padGeneric<int8_t>(const int8_t* inputData, const Shape& inputShape,
204 bool batchToSpaceGeneric(const T* inputData, const Shape& inputShape, const int32_t* blockSize, in batchToSpaceGeneric() argument
210 tflite::optimized_ops::BatchToSpaceND(inputData, convertShapeToDims(inputShape), blockSize, in batchToSpaceGeneric()
215 template bool batchToSpaceGeneric<float>(const float* inputData, const Shape& inputShape,
218 template bool batchToSpaceGeneric<_Float16>(const _Float16* inputData, const Shape& inputShape,
221 template bool batchToSpaceGeneric<uint8_t>(const uint8_t* inputData, const Shape& inputShape,
224 template bool batchToSpaceGeneric<int8_t>(const int8_t* inputData, const Shape& inputShape,
229 bool spaceToBatchGeneric(const T* inputData, const Shape& inputShape, const int32_t* blockSize, in spaceToBatchGeneric() argument
236 {.output_offset = outputShape.offset}, convertShapeToTflshape(inputShape), inputData, in spaceToBatchGeneric()
241 template bool spaceToBatchGeneric<float>(const float* inputData, const Shape& inputShape,
245 template bool spaceToBatchGeneric<_Float16>(const _Float16* inputData, const Shape& inputShape,
249 template bool spaceToBatchGeneric<uint8_t>(const uint8_t* inputData, const Shape& inputShape,
253 template bool spaceToBatchGeneric<int8_t>(const int8_t* inputData, const Shape& inputShape,