Skip to content
Snippets Groups Projects

Basic support for OpenCL (experimental)

Merged Stephan Seitz requested to merge seitz/pystencils:opencl-backend into master
1 file
+ 16
1
Compare changes
  • Side-by-side
  • Inline
typedef long int int64_t;
#ifndef OPENCL_STDINT
 
#define OPENCL_STDINT
 
 
typedef unsigned int uint;
 
typedef unsigned int uint_t;
 
 
typedef signed char int8_t;
 
typedef signed short int16_t;
 
typedef signed int int32_t;
 
typedef signed long int int64_t;
 
typedef unsigned char uint8_t;
 
typedef unsigned short uint16_t;
 
typedef unsigned int uint32_t;
 
typedef unsigned long int uint64_t;
 
 
#endif
Loading