Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/kernels/
Dconv_ops_using_gemm.cc334 for (int64 patch_index = patch_index_start; patch_index < patch_index_end; in operator ()() local
335 ++patch_index) { in operator ()()
336 const int64 batch = patch_index / (output_height * output_width); in operator ()()
337 const int64 out_y = (patch_index / output_width) % output_height; in operator ()()
338 const int64 out_x = patch_index % output_width; in operator ()()
343 const int patch_index_within_chunk = patch_index % patches_per_chunk; in operator ()()
Dquantized_conv_ops.cc300 for (int64 patch_index = patch_index_start; patch_index < patch_index_end; in operator ()() local
301 ++patch_index) { in operator ()()
302 const int64 batch = patch_index / (output_height * output_width); in operator ()()
303 const int64 out_y = (patch_index / output_width) % output_height; in operator ()()
304 const int64 out_x = patch_index % output_width; in operator ()()
309 const int patch_index_within_chunk = patch_index % patches_per_chunk; in operator ()()
Dconv_ops_fused_image_transform.cc544 const int patch_index = (batch * output_width * output_height) + in operator ()() local
546 const int patch_index_within_chunk = patch_index % patches_per_chunk; in operator ()()
590 patch_index - (how_many_patches - 1); in operator ()()
/external/autotest/tko/parsers/
Dversion_1.py229 patch_index = 0
230 while ('patch%d' % patch_index) in fields:
231 patches.append(fields['patch%d' % patch_index])
232 patch_index += 1