From 62dc78ecf3edeb571bbaabada235d066eb2919b2 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Tue, 15 May 2012 17:29:53 +0000 Subject: [PATCH] - Normalize the way E@H returns OpenCL information to the client software. doc/ get_platforms.inc svn path=/trunk/boinc/; revision=25678 --- checkin_notes | 7 +++++++ doc/get_platforms.inc | 7 +++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index 34c00a8947..2eb7e9dbe6 100644 --- a/checkin_notes +++ b/checkin_notes @@ -3862,3 +3862,10 @@ Rom 15 May 2012 openclicon.png lib/ diagnostics.cpp + +Rom 15 May 2012 + - Normalize the way E@H returns OpenCL information to the client + software. + + doc/ + get_platforms.inc diff --git a/doc/get_platforms.inc b/doc/get_platforms.inc index b4296bc7d6..c80bb98bab 100644 --- a/doc/get_platforms.inc +++ b/doc/get_platforms.inc @@ -45,8 +45,11 @@ function friendly_name($p) { function canonical_plan_class($pc) { //if (strstr($pc, "mt")) return "mt"; - if (strstr($pc, "cuda")) return "cuda"; - if (strstr($pc, "ati")) return "ati"; + if (strstr($pc, "atiOpenCL")) return "opencl_ati"; + if (strstr($pc, "nvidiaOpenCL")) return "opencl_nvidia"; + if (strstr($pc, "intelOpenCL")) return "opencl_intel"; + if (strstr($pc, "cuda")) return "cuda"; + if (strstr($pc, "ati")) return "ati"; return null; }