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
|
/* StarPU --- Runtime system for heterogeneous multicore architectures.
*
* Copyright (C) 2012-2023 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
*
* StarPU is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or (at
* your option) any later version.
*
* StarPU is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* See the GNU Lesser General Public License in COPYING.LGPL for more details.
*/
#include <starpu.h>
#include "complex_dev_handle_interface.h"
uintptr_t starpu_complex_dev_handle_get_ptr_real(starpu_data_handle_t handle)
{
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface =
(struct starpu_complex_dev_handle_interface *) starpu_data_get_interface_on_node(handle, STARPU_MAIN_RAM);
return complex_dev_handle_interface->ptr_real;
}
uintptr_t starpu_complex_dev_handle_get_ptr_imaginary(starpu_data_handle_t handle)
{
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface =
(struct starpu_complex_dev_handle_interface *) starpu_data_get_interface_on_node(handle, STARPU_MAIN_RAM);
return complex_dev_handle_interface->ptr_imaginary;
}
int starpu_complex_dev_handle_get_nx(starpu_data_handle_t handle)
{
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface =
(struct starpu_complex_dev_handle_interface *) starpu_data_get_interface_on_node(handle, STARPU_MAIN_RAM);
return complex_dev_handle_interface->nx;
}
uintptr_t starpu_complex_dev_handle_get_dev_handle_real(starpu_data_handle_t handle)
{
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface =
(struct starpu_complex_dev_handle_interface *) starpu_data_get_interface_on_node(handle, STARPU_MAIN_RAM);
return complex_dev_handle_interface->dev_handle_real;
}
uintptr_t starpu_complex_dev_handle_get_dev_handle_imaginary(starpu_data_handle_t handle)
{
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface =
(struct starpu_complex_dev_handle_interface *) starpu_data_get_interface_on_node(handle, STARPU_MAIN_RAM);
return complex_dev_handle_interface->dev_handle_imaginary;
}
size_t starpu_complex_dev_handle_get_offset_real(starpu_data_handle_t handle)
{
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface =
(struct starpu_complex_dev_handle_interface *) starpu_data_get_interface_on_node(handle, STARPU_MAIN_RAM);
return complex_dev_handle_interface->offset_real;
}
size_t starpu_complex_dev_handle_get_offset_imaginary(starpu_data_handle_t handle)
{
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface =
(struct starpu_complex_dev_handle_interface *) starpu_data_get_interface_on_node(handle, STARPU_MAIN_RAM);
return complex_dev_handle_interface->offset_imaginary;
}
static void complex_dev_handle_register_data_handle(starpu_data_handle_t handle, int home_node, void *data_interface)
{
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface = (struct starpu_complex_dev_handle_interface *) data_interface;
int node;
for (node = 0; node < STARPU_MAXNODES; node++)
{
struct starpu_complex_dev_handle_interface *local_interface = (struct starpu_complex_dev_handle_interface *)
starpu_data_get_interface_on_node(handle, node);
local_interface->nx = complex_dev_handle_interface->nx;
if (node == home_node)
{
local_interface->ptr_real = complex_dev_handle_interface->ptr_real;
local_interface->dev_handle_real = complex_dev_handle_interface->dev_handle_real;
local_interface->offset_real = complex_dev_handle_interface->offset_real;
local_interface->ptr_imaginary = complex_dev_handle_interface->ptr_imaginary;
local_interface->dev_handle_imaginary = complex_dev_handle_interface->dev_handle_imaginary;
local_interface->offset_imaginary = complex_dev_handle_interface->offset_imaginary;
}
else
{
local_interface->ptr_real = 0;
local_interface->dev_handle_real = 0;
local_interface->offset_real = 0;
local_interface->ptr_imaginary = 0;
local_interface->dev_handle_imaginary = 0;
local_interface->offset_imaginary = 0;
}
}
}
static starpu_ssize_t complex_dev_handle_allocate_data_on_node(void *data_interface, unsigned node)
{
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface = (struct starpu_complex_dev_handle_interface *) data_interface;
uintptr_t addr_real = 0, addr_imaginary = 0, dev_handle_real, dev_handle_imaginary;
starpu_ssize_t requested_memory = complex_dev_handle_interface->nx * sizeof(double);
dev_handle_real = starpu_malloc_on_node(node, requested_memory);
if (!dev_handle_real)
goto fail_real;
dev_handle_imaginary = starpu_malloc_on_node(node, requested_memory);
if (!dev_handle_imaginary)
goto fail_imaginary;
if (starpu_node_get_kind(node) != STARPU_OPENCL_RAM)
{
addr_real = dev_handle_real;
addr_imaginary = dev_handle_imaginary;
}
/* update the data properly in consequence */
complex_dev_handle_interface->ptr_real = addr_real;
complex_dev_handle_interface->dev_handle_real = dev_handle_real;
complex_dev_handle_interface->offset_real = 0;
complex_dev_handle_interface->ptr_imaginary = addr_imaginary;
complex_dev_handle_interface->dev_handle_imaginary = dev_handle_imaginary;
complex_dev_handle_interface->offset_imaginary = 0;
return 2*requested_memory;
fail_imaginary:
starpu_free_on_node(node, dev_handle_real, requested_memory);
fail_real:
return -ENOMEM;
}
static void complex_dev_handle_free_data_on_node(void *data_interface, unsigned node)
{
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface = (struct starpu_complex_dev_handle_interface *) data_interface;
starpu_ssize_t requested_memory = complex_dev_handle_interface->nx * sizeof(double);
starpu_free_on_node(node, (uintptr_t) complex_dev_handle_interface->dev_handle_real, requested_memory);
complex_dev_handle_interface->ptr_real = 0;
complex_dev_handle_interface->dev_handle_real = 0;
starpu_free_on_node(node, (uintptr_t) complex_dev_handle_interface->dev_handle_imaginary, requested_memory);
complex_dev_handle_interface->ptr_imaginary = 0;
complex_dev_handle_interface->dev_handle_imaginary = 0;
}
static size_t complex_dev_handle_get_size(starpu_data_handle_t handle)
{
size_t size;
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface = (struct starpu_complex_dev_handle_interface *) starpu_data_get_interface_on_node(handle, STARPU_MAIN_RAM);
size = complex_dev_handle_interface->nx * 2 * sizeof(double);
return size;
}
static uint32_t complex_dev_handle_footprint(starpu_data_handle_t handle)
{
return starpu_hash_crc32c_be(starpu_complex_dev_handle_get_nx(handle), 0);
}
static int complex_dev_handle_pack_data(starpu_data_handle_t handle, unsigned node, void **ptr, starpu_ssize_t *count)
{
STARPU_ASSERT(starpu_data_test_if_allocated_on_node(handle, node));
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface = (struct starpu_complex_dev_handle_interface *)
starpu_data_get_interface_on_node(handle, node);
*count = complex_dev_handle_get_size(handle);
if (ptr != NULL)
{
char *real = (void *)complex_dev_handle_interface->ptr_real;
char *imaginary = (void *)complex_dev_handle_interface->ptr_imaginary;
*ptr = (void*) starpu_malloc_on_node_flags(node, *count, 0);
char *data = (char*) *ptr;
memcpy(data, real, complex_dev_handle_interface->nx*sizeof(double));
memcpy(data+complex_dev_handle_interface->nx*sizeof(double), imaginary, complex_dev_handle_interface->nx*sizeof(double));
}
return 0;
}
static int complex_dev_handle_peek_data(starpu_data_handle_t handle, unsigned node, void *ptr, size_t count)
{
char *data = ptr;
STARPU_ASSERT(starpu_data_test_if_allocated_on_node(handle, node));
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface = (struct starpu_complex_dev_handle_interface *)
starpu_data_get_interface_on_node(handle, node);
STARPU_ASSERT(count == 2 * complex_dev_handle_interface->nx * sizeof(double));
char *real = (void *)complex_dev_handle_interface->ptr_real;
char *imaginary = (void *)complex_dev_handle_interface->ptr_imaginary;
memcpy(real, data, complex_dev_handle_interface->nx*sizeof(double));
memcpy(imaginary, data+complex_dev_handle_interface->nx*sizeof(double), complex_dev_handle_interface->nx*sizeof(double));
return 0;
}
static int complex_dev_handle_unpack_data(starpu_data_handle_t handle, unsigned node, void *ptr, size_t count)
{
complex_dev_handle_peek_data(handle, node, ptr, count);
starpu_free_on_node_flags(node, (uintptr_t) ptr, count, 0);
return 0;
}
static starpu_ssize_t complex_dev_handle_describe(void *data_interface, char *buf, size_t size)
{
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface = (struct starpu_complex_dev_handle_interface *) data_interface;
return snprintf(buf, size, "Complex_dev_handle%d", complex_dev_handle_interface->nx);
}
static int complex_dev_handle_compare(void *data_interface_a, void *data_interface_b)
{
struct starpu_complex_dev_handle_interface *complex_dev_handle_a = (struct starpu_complex_dev_handle_interface *) data_interface_a;
struct starpu_complex_dev_handle_interface *complex_dev_handle_b = (struct starpu_complex_dev_handle_interface *) data_interface_b;
return (complex_dev_handle_a->nx == complex_dev_handle_b->nx);
}
int copy_any_to_any(void *src_interface, unsigned src_node,
void *dst_interface, unsigned dst_node,
void *async_data)
{
struct starpu_complex_dev_handle_interface *src_complex_dev_handle = src_interface;
struct starpu_complex_dev_handle_interface *dst_complex_dev_handle = dst_interface;
int ret = 0;
if (starpu_interface_copy(src_complex_dev_handle->dev_handle_real, src_complex_dev_handle->offset_real, src_node,
dst_complex_dev_handle->dev_handle_real, dst_complex_dev_handle->offset_real, dst_node,
src_complex_dev_handle->nx*sizeof(double),
async_data))
ret = -EAGAIN;
if (starpu_interface_copy(src_complex_dev_handle->dev_handle_imaginary, src_complex_dev_handle->offset_imaginary, src_node,
dst_complex_dev_handle->dev_handle_imaginary, dst_complex_dev_handle->offset_imaginary, dst_node,
src_complex_dev_handle->nx*sizeof(double),
async_data))
ret = -EAGAIN;
return ret;
}
const struct starpu_data_copy_methods complex_dev_handle_copy_methods =
{
.any_to_any = copy_any_to_any
};
struct starpu_data_interface_ops interface_complex_dev_handle_ops =
{
.register_data_handle = complex_dev_handle_register_data_handle,
.allocate_data_on_node = complex_dev_handle_allocate_data_on_node,
.free_data_on_node = complex_dev_handle_free_data_on_node,
.copy_methods = &complex_dev_handle_copy_methods,
.get_size = complex_dev_handle_get_size,
.footprint = complex_dev_handle_footprint,
.interfaceid = STARPU_UNKNOWN_INTERFACE_ID,
.interface_size = sizeof(struct starpu_complex_dev_handle_interface),
.to_pointer = NULL,
.pack_data = complex_dev_handle_pack_data,
.peek_data = complex_dev_handle_peek_data,
.unpack_data = complex_dev_handle_unpack_data,
.describe = complex_dev_handle_describe,
.compare = complex_dev_handle_compare
};
void starpu_complex_dev_handle_data_register(starpu_data_handle_t *handleptr, int home_node, uintptr_t ptr_real, uintptr_t ptr_imaginary, int nx)
{
struct starpu_complex_dev_handle_interface complex_dev_handle =
{
.ptr_real = ptr_real,
.dev_handle_real = ptr_real,
.ptr_imaginary = ptr_imaginary,
.dev_handle_imaginary = ptr_imaginary,
.nx = nx
};
starpu_data_register(handleptr, home_node, &complex_dev_handle, &interface_complex_dev_handle_ops);
}
void starpu_complex_dev_handle_ptr_register(starpu_data_handle_t handle, int node, uintptr_t ptr_real, uintptr_t ptr_imaginary, uintptr_t dev_handle_real, uintptr_t dev_handle_imaginary, size_t offset_real, size_t offset_imaginary)
{
struct starpu_complex_dev_handle_interface *complex_dev_handle_interface = starpu_data_get_interface_on_node(handle, node);
starpu_data_ptr_register(handle, node);
complex_dev_handle_interface->ptr_real = ptr_real;
complex_dev_handle_interface->dev_handle_real = dev_handle_real;
complex_dev_handle_interface->offset_real = offset_real;
complex_dev_handle_interface->ptr_imaginary = ptr_imaginary;
complex_dev_handle_interface->dev_handle_imaginary = dev_handle_imaginary;
complex_dev_handle_interface->offset_imaginary = offset_imaginary;
}
|