/* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2010-2021 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 #include "../helper.h" #define SIZE (1<<20) #define NPARTS 16 /* * Test asynchronous partitioning on a temporary data. */ static void codelet(void *descr[], void *_args) { (void)descr; (void)_args; } static struct starpu_codelet clw = { .where = STARPU_CPU, .cpu_funcs = {codelet}, .nbuffers = 1, .modes = {STARPU_W} }; static struct starpu_codelet clr = { .where = STARPU_CPU, .cpu_funcs = {codelet}, .nbuffers = 1, .modes = {STARPU_R} }; int main(void) { int ret; starpu_data_handle_t handle, handles[NPARTS]; int i; char d[SIZE]; ret = starpu_init(NULL); if (ret == -ENODEV) return STARPU_TEST_SKIPPED; STARPU_CHECK_RETURN_VALUE(ret, "starpu_init"); starpu_vector_data_register(&handle, STARPU_MAIN_RAM, (uintptr_t) &d, SIZE, sizeof(char)); /* Fork */ struct starpu_data_filter f = { .filter_func = starpu_vector_filter_block, .nchildren = NPARTS }; starpu_data_partition_plan(handle, &f, handles); /* Read in parallel */ for (i = 0; i < NPARTS; i++) { starpu_data_acquire(handles[i], STARPU_R); } /* Release in parallel */ for (i = 0; i < NPARTS; i++) { starpu_data_release(handles[i]); } starpu_data_invalidate(handle); /* Acquire in parallel */ for (i = 0; i < NPARTS; i++) { starpu_data_acquire(handles[i], STARPU_W); } /* Release in parallel */ for (i = 0; i < NPARTS; i++) { starpu_data_release(handles[i]); } starpu_data_acquire(handle, STARPU_R); starpu_data_release(handle); /* Read result */ starpu_task_insert(&clr, STARPU_R, handle, 0); /* Clean */ starpu_data_partition_clean(handle, NPARTS, handles); starpu_data_unregister(handle); starpu_shutdown(); return 0; }