| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | /* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2010-2020  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 "../helper.h"/* * Try invalidating a variable which is pending a request */#define SIZE (100<<20)int main(void){	int ret;	char *var = NULL;	starpu_data_handle_t handle;	ret = starpu_init(NULL);	if (ret == -ENODEV) goto skip;	STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");	if (starpu_worker_get_count_by_type(STARPU_CUDA_WORKER) == 0 &&		starpu_worker_get_count_by_type(STARPU_OPENCL_WORKER) == 0)		goto enodev;	var = malloc(SIZE);	starpu_variable_data_register(&handle, STARPU_MAIN_RAM, (uintptr_t)var, SIZE);	/* Let a request fly */	starpu_fxt_trace_user_event_string("requesting");	starpu_data_fetch_on_node(handle, 1, 1);	starpu_fxt_trace_user_event_string("requested");	/* But suddenly invalidate the data while it's on the fly! */	starpu_data_invalidate_submit(handle);	starpu_fxt_trace_user_event_string("invalidated");	starpu_data_unregister(handle);	free(var);	starpu_shutdown();	return 0;enodev:	starpu_shutdown();skip:	return STARPU_TEST_SKIPPED;}
 |