Go to the documentation of this file.00001
00005 #ifndef OPERATOR_TYPE_H
00006 #define OPERATOR_TYPE_H
00007
00008 #ifdef SKEPU_OPENCL
00009 #include <CL/cl.h>
00010 #include <string>
00011 #endif
00012
00013 #ifdef SKEPU_CUDA
00014 #include <cuda.h>
00015 #endif
00016
00017 namespace skepu
00018 {
00019
00020 enum FuncType
00021 {
00022 UNARY,
00023 BINARY,
00024 TERNARY,
00025 OVERLAP,
00026 ARRAY,
00027 GENERATE
00028 };
00029
00030 }
00031
00032 #endif