mirror of https://github.com/BOINC/boinc.git
SCHED: Added "intel_gpu" to app_plan_uses_gpu()
This commit is contained in:
parent
05689ae1d1
commit
03e64f720b
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue