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; }