diff options
author | Dave Airlie <[email protected]> | 2017-12-28 09:49:32 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-12-28 19:30:16 +1000 |
commit | ff75d3a9aa7e94e2e09b6121d5a0e78c730a1d82 (patch) | |
tree | 3bbaba5d7aea673ea9acc625f56b9b93a5493bab /src/amd/vulkan/radv_device.c | |
parent | 78a8b73e7d45f55ced98a148b26247d91f4e0171 (diff) |
radv: move local bos usage to a perftest flag.
These seem mildly unstable on vega, crashing CTS in various fun ways,
and looks like leaking memory.
Disable for now, but leave the option to enable them.
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_device.c')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 788252c2c56..2a249b95e28 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -343,6 +343,7 @@ radv_get_debug_option_name(int id) static const struct debug_control radv_perftest_options[] = { {"nobatchchain", RADV_PERFTEST_NO_BATCHCHAIN}, {"sisched", RADV_PERFTEST_SISCHED}, + {"localbos", RADV_PERFTEST_LOCAL_BOS}, {NULL, 0} }; |