Searched refs:tiles_x (Results 1 – 10 of 10) sorted by relevance
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_linear.c | 49 for (x = 0; x < t->tiles_x; x++) { in pipe_linear_to_tile() 71 for (x = 0; x < t->tiles_x; x++) { in pipe_linear_from_tile() 87 unsigned tiles_x, unsigned tiles_y) in pipe_linear_fill_info() argument 97 t->tiles_x = tiles_x; in pipe_linear_fill_info() 99 t->stride = t->cols * t->tiles_x * t->block.size; in pipe_linear_fill_info() 100 t->size = t->tiles_x * t->tiles_y * t->tile.size; in pipe_linear_fill_info()
|
D | u_linear.h | 58 unsigned tiles_x; member 90 unsigned tiles_x, unsigned tiles_y); 97 if (t->stride != t->block.size * t->cols * t->tiles_x) in pipe_linear_check_tile()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/ |
D | winograd.cc | 194 int tiles_x = DivideRoundUp(new_width, 4); in GetGridSize() local 196 return int3(tiles_x, tiles_y, src_[0]->Slices()); in GetGridSize() 204 int tiles_x = DivideRoundUp(new_width, 4); in BindArguments() local 206 RETURN_IF_ERROR(args->SetInt("tiles_x", tiles_x)); in BindArguments() 448 const int tiles_x = DivideRoundUp( in BindArguments() local 452 const int tiles_total = tiles_x * tiles_y; in BindArguments() 456 RETURN_IF_ERROR(args->SetInt("tiles_x", tiles_x)); in BindArguments() 667 const int tiles_x = DivideRoundUp(dst_[0]->Width(), 4); in BindArguments() local 668 RETURN_IF_ERROR(args->SetInt("tiles_x", tiles_x)); in BindArguments() 673 const int tiles_x = DivideRoundUp(dst_[0]->Width(), 4); in GetGridSize() local [all …]
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_scene.h | 186 unsigned tiles_x, tiles_y; member 324 assert(x < scene->tiles_x); in lp_scene_bin_command() 379 for (i = 0; i < scene->tiles_x; i++) { in lp_scene_bin_everywhere() 393 return scene->tiles_x * scene->tiles_y; in lp_scene_get_num_bins()
|
D | lp_rast_debug.c | 353 for (x = 0; x < scene->tiles_x; x++) in lp_debug_draw_bins_by_coverage() 358 for (x = 0; x < scene->tiles_x; x++) { in lp_debug_draw_bins_by_coverage() 387 for (x = 0; x < scene->tiles_x; x++) in lp_debug_draw_bins_by_coverage() 414 for (x = 0; x < scene->tiles_x; x++) { in lp_debug_draw_bins_by_cmd_length() 431 for (x = 0; x < scene->tiles_x; x++) { in lp_debug_bins()
|
D | lp_scene.c | 120 for (x = 0; x < scene->tiles_x; x++) { in lp_scene_is_empty() 255 for (i = 0; i < scene->tiles_x; i++) { in lp_scene_end_rasterization() 538 if (scene->curr_x >= scene->tiles_x) { in next_bin() 601 scene->tiles_x = align(fb->width, TILE_SIZE) / TILE_SIZE; in lp_scene_begin_binning() 603 assert(scene->tiles_x <= TILES_X); in lp_scene_begin_binning()
|
D | lp_rast_priv.h | 158 assert(x < task->scene->tiles_x * TILE_SIZE); in lp_rast_get_color_block_pointer() 198 assert(x < task->scene->tiles_x * TILE_SIZE); in lp_rast_get_depth_block_pointer()
|
D | lp_rast.c | 439 assert(x < scene->tiles_x * TILE_SIZE); in lp_rast_shade_quads_mask_sample()
|
D | lp_setup.c | 1577 !(setup->scene->tiles_x | setup->scene->tiles_y)) { in lp_setup_end_query()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/selectors/ |
D | operation_selector.cc | 46 const int tiles_x = DivideRoundUp(dst_shape.w, 4); in IsRecommendedForWinograd4x4To6x6() local 48 const int total_tiles = tiles_x * tiles_y; in IsRecommendedForWinograd4x4To6x6() 93 const int tiles_x = DivideRoundUp(output_shape.w, 4); in WinogradFromNode() local 95 const BHWC shape_0{input_shape.b, 36, tiles_x * tiles_y, input_shape.c}; in WinogradFromNode() 96 const BHWC shape_1{input_shape.b, 36, tiles_x * tiles_y, output_shape.c}; in WinogradFromNode()
|