Searched refs:gidx (Results 1 – 8 of 8) sorted by relevance
/external/tensorflow/tensorflow/core/kernels/ |
D | concat_lib_gpu_impl.cu.cc | 41 IntType gidx = blockIdx.x * blockDim.x + threadIdx.x; in concat_fixed_kernel() local 43 for (; gidx < total_cols; gidx += blockDim.x * gridDim.x) { in concat_fixed_kernel() 46 IntType split = gidx / split_size; in concat_fixed_kernel() 48 IntType col_offset = gidx % split_size; in concat_fixed_kernel() 51 output[gidy * total_cols + gidx] = in concat_fixed_kernel() 69 IntType gidx = blockIdx.x * blockDim.x + threadIdx.x; in concat_variable_kernel() local 93 gpu_helper::upper_bound<IntType>(col_scan, num_inputs, gidx) - 1; in concat_variable_kernel() 97 for (; gidx < total_cols; gidx += blockDim.x * gridDim.x) { in concat_variable_kernel() 99 while ((curr_col_offset = col_scan[curr_segment + 1]) <= gidx) { in concat_variable_kernel() 104 IntType local_col = gidx - curr_offset; in concat_variable_kernel() [all …]
|
D | split_lib_gpu.cu.cc | 120 IntType gidx = blockIdx.x * blockDim.x + threadIdx.x; in split_v_kernel() local 144 gpu_helper::upper_bound<IntType>(col_scan, num_outputs, gidx) - 1; in split_v_kernel() 148 for (; gidx < total_cols; gidx += blockDim.x * gridDim.x) { in split_v_kernel() 150 while ((curr_col_offset = col_scan[curr_segment + 1]) <= gidx) { in split_v_kernel() 155 IntType local_col = gidx - curr_offset; in split_v_kernel() 162 input_ptr[gidy * total_cols + gidx]; in split_v_kernel()
|
/external/python/cpython2/Lib/plat-os2emx/ |
D | grp.py | 140 gidx = {} 152 if not gidx.has_key(fields[2]): 153 gidx[fields[2]] = record 161 if len(gidx) == 0: 163 return (gidx, namx)
|
/external/deqp/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/compute/undef/ |
D | undefined_constant_composite.amber | 101 %gidx = OpLoad %uint %gidx_ptr 102 %input_value_ptr = OpAccessChain %_ptr_Uniform_int %inputValues %int_0 %gidx 107 %output_value_ptr = OpAccessChain %_ptr_Uniform_int %outputValues %int_0 %gidx
|
D | undefined_spec_constant_composite.amber | 110 %gidx = OpLoad %uint %gidx_ptr 111 %input_value_ptr = OpAccessChain %_ptr_Uniform_int %inputValues %int_0 %gidx 120 %output_value_ptr = OpAccessChain %_ptr_Uniform_int %outputValues %int_0 %gidx
|
/external/freetype/src/autofit/ |
D | afshaper.c | 277 hb_codepoint_t gidx = FT_Get_Char_Index( globals->face, ch ); in af_shaper_get_coverage() local 281 &gidx, 1, 1 ) ) in af_shaper_get_coverage()
|
/external/mesa3d/src/imgui/ |
D | imstb_truetype.h | 1784 stbtt_uint16 flags, gidx; in stbtt__GetGlyphShapeTT() local 1790 gidx = ttSHORT(comp); comp+=2; in stbtt__GetGlyphShapeTT() 1824 comp_num_verts = stbtt_GetGlyphShape(info, gidx, &comp_verts); in stbtt__GetGlyphShapeTT()
|
/external/freetype/ |
D | ChangeLog.21 | 464 s/index/gidx/.
|