r600g/compute: Use %u as the unsigned format
This fixes an issue when running cl-program-bitcoin-phatk piglit test where some of the inputs have negative values Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
This commit is contained in:
committed by
Tom Stellard
parent
2e01b8b440
commit
112c1b14ed
@@ -323,7 +323,7 @@ void evergreen_compute_upload_input(
|
||||
memcpy(kernel_parameters_start, input, shader->input_size);
|
||||
|
||||
for (i = 0; i < (input_size / 4); i++) {
|
||||
COMPUTE_DBG(ctx->screen, "input %i : %i\n", i,
|
||||
COMPUTE_DBG(ctx->screen, "input %i : %u\n", i,
|
||||
((unsigned*)num_work_groups_start)[i]);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user