Changes between Version 36 and Version 37 of OpenCL_Memo


Ignore:
Timestamp:
Dec 12, 2011 7:08:34 PM (13 years ago)
Author:
nakasato
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenCL_Memo

    v36 v37  
    77|| with the hint || 333   ||             || 
    88 
    9 This hint amazingly reduces the size of the generated kernel code! Cool.  
     9This hint amazingly reduces the size of the generated kernel code! Cool! 
     10 
     11== How to use "ioc" command equipped with Intel SDK. == 
     12We need to set the environment variable INTELOCLSDKROOT 
     13 
     14{{{ 
     15export INTELOCLSDKROOT=/usr/lib64/OpenCL/vendors/intel   
     16}}} 
     17 
     18To dump the assembly code: 
     19{{{ 
     20ioc -input=kernel_file.cl -asm  
     21}}} 
     22 
     23== Dump IL/ISA with AMD SDK ==  
     24Set the following the environment variable (APP Programming Guide August 2011, section 4.2 (63 page)). 
     25{{{ 
     26export GPU_DUMP_DEVICE_KERNEL=3          
     27}}} 
     28 
    1029 
    1130== SDK and driver ==