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

memory_manager.h « opencl « device « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23624f837a64cfd73a13e97cec74484360f31d53 (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
/*
 * Copyright 2011-2017 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.
 */

#pragma once

#include "device/device.h"

#include "util/util_map.h"
#include "util/util_string.h"
#include "util/util_vector.h"

#include "clew.h"

CCL_NAMESPACE_BEGIN

class OpenCLDevice;

class MemoryManager {
 public:
  static const int NUM_DEVICE_BUFFERS = 8;

  struct BufferDescriptor {
    uint device_buffer;
    cl_ulong offset;
  };

 private:
  struct DeviceBuffer;

  struct Allocation {
    device_memory *mem;

    DeviceBuffer *device_buffer;
    size_t size; /* Size of actual allocation, may be larger than requested. */

    BufferDescriptor desc;

    bool needs_copy_to_device;

    Allocation() : mem(NULL), device_buffer(NULL), size(0), needs_copy_to_device(false)
    {
    }
  };

  struct DeviceBuffer {
    device_only_memory<uchar> *buffer;
    vector<Allocation *> allocations;
    size_t size; /* Size of all allocations. */

    DeviceBuffer() : buffer(NULL), size(0)
    {
    }

    ~DeviceBuffer()
    {
      delete buffer;
      buffer = NULL;
    }

    void add_allocation(Allocation &allocation);

    void update_device_memory(OpenCLDevice *device);

    void free(OpenCLDevice *device);
  };

  OpenCLDevice *device;

  DeviceBuffer device_buffers[NUM_DEVICE_BUFFERS];

  typedef unordered_map<string, Allocation> AllocationsMap;
  AllocationsMap allocations;

  bool need_update;

  DeviceBuffer *smallest_device_buffer();

 public:
  MemoryManager(OpenCLDevice *device);

  void free(); /* Free all memory. */

  void alloc(const char *name, device_memory &mem);
  bool free(device_memory &mem);

  BufferDescriptor get_descriptor(string name);

  void update_device_memory();
  void set_kernel_arg_buffers(cl_kernel kernel, cl_uint *narg);
};

CCL_NAMESPACE_END