Home
last modified time | relevance | path

Searched refs:patch_height (Results 1 – 2 of 2) sorted by relevance

/external/ComputeLibrary/tests/validation/reference/
DDepthwiseConvolutionLayer.cpp74 const float patch_height = (filter_height + (dilation.y() - 1) * (filter_height - 1)); in depthwise_convolution_fp() local
77 const int patch_half_height_floor = patch_height / 2; in depthwise_convolution_fp()
80 const auto patch_half_height_ceil = static_cast<int>(std::ceil(patch_height / 2)); in depthwise_convolution_fp()
167 const float patch_height = (filter_height + (dilation.y() - 1) * (filter_height - 1)); in depthwise_convolution_quantized() local
170 const int patch_half_height_floor = patch_height / 2; in depthwise_convolution_quantized()
173 const auto patch_half_height_ceil = static_cast<int>(std::ceil(patch_height / 2)); in depthwise_convolution_quantized()
/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dimage_utils.h202 const int patch_height = patch_image->GetHeight(); in CopyArea() local
207 const float y_dist_between_samples = patch_height > 0 ? in CopyArea()
208 area_to_copy.GetHeight() / (patch_height - 1) : 0; in CopyArea()
210 for (int y_index = 0; y_index < patch_height; ++y_index) { in CopyArea()