diff --git a/sched/sched_util.cpp b/sched/sched_util.cpp index 4cf4c18037..ad98e54e1a 100644 --- a/sched/sched_util.cpp +++ b/sched/sched_util.cpp @@ -309,6 +309,9 @@ bool app_plan_uses_gpu(const char* plan_class) { if (strstr(plan_class, "ati")) { return true; } + if (strstr(plan_class, "intel_gpu")) { + return true; + } return false; }