Home
last modified time | relevance | path

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

/external/toolchain-utils/llvm_tools/
Dllvm_bisection.py240 index_step = (end - (start + 1)) // (parallel + 1)
241 if not index_step:
242 index_step = 1
244 rev for rev in range(start + 1, end, index_step)
/external/tensorflow/tensorflow/core/kernels/
Dquantized_resize_bilinear_op.cc76 const int index_step, const int resolution, const bool half_pixel_centers) { in BuildLerpCache() argument
86 CHECK(index_step > 0); in BuildLerpCache()
87 if (index_step > 1) { in BuildLerpCache()
89 cache.lower[i] *= index_step; in BuildLerpCache()
90 cache.upper[i] *= index_step; in BuildLerpCache()