radv: print some information when RADV_TRACE_FILE is set
Just to be sure all options are enabled when trying to generate a hang report. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
@@ -593,7 +593,7 @@ radv_dump_dmesg(FILE *f)
|
||||
pclose(p);
|
||||
}
|
||||
|
||||
static void
|
||||
void
|
||||
radv_dump_enabled_options(struct radv_device *device, FILE *f)
|
||||
{
|
||||
uint64_t mask;
|
||||
|
@@ -61,4 +61,7 @@ radv_check_gpu_hangs(struct radv_queue *queue, struct radeon_winsys_cs *cs);
|
||||
void
|
||||
radv_print_spirv(uint32_t *data, uint32_t size, FILE *fp);
|
||||
|
||||
void
|
||||
radv_dump_enabled_options(struct radv_device *device, FILE *f);
|
||||
|
||||
#endif
|
||||
|
@@ -1322,10 +1322,15 @@ VkResult radv_CreateDevice(
|
||||
device->physical_device->rad_info.max_se >= 2;
|
||||
|
||||
if (getenv("RADV_TRACE_FILE")) {
|
||||
const char *filename = getenv("RADV_TRACE_FILE");
|
||||
|
||||
keep_shader_info = true;
|
||||
|
||||
if (!radv_init_trace(device))
|
||||
goto fail;
|
||||
|
||||
fprintf(stderr, "Trace file will be dumped to %s\n", filename);
|
||||
radv_dump_enabled_options(device, stderr);
|
||||
}
|
||||
|
||||
device->keep_shader_info = keep_shader_info;
|
||||
|
Reference in New Issue
Block a user