| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 | 
							- /* StarPU --- Runtime system for heterogeneous multicore architectures.
 
-  *
 
-  * Copyright (C) 2012-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 <starpu.h>
 
- #include "../test_interfaces.h"
 
- #include "../../../helper.h"
 
- void fake_func(void *buffers[], void *arg)
 
- {
 
- 	(void) buffers;
 
- 	(void) arg;
 
- }
 
- static starpu_data_handle_t void_handle;
 
- static starpu_data_handle_t void2_handle;
 
- struct test_config void_config =
 
- {
 
- 	.cpu_func      = fake_func,
 
- #ifdef STARPU_USE_CUDA
 
- 	.cuda_func     = fake_func,
 
- #endif
 
- #ifdef STARPU_USE_OPENCL
 
- 	.opencl_func   = fake_func,
 
- #endif
 
- 	.handle        = &void_handle,
 
- 	.dummy_handle  = &void2_handle,
 
- 	.copy_failed   = SUCCESS,
 
- 	.name          = "void_interface"
 
- };
 
- static void
 
- register_data(void)
 
- {
 
- 	starpu_void_data_register(&void_handle);
 
- 	starpu_void_data_register(&void2_handle);
 
- }
 
- static void
 
- unregister_data(void)
 
- {
 
- 	starpu_data_unregister(void_handle);
 
- 	starpu_data_unregister(void2_handle);
 
- }
 
- int main(int argc, char **argv)
 
- {
 
- 	struct data_interface_test_summary summary;
 
- 	struct starpu_conf conf;
 
- 	starpu_conf_init(&conf);
 
- 	conf.ncuda = 2;
 
- 	conf.nopencl = 1;
 
- 	int ret = starpu_initialize(&conf, &argc, &argv);
 
- 	if (ret == -ENODEV) return STARPU_TEST_SKIPPED;
 
- 	STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
 
- 	if(starpu_cpu_worker_get_count() == 0)
 
- 	{
 
- 		starpu_shutdown();
 
- 		return STARPU_TEST_SKIPPED;
 
- 	}
 
- 	register_data();
 
- 	run_tests(&void_config, &summary);
 
- 	unregister_data();
 
- 	starpu_shutdown();
 
- 	data_interface_test_summary_print(stderr, &summary);
 
- 	return data_interface_test_summary_success(&summary);
 
- }
 
 
  |