Not a native Intel OpenCL runtime
#7
(02-02-2019, 06:24 PM)soxrok2212 Wrote: Have you rebooted after you installed? What does clinfo output?

Hi soxrok2212,
thank you for your help again! Yes, I've rebooted the system. The output of
Code:
clinfo
is appended to this post.
I just have seen, that the appendix isn't posted, so I'll post it here as code:
Code:
Number of platforms                               1
 Platform Name                                   Portable Computing Language
 Platform Vendor                                 The pocl project
 Platform Version                                OpenCL 1.2 pocl 1.2 None+Asserts, LLVM 6.0.1, SLEEF, DISTRO, POCL_DEBUG
 Platform Profile                                FULL_PROFILE
 Platform Extensions                             cl_khr_icd
 Platform Extensions function suffix             POCL

 Platform Name                                   Portable Computing Language
Number of devices                                 1
 Device Name                                     pthread-Intel(R) Core(TM) i7-7700 CPU @ 3.60GHz
 Device Vendor                                   GenuineIntel
 Device Vendor ID                                0x6c636f70
 Device Version                                  OpenCL 1.2 pocl HSTR: pthread-x86_64-pc-linux-gnu-skylake
 Driver Version                                  1.2
 Device OpenCL C Version                         OpenCL C 1.2 pocl
 Device Type                                     CPU
 Device Profile                                  FULL_PROFILE
 Device Available                                Yes
 Compiler Available                              Yes
 Linker Available                                Yes
 Max compute units                               8
 Max clock frequency                             4200MHz
 Device Partition                                (core)
   Max number of sub-devices                     8
   Supported partition types                     equally, by counts
   Supported affinity domains                    (n/a)
 Max work item dimensions                        3
 Max work item sizes                             4096x4096x4096
 Max work group size                             4096
 Preferred work group size multiple              8
 Preferred / native vector sizes                
   char                                                16 / 16      
   short                                               16 / 16      
   int                                                  8 / 8      
   long                                                 4 / 4      
   half                                                 0 / 0        (n/a)
   float                                                8 / 8      
   double                                               4 / 4        (cl_khr_fp64)
 Half-precision Floating-point support           (n/a)
 Single-precision Floating-point support         (core)
   Denormals                                     Yes
   Infinity and NANs                             Yes
   Round to nearest                              Yes
   Round to zero                                 Yes
   Round to infinity                             Yes
   IEEE754-2008 fused multiply-add               Yes
   Support is emulated in software               No
   Correctly-rounded divide and sqrt operations  Yes
 Double-precision Floating-point support         (cl_khr_fp64)
   Denormals                                     Yes
   Infinity and NANs                             Yes
   Round to nearest                              Yes
   Round to zero                                 Yes
   Round to infinity                             Yes
   IEEE754-2008 fused multiply-add               Yes
   Support is emulated in software               No
 Address bits                                    64, Little-Endian
 Global memory size                              31514038272 (29.35GiB)
 Error Correction support                        No
 Max memory allocation                           8589934592 (8GiB)
 Unified memory for Host and Device              Yes
 Minimum alignment for any data type             128 bytes
 Alignment of base address                       1024 bits (128 bytes)
 Global Memory cache type                        Read/Write
 Global Memory cache size                        8388608 (8MiB)
 Global Memory cache line size                   64 bytes
 Image support                                   Yes
   Max number of samplers per kernel             16
   Max size for 1D images from buffer            536870912 pixels
   Max 1D or 2D image array size                 2048 images
   Max 2D image size                             16384x16384 pixels
   Max 3D image size                             2048x2048x2048 pixels
   Max number of read image args                 128
   Max number of write image args                128
 Local memory type                               Global
 Local memory size                               4194304 (4MiB)
 Max number of constant args                     8
 Max constant buffer size                        4194304 (4MiB)
 Max size of kernel argument                     1024
 Queue properties                                
   Out-of-order execution                        No
   Profiling                                     Yes
 Prefer user sync for interop                    Yes
 Profiling timer resolution                      1ns
 Execution capabilities                          
   Run OpenCL kernels                            Yes
   Run native kernels                            Yes
 printf() buffer size                            16777216 (16MiB)
 Built-in kernels                                (n/a)
 Device Extensions                               cl_khr_byte_addressable_store cl_khr_global_int32_base_atomics cl_khr_global_int32_extended_atomics cl_khr_local_int32_base_atomics cl_khr_local_int32_extended_atomics cl_khr_3d_image_writes cl_khr_fp64 cl_khr_int64_base_atomics cl_khr_int64_extended_atomics cl_khr_fp64

NULL platform behavior
 clGetPlatformInfo(NULL, CL_PLATFORM_NAME, ...)  Portable Computing Language
 clGetDeviceIDs(NULL, CL_DEVICE_TYPE_ALL, ...)   Success [POCL]
 clCreateContext(NULL, ...) [default]            Success [POCL]
 clCreateContextFromType(NULL, CL_DEVICE_TYPE_DEFAULT)  Success (1)
   Platform Name                                 Portable Computing Language
   Device Name                                   pthread-Intel(R) Core(TM) i7-7700 CPU @ 3.60GHz
 clCreateContextFromType(NULL, CL_DEVICE_TYPE_CPU)  Success (1)
   Platform Name                                 Portable Computing Language
   Device Name                                   pthread-Intel(R) Core(TM) i7-7700 CPU @ 3.60GHz
 clCreateContextFromType(NULL, CL_DEVICE_TYPE_GPU)  No devices found in platform
 clCreateContextFromType(NULL, CL_DEVICE_TYPE_ACCELERATOR)  No devices found in platform
 clCreateContextFromType(NULL, CL_DEVICE_TYPE_CUSTOM)  No devices found in platform
 clCreateContextFromType(NULL, CL_DEVICE_TYPE_ALL)  Success (1)
   Platform Name                                 Portable Computing Language
   Device Name                                   pthread-Intel(R) Core(TM) i7-7700 CPU @ 3.60GHz

ICD loader properties
 ICD loader Name                                 OpenCL ICD Loader
 ICD loader Vendor                               OCL Icd free software
 ICD loader Version                              2.2.12
 ICD loader Profile                              OpenCL 2.2
Reply


Messages In This Thread
Not a native Intel OpenCL runtime - by Miksch - 02-01-2019, 11:15 AM
RE: Not a native Intel OpenCL runtime - by Miksch - 02-01-2019, 02:00 PM
RE: Not a native Intel OpenCL runtime - by Miksch - 02-02-2019, 03:34 PM
RE: Not a native Intel OpenCL runtime - by Miksch - 02-02-2019, 07:55 PM
RE: Not a native Intel OpenCL runtime - by Miksch - 02-03-2019, 12:53 PM
RE: Not a native Intel OpenCL runtime - by Miksch - 02-03-2019, 03:29 PM
RE: Not a native Intel OpenCL runtime - by Rdgeno - 10-10-2019, 09:01 PM
RE: Not a native Intel OpenCL runtime - by Miksch - 02-03-2019, 04:07 PM