Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/
Dconv_powervr.h236 int aligned_channels = AlignByN(bias.shape.v, 4 * conv_params_.block_size.w); in UploadBias() local
237 desc.size = float_size * aligned_channels; in UploadBias()
241 for (int i = 0; i < aligned_channels; ++i) { in UploadBias()
246 for (int i = 0; i < aligned_channels; ++i) { in UploadBias()
/external/tensorflow/tensorflow/lite/delegates/gpu/metal/
Dmetal_spatial_tensor.cc385 const int aligned_channels = GetAlignedChannels(); in WriteDataBHWDC() local
387 shape_.b * shape_.w * shape_.h * shape_.d * aligned_channels; in WriteDataBHWDC()
451 const int aligned_channels = GetAlignedChannels(); in ReadDataBHWDC() local
453 shape_.b * shape_.w * shape_.h * shape_.d * aligned_channels; in ReadDataBHWDC()
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/
Dtensor.cc489 const int aligned_channels = GetAlignedChannels(); in WriteDataBHWDC() local
491 shape_.b * shape_.w * shape_.h * shape_.d * aligned_channels; in WriteDataBHWDC()
551 const int aligned_channels = GetAlignedChannels(); in ReadDataBHWDC() local
553 shape_.b * shape_.w * shape_.h * shape_.d * aligned_channels; in ReadDataBHWDC()
/external/tensorflow/tensorflow/lite/delegates/gpu/common/task/
Dtensor_desc.cc905 int aligned_channels = storage_type == TensorStorageType::SINGLE_TEXTURE_2D in UploadData() local
908 int elements_count = shape.b * shape.w * shape.h * shape.d * aligned_channels; in UploadData()