Skip to content
Snippets Groups Projects
Commit bdaf1e60 authored by Niklas Haas's avatar Niklas Haas
Browse files

tests: blacklist compute shaders on CI's iGPU

Still pending an investigation of _why_ this shader seemingly deadlocks
the GPU. (Driver bugs suspected)
parent a5070631
No related branches found
No related tags found
1 merge request!73CI fixes
Pipeline #9935 passed with stages
in 1 minute and 53 seconds
......@@ -121,6 +121,15 @@ int main()
params.instance = inst->instance;
params.device = devices[i];
params.queue_count = 8; // test inter-queue stuff
if (props.vendorID == 0x8086 &&
props.deviceID == 0x3185 &&
props.driverVersion <= 79695878)
{
// Blacklist compute shaders for the CI's old intel iGPU..
params.blacklist_caps = PL_GPU_CAP_COMPUTE;
}
const struct pl_vulkan *vk = pl_vulkan_create(ctx, &params);
if (!vk)
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment