Searched defs:gidx (Results 1 - 3 of 3) sorted by relevance

/external/freetype/src/autofit/
H A Dafshaper.c278 hb_codepoint_t gidx = FT_Get_Char_Index( globals->face, ch ); local
282 &gidx, 1, 1 ) )
/external/tensorflow/tensorflow/core/kernels/
H A Dconcat_lib_gpu_impl.cu.cc40 IntType gidx = blockIdx.x * blockDim.x + threadIdx.x; local
42 for (; gidx < total_cols; gidx += blockDim.x * gridDim.x) {
45 IntType split = gidx / split_size;
47 IntType col_offset = gidx % split_size;
50 output[gidy * total_cols + gidx] =
68 IntType gidx = blockIdx.x * blockDim.x + threadIdx.x; local
92 cuda_helper::upper_bound<IntType>(col_scan, num_inputs, gidx) - 1;
96 for (; gidx < total_cols; gidx
[all...]
H A Dsplit_lib_gpu.cu.cc118 IntType gidx = blockIdx.x * blockDim.x + threadIdx.x; local
142 cuda_helper::upper_bound<IntType>(col_scan, num_outputs, gidx) - 1;
146 for (; gidx < total_cols; gidx += blockDim.x * gridDim.x) {
148 while ((curr_col_offset = col_scan[curr_segment + 1]) <= gidx) {
153 IntType local_col = gidx - curr_offset;
160 input_ptr[gidy * total_cols + gidx];

Completed in 81 milliseconds