[Mesa-dev] [PATCH] radv: remove sisched hack for talos

Eric Engestrom eric.engestrom at intel.com
Fri Mar 15 14:10:11 UTC 2019


On Friday, 2019-03-15 21:25:33 +1100, Timothy Arceri wrote:
> This was added in 8a7d4092d260 but no longer seems to have any
> impact on performance.
> ---
>  src/amd/vulkan/radv_device.c | 10 +---------
>  1 file changed, 1 insertion(+), 9 deletions(-)
> 
> diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c
> index 9570c15af02..56421dbc74b 100644
> --- a/src/amd/vulkan/radv_device.c
> +++ b/src/amd/vulkan/radv_device.c
> @@ -499,15 +499,7 @@ radv_handle_per_app_options(struct radv_instance *instance,
>  	if (!name)
>  		return;
>  
> -	if (!strcmp(name, "Talos - Linux - 32bit") ||
> -	    !strcmp(name, "Talos - Linux - 64bit")) {
> -		if (!(instance->debug_flags & RADV_DEBUG_NO_SISCHED)) {

RADV_DEBUG_NO_SISCHED is now unused; remove it at the same time?

> -			/* Force enable LLVM sisched for Talos because it looks
> -			 * safe and it gives few more FPS.
> -			 */
> -			instance->perftest_flags |= RADV_PERFTEST_SISCHED;
> -		}
> -	} else if (!strcmp(name, "DOOM_VFR")) {
> +	if (!strcmp(name, "DOOM_VFR")) {
>  		/* Work around a Doom VFR game bug */
>  		instance->debug_flags |= RADV_DEBUG_NO_DYNAMIC_BOUNDS;
>  	}
> -- 
> 2.20.1
> 
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev


More information about the mesa-dev mailing list