Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef __cmtkDeviceContextCL_h_included_
00032 #define __cmtkDeviceContextCL_h_included_
00033
00034 #include <cmtkconfig.h>
00035
00036 #include <System/cmtkCannotBeCopied.h>
00037
00038 #include <CL/opencl.h>
00039
00040 #include <vector>
00041
00042 namespace
00043 cmtk
00044 {
00045
00048
00053 class DeviceContextCL
00055 : private CannotBeCopied
00056 {
00057 public:
00059 typedef DeviceContextCL Self;
00060
00062 static Self& GetGlobalContext();
00063
00064 private:
00066 cl_context m_Context;
00067
00069 std::vector<cl_device_id> m_DeviceIDs;
00070
00072 DeviceContextCL();
00073
00075 ~DeviceContextCL();
00076 };
00077
00078 DeviceContextCL::GetGlobalContext()
00079 {
00080 static Self globalContext;
00081
00082 return globalContext;
00083 }
00084
00086
00087 }
00088
00089
00090 #endif // #ifndef __cmtkDeviceContextCL_h_included_