Home
last modified time | relevance | path

Searched refs:min_waves (Results 1 – 5 of 5) sorted by relevance

/third_party/mesa3d/src/amd/compiler/
Daco_live_var_analysis.cpp367 program->min_waves = DIV_ROUND_UP(waves_per_workgroup, simd_per_cu_wgp); in calc_min_waves()
410 assert(program->min_waves >= 1); in update_vgpr_sgpr_demand()
411 uint16_t sgpr_limit = get_addr_sgpr_from_waves(program, program->min_waves); in update_vgpr_sgpr_demand()
412 uint16_t vgpr_limit = get_addr_vgpr_from_waves(program, program->min_waves); in update_vgpr_sgpr_demand()
Daco_scheduler.cpp1073 ctx.num_waves = std::max<uint16_t>(ctx.num_waves, program->min_waves); in schedule_program()
Daco_spill.cpp1934 const uint16_t sgpr_limit = get_addr_sgpr_from_waves(program, program->min_waves); in spill()
1935 const uint16_t vgpr_limit = get_addr_vgpr_from_waves(program, program->min_waves); in spill()
Daco_register_allocation.cpp98 sgpr_limit = get_addr_sgpr_from_waves(program, program->min_waves); in ra_ctx()
99 vgpr_limit = get_addr_vgpr_from_waves(program, program->min_waves); in ra_ctx()
Daco_ir.h2104 uint16_t min_waves = 0; variable