File: clEnqueueSVMMemcpy.c

package info (click to toggle)
pocl 7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 29,768 kB
  • sloc: lisp: 151,669; ansic: 135,425; cpp: 65,801; python: 1,846; sh: 1,084; ruby: 255; pascal: 231; tcl: 180; makefile: 174; asm: 81; java: 72; xml: 49
file content (189 lines) | stat: -rw-r--r-- 7,153 bytes parent folder | download
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
/* OpenCL runtime library: clEnqueueSVMMemcpy()

   Copyright (c) 2015 Michal Babej / Tampere University of Technology
                 2023-2024 Pekka Jääskeläinen / Intel Finland Oy

   Permission is hereby granted, free of charge, to any person obtaining a copy
   of this software and associated documentation files (the "Software"), to
   deal in the Software without restriction, including without limitation the
   rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
   sell copies of the Software, and to permit persons to whom the Software is
   furnished to do so, subject to the following conditions:

   The above copyright notice and this permission notice shall be included in
   all copies or substantial portions of the Software.

   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
   AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
   IN THE SOFTWARE.
*/

#include "pocl_cl.h"
#include "pocl_shared.h"
#include "pocl_util.h"

cl_int
pocl_svm_memcpy_common (cl_command_buffer_khr command_buffer,
                        cl_command_queue command_queue,
                        cl_command_type command_type,
                        void *dst_ptr,
                        const void *src_ptr,
                        size_t size,
                        cl_uint num_items_in_wait_list,
                        const cl_event *event_wait_list,
                        cl_event *event,
                        const cl_sync_point_khr *sync_point_wait_list,
                        cl_sync_point_khr *sync_point,
                        _cl_command_node **cmd)
{
  POCL_VALIDATE_WAIT_LIST_PARAMS;

  unsigned i;
  cl_device_id device;
  POCL_CHECK_DEV_IN_CMDQ;
  cl_int errcode;

  POCL_RETURN_ERROR_COND ((!IS_CL_OBJECT_VALID (command_queue)),
                          CL_INVALID_COMMAND_QUEUE);

  cl_context context = command_queue->context;

  POCL_RETURN_ERROR_ON (
      (context->svm_allocdev == NULL), CL_INVALID_OPERATION,
      "None of the devices in this context is SVM-capable\n");

  POCL_RETURN_ERROR_COND((src_ptr == NULL), CL_INVALID_VALUE);

  POCL_RETURN_ERROR_COND((dst_ptr == NULL), CL_INVALID_VALUE);

  POCL_RETURN_ERROR_COND((size == 0), CL_INVALID_VALUE);

  /* Utilize shadow buffers internally to share code with cl_mem buffer
     copies. */

  pocl_raw_ptr *src_svm_ptr = pocl_find_raw_ptr_with_vm_ptr (context, src_ptr);
  pocl_raw_ptr *dst_svm_ptr = pocl_find_raw_ptr_with_vm_ptr (context, dst_ptr);

  /* TODO: Command buffering. */
  if (src_svm_ptr != NULL && dst_svm_ptr != NULL)
    {
      /* A copy between SVM regions. Use the basic buffer copy using the shadow
         buffers. */
      if (command_buffer)
        errcode = POname (clCommandCopyBufferKHR) (
            command_buffer, NULL, NULL, src_svm_ptr->shadow_cl_mem,
            dst_svm_ptr->shadow_cl_mem,
            (char *)src_ptr - (char *)src_svm_ptr->vm_ptr,
            (char *)dst_ptr - (char *)dst_svm_ptr->vm_ptr, size,
            num_items_in_wait_list, sync_point_wait_list, sync_point, NULL);
      else
        errcode = POname (clEnqueueCopyBuffer) (
            command_queue, src_svm_ptr->shadow_cl_mem,
            dst_svm_ptr->shadow_cl_mem,
            (char *)src_ptr - (char *)src_svm_ptr->vm_ptr,
            (char *)dst_ptr - (char *)dst_svm_ptr->vm_ptr, size,
            num_items_in_wait_list, event_wait_list, event);
    }
  else if (dst_svm_ptr != NULL && src_svm_ptr == NULL)
    {
      // "host to SVM buffer memcopy command buffering unimplemented");
      if (command_buffer)
        {
          errcode = POname (clCommandWriteBufferPOCL) (
              command_buffer, NULL, dst_svm_ptr->shadow_cl_mem,
              (char *)dst_ptr - (char *)dst_svm_ptr->vm_ptr, size, src_ptr,
              num_items_in_wait_list, sync_point_wait_list, sync_point, NULL);
        }
      else
        {
          errcode = POname (clEnqueueWriteBuffer) (
              command_queue, dst_svm_ptr->shadow_cl_mem, CL_FALSE,
              (char *)dst_ptr - (char *)dst_svm_ptr->vm_ptr, size, src_ptr,
              num_items_in_wait_list, event_wait_list, event);
        }
    }
  else if (src_svm_ptr != NULL && dst_svm_ptr == NULL)
    {
      if (command_buffer)
        {
          errcode = POname (clCommandReadBufferPOCL) (
              command_buffer, NULL, src_svm_ptr->shadow_cl_mem,
              (char *)src_ptr - (char *)src_svm_ptr->vm_ptr, size, dst_ptr,
              num_items_in_wait_list, sync_point_wait_list, sync_point, NULL);
        }
      else
        {
          errcode = POname (clEnqueueReadBuffer) (
              command_queue, src_svm_ptr->shadow_cl_mem, CL_FALSE,
              (char *)src_ptr - (char *)src_svm_ptr->vm_ptr, size, dst_ptr,
              num_items_in_wait_list, event_wait_list, event);
        }
    }
  else
    {
      if (command_buffer)
        {
          POCL_RETURN_ERROR (CL_INVALID_OPERATION,
                             "host to host memcopy "
                             "command buffering unimplemented");
        }

      /* Copy between non-SVM allocated host pointers. Can be a system SVM
         or any region of memory (even if the device wouldn't support system
         SVM?). */
      errcode = pocl_check_event_wait_list (
          command_queue, num_items_in_wait_list, event_wait_list);
      if (errcode != CL_SUCCESS)
        return errcode;

      errcode = pocl_create_command (cmd, command_queue, CL_COMMAND_SVM_MEMCPY,
                                     event, num_items_in_wait_list,
                                     event_wait_list, NULL);

      if (errcode != CL_SUCCESS)
        return errcode;

      _cl_command_node *c = *cmd;

      c->command.svm_memcpy.src = src_ptr;
      c->command.svm_memcpy.dst = dst_ptr;
      c->command.svm_memcpy.size = size;
    }

  // TODO this is likely very wrong
  if (event != NULL)
    (*event)->command_type = command_type;

  return errcode;
}

CL_API_ENTRY cl_int CL_API_CALL
POname (clEnqueueSVMMemcpy) (cl_command_queue command_queue, cl_bool blocking,
                             void *dst_ptr, const void *src_ptr, size_t size,
                             cl_uint num_events_in_wait_list,
                             const cl_event *event_wait_list,
                             cl_event *event) CL_API_SUFFIX__VERSION_2_0
{
  cl_int errcode;
  _cl_command_node *cmd = NULL;

  errcode = pocl_svm_memcpy_common (
      NULL, command_queue, CL_COMMAND_SVM_MEMCPY, dst_ptr, src_ptr, size,
      num_events_in_wait_list, event_wait_list, event, NULL, NULL, &cmd);
  if (errcode != CL_SUCCESS)
    return errcode;

  if (cmd != NULL)
    pocl_command_enqueue (command_queue, cmd);

  if (blocking)
    POname (clFinish) (command_queue);

  return CL_SUCCESS;
}
POsym(clEnqueueSVMMemcpy)