For approx 5-10% performance improvement in dota2.
Reviewed-by: Dave Airlie <airlied@redhat.com>
};
enum {
- RADV_PERFTEST_BATCHCHAIN = 0x1,
+ RADV_PERFTEST_NO_BATCHCHAIN = 0x1,
RADV_PERFTEST_SISCHED = 0x2,
};
};
static const struct debug_control radv_perftest_options[] = {
- {"batchchain", RADV_PERFTEST_BATCHCHAIN},
+ {"nobatchchain", RADV_PERFTEST_NO_BATCHCHAIN},
{"sisched", RADV_PERFTEST_SISCHED},
{NULL, 0}
};
if (debug_flags & RADV_DEBUG_NO_IBS)
ws->use_ib_bos = false;
- ws->batchchain = !!(perftest_flags & RADV_PERFTEST_BATCHCHAIN);
+ ws->batchchain = !(perftest_flags & RADV_PERFTEST_NO_BATCHCHAIN);
LIST_INITHEAD(&ws->global_bo_list);
pthread_mutex_init(&ws->global_bo_list_lock, NULL);
ws->base.query_info = radv_amdgpu_winsys_query_info;