From: Luo Xionghu <[email protected]>

should query and use extension info by same API clGetPlatformInfo.

Signed-off-by: Luo Xionghu <[email protected]>
---
 utests/load_program_from_spir.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utests/load_program_from_spir.cpp 
b/utests/load_program_from_spir.cpp
index f03e7c2..8ea1cd4 100644
--- a/utests/load_program_from_spir.cpp
+++ b/utests/load_program_from_spir.cpp
@@ -16,7 +16,7 @@ static void test_load_program_from_spir(void)
     std::string extensionStr;
     OCL_CALL (clGetPlatformInfo, platform, CL_PLATFORM_EXTENSIONS, 0, 0, 
&param_value_size);
     std::vector<char> param_value(param_value_size);
-    OCL_CALL (clGetDeviceInfo, device, CL_DEVICE_EXTENSIONS, param_value_size, 
param_value.empty() ? NULL : &param_value.front(), &param_value_size);
+    OCL_CALL (clGetPlatformInfo, platform, CL_PLATFORM_EXTENSIONS, 
param_value_size, param_value.empty() ? NULL : &param_value.front(), 
&param_value_size);
     if (!param_value.empty())
       extensionStr = std::string(&param_value.front(), param_value_size-1);
 
-- 
1.9.1

_______________________________________________
Beignet mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/beignet

Reply via email to