ac,radv: remove has_scheduled_fence_dependency
This isn't used. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34375>
This commit is contained in:
committed by
Marge Bot
parent
d22fe48a58
commit
042770ceea
@@ -1023,7 +1023,6 @@ bool ac_query_gpu_info(int fd, void *dev_p, struct radeon_info *info,
|
||||
* these faults are mitigated in software.
|
||||
*/
|
||||
info->has_sparse_vm_mappings = info->gfx_level >= GFX7;
|
||||
info->has_scheduled_fence_dependency = info->drm_minor >= 28;
|
||||
info->has_gang_submit = info->drm_minor >= 49;
|
||||
info->has_gpuvm_fault_query = info->drm_minor >= 55;
|
||||
info->has_tmz_support = has_tmz_support(dev, info, device_info.ids_flags);
|
||||
@@ -2012,7 +2011,6 @@ void ac_print_gpu_info(const struct radeon_info *info, FILE *f)
|
||||
fprintf(f, " has_eqaa_surface_allocator = %u\n", info->has_eqaa_surface_allocator);
|
||||
fprintf(f, " has_sparse_vm_mappings = %u\n", info->has_sparse_vm_mappings);
|
||||
fprintf(f, " has_stable_pstate = %u\n", info->has_stable_pstate);
|
||||
fprintf(f, " has_scheduled_fence_dependency = %u\n", info->has_scheduled_fence_dependency);
|
||||
fprintf(f, " has_gang_submit = %u\n", info->has_gang_submit);
|
||||
fprintf(f, " has_gpuvm_fault_query = %u\n", info->has_gpuvm_fault_query);
|
||||
fprintf(f, " register_shadowing_required = %u\n", info->register_shadowing_required);
|
||||
|
||||
@@ -234,7 +234,6 @@ struct radeon_info {
|
||||
bool has_bo_metadata;
|
||||
bool has_eqaa_surface_allocator;
|
||||
bool has_sparse_vm_mappings;
|
||||
bool has_scheduled_fence_dependency;
|
||||
bool has_gang_submit;
|
||||
bool has_gpuvm_fault_query;
|
||||
bool has_pcie_bandwidth_info;
|
||||
|
||||
@@ -160,7 +160,6 @@ radv_null_winsys_query_info(struct radeon_winsys *rws, struct radeon_info *gpu_i
|
||||
(gpu_info->family == CHIP_STONEY || gpu_info->family == CHIP_VEGA12 || gpu_info->family == CHIP_RAVEN ||
|
||||
gpu_info->family == CHIP_RAVEN2 || gpu_info->family == CHIP_RENOIR || gpu_info->gfx_level >= GFX10_3);
|
||||
|
||||
gpu_info->has_scheduled_fence_dependency = true;
|
||||
gpu_info->has_gang_submit = true;
|
||||
|
||||
gpu_info->gart_page_size = 4096;
|
||||
|
||||
Reference in New Issue
Block a user