Welcome to mirror list, hosted at ThFree Co, Russian Federation.

device_opencl.h « opencl « device « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a65e764b0d41cef8b9cbbb555583e5463ed902fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
/*
 * Copyright 2011-2013 Blender Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifdef WITH_OPENCL

#  include "device/device.h"
#  include "device/device_denoising.h"
#  include "device/device_split_kernel.h"

#  include "util/util_map.h"
#  include "util/util_param.h"
#  include "util/util_string.h"
#  include "util/util_task.h"

#  include "clew.h"

#  include "device/opencl/memory_manager.h"

CCL_NAMESPACE_BEGIN

/* Disable workarounds, seems to be working fine on latest drivers. */
#  define CYCLES_DISABLE_DRIVER_WORKAROUNDS

/* Define CYCLES_DISABLE_DRIVER_WORKAROUNDS to disable workarounds for testing. */
#  ifndef CYCLES_DISABLE_DRIVER_WORKAROUNDS
/* Work around AMD driver hangs by ensuring each command is finished before doing anything else. */
#    undef clEnqueueNDRangeKernel
#    define clEnqueueNDRangeKernel(a, b, c, d, e, f, g, h, i) \
      CLEW_GET_FUN(__clewEnqueueNDRangeKernel)(a, b, c, d, e, f, g, h, i); \
      clFinish(a);

#    undef clEnqueueWriteBuffer
#    define clEnqueueWriteBuffer(a, b, c, d, e, f, g, h, i) \
      CLEW_GET_FUN(__clewEnqueueWriteBuffer)(a, b, c, d, e, f, g, h, i); \
      clFinish(a);

#    undef clEnqueueReadBuffer
#    define clEnqueueReadBuffer(a, b, c, d, e, f, g, h, i) \
      CLEW_GET_FUN(__clewEnqueueReadBuffer)(a, b, c, d, e, f, g, h, i); \
      clFinish(a);
#  endif /* CYCLES_DISABLE_DRIVER_WORKAROUNDS */

#  define CL_MEM_PTR(p) ((cl_mem)(uintptr_t)(p))

struct OpenCLPlatformDevice {
  OpenCLPlatformDevice(cl_platform_id platform_id,
                       const string &platform_name,
                       cl_device_id device_id,
                       cl_device_type device_type,
                       const string &device_name,
                       const string &hardware_id,
                       const string &device_extensions)
      : platform_id(platform_id),
        platform_name(platform_name),
        device_id(device_id),
        device_type(device_type),
        device_name(device_name),
        hardware_id(hardware_id),
        device_extensions(device_extensions)
  {
  }
  cl_platform_id platform_id;
  string platform_name;
  cl_device_id device_id;
  cl_device_type device_type;
  string device_name;
  string hardware_id;
  string device_extensions;
};

/* Contains all static OpenCL helper functions. */
class OpenCLInfo {
 public:
  static cl_device_type device_type();
  static bool use_debug();
  static bool device_supported(const string &platform_name, const cl_device_id device_id);
  static bool platform_version_check(cl_platform_id platform, string *error = NULL);
  static bool device_version_check(cl_device_id device, string *error = NULL);
  static bool get_device_version(cl_device_id device,
                                 int *r_major,
                                 int *r_minor,
                                 string *error = NULL);
  static string get_hardware_id(const string &platform_name, cl_device_id device_id);
  static void get_usable_devices(vector<OpenCLPlatformDevice> *usable_devices);

  /* ** Some handy shortcuts to low level cl*GetInfo() functions. ** */

  /* Platform information. */
  static bool get_num_platforms(cl_uint *num_platforms, cl_int *error = NULL);
  static cl_uint get_num_platforms();

  static bool get_platforms(vector<cl_platform_id> *platform_ids, cl_int *error = NULL);
  static vector<cl_platform_id> get_platforms();

  static bool get_platform_name(cl_platform_id platform_id, string *platform_name);
  static string get_platform_name(cl_platform_id platform_id);

  static bool get_num_platform_devices(cl_platform_id platform_id,
                                       cl_device_type device_type,
                                       cl_uint *num_devices,
                                       cl_int *error = NULL);
  static cl_uint get_num_platform_devices(cl_platform_id platform_id, cl_device_type device_type);

  static bool get_platform_devices(cl_platform_id platform_id,
                                   cl_device_type device_type,
                                   vector<cl_device_id> *device_ids,
                                   cl_int *error = NULL);
  static vector<cl_device_id> get_platform_devices(cl_platform_id platform_id,
                                                   cl_device_type device_type);

  /* Device information. */
  static bool get_device_name(cl_device_id device_id, string *device_name, cl_int *error = NULL);

  static string get_device_name(cl_device_id device_id);

  static bool get_device_extensions(cl_device_id device_id,
                                    string *device_extensions,
                                    cl_int *error = NULL);

  static string get_device_extensions(cl_device_id device_id);

  static bool get_device_type(cl_device_id device_id,
                              cl_device_type *device_type,
                              cl_int *error = NULL);
  static cl_device_type get_device_type(cl_device_id device_id);

  static bool get_driver_version(cl_device_id device_id,
                                 int *major,
                                 int *minor,
                                 cl_int *error = NULL);

  static int mem_sub_ptr_alignment(cl_device_id device_id);

  /* Get somewhat more readable device name.
   * Main difference is AMD OpenCL here which only gives code name
   * for the regular device name. This will give more sane device
   * name using some extensions.
   */
  static string get_readable_device_name(cl_device_id device_id);
};

/* Thread safe cache for contexts and programs.
 */
class OpenCLCache {
  struct Slot {
    struct ProgramEntry {
      ProgramEntry();
      ProgramEntry(const ProgramEntry &rhs);
      ~ProgramEntry();
      cl_program program;
      thread_mutex *mutex;
    };

    Slot();
    Slot(const Slot &rhs);
    ~Slot();

    thread_mutex *context_mutex;
    cl_context context;
    typedef map<ustring, ProgramEntry> EntryMap;
    EntryMap programs;
  };

  /* key is combination of platform ID and device ID */
  typedef pair<cl_platform_id, cl_device_id> PlatformDevicePair;

  /* map of Slot objects */
  typedef map<PlatformDevicePair, Slot> CacheMap;
  CacheMap cache;

  /* MD5 hash of the kernel source. */
  string kernel_md5;

  thread_mutex cache_lock;
  thread_mutex kernel_md5_lock;

  /* lazy instantiate */
  static OpenCLCache &global_instance();

 public:
  enum ProgramName {
    OCL_DEV_BASE_PROGRAM,
    OCL_DEV_MEGAKERNEL_PROGRAM,
  };

  /* Lookup context in the cache. If this returns NULL, slot_locker
   * will be holding a lock for the cache. slot_locker should refer to a
   * default constructed thread_scoped_lock. */
  static cl_context get_context(cl_platform_id platform,
                                cl_device_id device,
                                thread_scoped_lock &slot_locker);
  /* Same as above. */
  static cl_program get_program(cl_platform_id platform,
                                cl_device_id device,
                                ustring key,
                                thread_scoped_lock &slot_locker);

  /* Store context in the cache. You MUST have tried to get the item before storing to it. */
  static void store_context(cl_platform_id platform,
                            cl_device_id device,
                            cl_context context,
                            thread_scoped_lock &slot_locker);
  /* Same as above. */
  static void store_program(cl_platform_id platform,
                            cl_device_id device,
                            cl_program program,
                            ustring key,
                            thread_scoped_lock &slot_locker);

  static string get_kernel_md5();
};

#  define opencl_device_assert(device, stmt) \
    { \
      cl_int err = stmt; \
\
      if (err != CL_SUCCESS) { \
        string message = string_printf( \
            "OpenCL error: %s in %s (%s:%d)", clewErrorString(err), #stmt, __FILE__, __LINE__); \
        if ((device)->error_message() == "") { \
          (device)->set_error(message); \
        } \
        fprintf(stderr, "%s\n", message.c_str()); \
      } \
    } \
    (void)0

#  define opencl_assert(stmt) \
    { \
      cl_int err = stmt; \
\
      if (err != CL_SUCCESS) { \
        string message = string_printf( \
            "OpenCL error: %s in %s (%s:%d)", clewErrorString(err), #stmt, __FILE__, __LINE__); \
        if (error_msg == "") { \
          error_msg = message; \
        } \
        fprintf(stderr, "%s\n", message.c_str()); \
      } \
    } \
    (void)0

class OpenCLDevice : public Device {
 public:
  DedicatedTaskPool task_pool;

  /* Task pool for required kernels (base, AO kernels during foreground rendering) */
  TaskPool load_required_kernel_task_pool;
  /* Task pool for optional kernels (feature kernels during foreground rendering) */
  TaskPool load_kernel_task_pool;
  std::atomic<int> load_kernel_num_compiling;

  cl_context cxContext;
  cl_command_queue cqCommandQueue;
  cl_platform_id cpPlatform;
  cl_device_id cdDevice;
  cl_int ciErr;
  int device_num;

  class OpenCLProgram {
   public:
    OpenCLProgram() : loaded(false), needs_compiling(true), program(NULL), device(NULL)
    {
    }
    OpenCLProgram(OpenCLDevice *device,
                  const string &program_name,
                  const string &kernel_name,
                  const string &kernel_build_options,
                  bool use_stdout = true);
    ~OpenCLProgram();

    void add_kernel(ustring name);

    /* Try to load the program from device cache or disk */
    bool load();
    /* Compile the kernel (first separate, fail-back to local). */
    void compile();
    /* Create the OpenCL kernels after loading or compiling */
    void create_kernels();

    bool is_loaded() const
    {
      return loaded;
    }
    const string &get_log() const
    {
      return log;
    }
    void report_error();

    /* Wait until this kernel is available to be used
     * It will return true when the kernel is available.
     * It will return false when the kernel is not available
     * or could not be loaded. */
    bool wait_for_availability();

    cl_kernel operator()();
    cl_kernel operator()(ustring name);

    void release();

   private:
    bool build_kernel(const string *debug_src);
    /* Build the program by calling the own process.
     * This is required for multithreaded OpenCL compilation, since most Frameworks serialize
     * build calls internally if they come from the same process.
     * If that is not supported, this function just returns false.
     */
    bool compile_separate(const string &clbin);
    /* Build the program by calling OpenCL directly. */
    bool compile_kernel(const string *debug_src);
    /* Loading and saving the program from/to disk. */
    bool load_binary(const string &clbin, const string *debug_src = NULL);
    bool save_binary(const string &clbin);

    void add_log(const string &msg, bool is_debug);
    void add_error(const string &msg);

    bool loaded;
    bool needs_compiling;

    cl_program program;
    OpenCLDevice *device;

    /* Used for the OpenCLCache key. */
    string program_name;

    string kernel_file, kernel_build_options, device_md5;

    bool use_stdout;
    string log, error_msg;
    string compile_output;

    map<ustring, cl_kernel> kernels;
  };

  /* Container for all types of split programs. */
  class OpenCLSplitPrograms {
   public:
    OpenCLDevice *device;
    OpenCLProgram program_split;
    OpenCLProgram program_lamp_emission;
    OpenCLProgram program_do_volume;
    OpenCLProgram program_indirect_background;
    OpenCLProgram program_shader_eval;
    OpenCLProgram program_holdout_emission_blurring_pathtermination_ao;
    OpenCLProgram program_subsurface_scatter;
    OpenCLProgram program_direct_lighting;
    OpenCLProgram program_shadow_blocked_ao;
    OpenCLProgram program_shadow_blocked_dl;

    OpenCLSplitPrograms(OpenCLDevice *device);
    ~OpenCLSplitPrograms();

    /* Load the kernels and put the created kernels in the given
     * `programs` parameter. */
    void load_kernels(vector<OpenCLProgram *> &programs,
                      const DeviceRequestedFeatures &requested_features);
  };

  DeviceSplitKernel *split_kernel;

  OpenCLProgram base_program;
  OpenCLProgram bake_program;
  OpenCLProgram displace_program;
  OpenCLProgram background_program;
  OpenCLProgram denoising_program;

  OpenCLSplitPrograms kernel_programs;

  typedef map<string, device_vector<uchar> *> ConstMemMap;
  typedef map<string, device_ptr> MemMap;

  ConstMemMap const_mem_map;
  MemMap mem_map;

  bool device_initialized;
  string platform_name;
  string device_name;

  bool opencl_error(cl_int err);
  void opencl_error(const string &message);
  void opencl_assert_err(cl_int err, const char *where);

  OpenCLDevice(DeviceInfo &info, Stats &stats, Profiler &profiler, bool background);
  ~OpenCLDevice();

  static void CL_CALLBACK context_notify_callback(const char *err_info,
                                                  const void * /*private_info*/,
                                                  size_t /*cb*/,
                                                  void *user_data);

  bool opencl_version_check();
  OpenCLSplitPrograms *get_split_programs();

  string device_md5_hash(string kernel_custom_build_options = "");
  bool load_kernels(const DeviceRequestedFeatures &requested_features);
  void load_required_kernels(const DeviceRequestedFeatures &requested_features);

  bool wait_for_availability(const DeviceRequestedFeatures &requested_features);
  DeviceKernelStatus get_active_kernel_switch_state();

  /* Get the name of the opencl program for the given kernel */
  const string get_opencl_program_name(const string &kernel_name);
  /* Get the program file name to compile (*.cl) for the given kernel */
  const string get_opencl_program_filename(const string &kernel_name);
  string get_build_options(const DeviceRequestedFeatures &requested_features,
                           const string &opencl_program_name);
  /* Enable the default features to reduce recompilation events */
  void enable_default_features(DeviceRequestedFeatures &features);

  void mem_alloc(device_memory &mem);
  void mem_copy_to(device_memory &mem);
  void mem_copy_from(device_memory &mem, int y, int w, int h, int elem);
  void mem_zero(device_memory &mem);
  void mem_free(device_memory &mem);

  int mem_sub_ptr_alignment();

  void const_copy_to(const char *name, void *host, size_t size);
  void global_alloc(device_memory &mem);
  void global_free(device_memory &mem);
  void tex_alloc(device_texture &mem);
  void tex_free(device_texture &mem);

  size_t global_size_round_up(int group_size, int global_size);
  void enqueue_kernel(cl_kernel kernel,
                      size_t w,
                      size_t h,
                      bool x_workgroups = false,
                      size_t max_workgroup_size = -1);
  void set_kernel_arg_mem(cl_kernel kernel, cl_uint *narg, const char *name);
  void set_kernel_arg_buffers(cl_kernel kernel, cl_uint *narg);

  void film_convert(DeviceTask &task,
                    device_ptr buffer,
                    device_ptr rgba_byte,
                    device_ptr rgba_half);
  void shader(DeviceTask &task);
  void update_adaptive(DeviceTask &task, RenderTile &tile, int sample);
  void bake(DeviceTask &task, RenderTile &tile);

  void denoise(RenderTile &tile, DenoisingTask &denoising);

  int get_split_task_count(DeviceTask & /*task*/)
  {
    return 1;
  }

  void task_add(DeviceTask &task)
  {
    task_pool.push([=] {
      DeviceTask task_copy = task;
      thread_run(task_copy);
    });
  }

  void task_wait()
  {
    task_pool.wait();
  }

  void task_cancel()
  {
    task_pool.cancel();
  }

  void thread_run(DeviceTask &task);

  virtual BVHLayoutMask get_bvh_layout_mask() const
  {
    return BVH_LAYOUT_BVH2;
  }

  virtual bool show_samples() const
  {
    return true;
  }

 protected:
  string kernel_build_options(const string *debug_src = NULL);

  void mem_zero_kernel(device_ptr ptr, size_t size);

  bool denoising_non_local_means(device_ptr image_ptr,
                                 device_ptr guide_ptr,
                                 device_ptr variance_ptr,
                                 device_ptr out_ptr,
                                 DenoisingTask *task);
  bool denoising_construct_transform(DenoisingTask *task);
  bool denoising_accumulate(device_ptr color_ptr,
                            device_ptr color_variance_ptr,
                            device_ptr scale_ptr,
                            int frame,
                            DenoisingTask *task);
  bool denoising_solve(device_ptr output_ptr, DenoisingTask *task);
  bool denoising_combine_halves(device_ptr a_ptr,
                                device_ptr b_ptr,
                                device_ptr mean_ptr,
                                device_ptr variance_ptr,
                                int r,
                                int4 rect,
                                DenoisingTask *task);
  bool denoising_divide_shadow(device_ptr a_ptr,
                               device_ptr b_ptr,
                               device_ptr sample_variance_ptr,
                               device_ptr sv_variance_ptr,
                               device_ptr buffer_variance_ptr,
                               DenoisingTask *task);
  bool denoising_get_feature(int mean_offset,
                             int variance_offset,
                             device_ptr mean_ptr,
                             device_ptr variance_ptr,
                             float scale,
                             DenoisingTask *task);
  bool denoising_write_feature(int to_offset,
                               device_ptr from_ptr,
                               device_ptr buffer_ptr,
                               DenoisingTask *task);
  bool denoising_detect_outliers(device_ptr image_ptr,
                                 device_ptr variance_ptr,
                                 device_ptr depth_ptr,
                                 device_ptr output_ptr,
                                 DenoisingTask *task);

  device_ptr mem_alloc_sub_ptr(device_memory &mem, int offset, int size);
  void mem_free_sub_ptr(device_ptr ptr);

  class ArgumentWrapper {
   public:
    ArgumentWrapper() : size(0), pointer(NULL)
    {
    }

    ArgumentWrapper(device_memory &argument)
        : size(sizeof(void *)), pointer((void *)(&argument.device_pointer))
    {
    }

    template<typename T>
    ArgumentWrapper(device_vector<T> &argument)
        : size(sizeof(void *)), pointer((void *)(&argument.device_pointer))
    {
    }

    template<typename T>
    ArgumentWrapper(device_only_memory<T> &argument)
        : size(sizeof(void *)), pointer((void *)(&argument.device_pointer))
    {
    }
    template<typename T> ArgumentWrapper(T &argument) : size(sizeof(argument)), pointer(&argument)
    {
    }

    ArgumentWrapper(int argument) : size(sizeof(int)), int_value(argument), pointer(&int_value)
    {
    }

    ArgumentWrapper(float argument)
        : size(sizeof(float)), float_value(argument), pointer(&float_value)
    {
    }

    size_t size;
    int int_value;
    float float_value;
    void *pointer;
  };

  /* TODO(sergey): In the future we can use variadic templates, once
   * C++0x is allowed. Should allow to clean this up a bit.
   */
  int kernel_set_args(cl_kernel kernel,
                      int start_argument_index,
                      const ArgumentWrapper &arg1 = ArgumentWrapper(),
                      const ArgumentWrapper &arg2 = ArgumentWrapper(),
                      const ArgumentWrapper &arg3 = ArgumentWrapper(),
                      const ArgumentWrapper &arg4 = ArgumentWrapper(),
                      const ArgumentWrapper &arg5 = ArgumentWrapper(),
                      const ArgumentWrapper &arg6 = ArgumentWrapper(),
                      const ArgumentWrapper &arg7 = ArgumentWrapper(),
                      const ArgumentWrapper &arg8 = ArgumentWrapper(),
                      const ArgumentWrapper &arg9 = ArgumentWrapper(),
                      const ArgumentWrapper &arg10 = ArgumentWrapper(),
                      const ArgumentWrapper &arg11 = ArgumentWrapper(),
                      const ArgumentWrapper &arg12 = ArgumentWrapper(),
                      const ArgumentWrapper &arg13 = ArgumentWrapper(),
                      const ArgumentWrapper &arg14 = ArgumentWrapper(),
                      const ArgumentWrapper &arg15 = ArgumentWrapper(),
                      const ArgumentWrapper &arg16 = ArgumentWrapper(),
                      const ArgumentWrapper &arg17 = ArgumentWrapper(),
                      const ArgumentWrapper &arg18 = ArgumentWrapper(),
                      const ArgumentWrapper &arg19 = ArgumentWrapper(),
                      const ArgumentWrapper &arg20 = ArgumentWrapper(),
                      const ArgumentWrapper &arg21 = ArgumentWrapper(),
                      const ArgumentWrapper &arg22 = ArgumentWrapper(),
                      const ArgumentWrapper &arg23 = ArgumentWrapper(),
                      const ArgumentWrapper &arg24 = ArgumentWrapper(),
                      const ArgumentWrapper &arg25 = ArgumentWrapper(),
                      const ArgumentWrapper &arg26 = ArgumentWrapper(),
                      const ArgumentWrapper &arg27 = ArgumentWrapper(),
                      const ArgumentWrapper &arg28 = ArgumentWrapper(),
                      const ArgumentWrapper &arg29 = ArgumentWrapper(),
                      const ArgumentWrapper &arg30 = ArgumentWrapper(),
                      const ArgumentWrapper &arg31 = ArgumentWrapper(),
                      const ArgumentWrapper &arg32 = ArgumentWrapper(),
                      const ArgumentWrapper &arg33 = ArgumentWrapper());

  void release_kernel_safe(cl_kernel kernel);
  void release_mem_object_safe(cl_mem mem);
  void release_program_safe(cl_program program);

  /* ** Those guys are for working around some compiler-specific bugs ** */

  cl_program load_cached_kernel(ustring key, thread_scoped_lock &cache_locker);

  void store_cached_kernel(cl_program program, ustring key, thread_scoped_lock &cache_locker);

 private:
  MemoryManager memory_manager;
  friend class MemoryManager;

  static_assert_align(TextureInfo, 16);
  device_vector<TextureInfo> texture_info;

  typedef map<string, device_memory *> TexturesMap;
  TexturesMap textures;

  bool textures_need_update;

 protected:
  void flush_texture_buffers();

  friend class OpenCLSplitKernel;
  friend class OpenCLSplitKernelFunction;
};

Device *opencl_create_split_device(DeviceInfo &info,
                                   Stats &stats,
                                   Profiler &profiler,
                                   bool background);

CCL_NAMESPACE_END

#endif