|
SkePU 0.7
|
00001 00005 #ifndef OPERATOR_TYPE_H 00006 #define OPERATOR_TYPE_H 00007 00008 #ifdef SKEPU_OPENCL 00009 #ifdef USE_MAC_OPENCL 00010 #include <OpenCL/opencl.h> 00011 #else 00012 #include <CL/cl.h> 00013 #endif 00014 #include <string> 00015 #endif 00016 00017 #ifdef SKEPU_CUDA 00018 #include <cuda.h> 00019 #endif 00020 00021 namespace skepu 00022 { 00023 00024 enum FuncType 00025 { 00026 UNARY, 00027 BINARY, 00028 TERNARY, 00029 OVERLAP, 00030 ARRAY, 00031 GENERATE 00032 }; 00033 00034 } 00035 00036 #endif 00037
1.7.4