From 03e64f720bdb8a9d2a9b965d66131515e68f9ae4 Mon Sep 17 00:00:00 2001 From: Eric J Korpela Date: Tue, 25 Jun 2013 19:31:23 -0700 Subject: [PATCH] SCHED: Added "intel_gpu" to app_plan_uses_gpu() --- sched/sched_util.cpp | 3 +++ 1 file changed, 3 insertions(+) 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; }