| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 | /* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2011,2012                                Inria * Copyright (C) 2011,2012,2015,2017                      CNRS * Copyright (C) 2013                                     Université de Bordeaux * * 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. */#ifndef TEST_INTERFACES_H#define TEST_INTERFACES_H#include "../../helper.h"/* * Users do not know about this enum. They only know that SUCCESS is 0, and * FAILURE is 1. Therefore, the values of SUCCESS and FAILURE shall not be * changed. */enum exit_code{	SUCCESS                 = 0,	FAILURE                 = 1,	UNTESTED                = 2,	TASK_CREATION_FAILURE   = 3,	TASK_SUBMISSION_FAILURE = 4};struct test_config{	/* A pointer to a registered handle */	starpu_data_handle_t *handle;	/* A pointer to a registered handle, that will be used to test	 * RAM to RAM copy. The values it points to should be different from	 * the ones pointed to by the previous handle. */	starpu_data_handle_t *dummy_handle;	/* StarPU codelets. The following functions should :	 * 1) Check that the values are correct	 * 2) Negate every element	 */	starpu_cpu_func_t cpu_func;#ifdef STARPU_USE_CUDA	starpu_cuda_func_t cuda_func;#endif#ifdef STARPU_USE_OPENCL	starpu_opencl_func_t opencl_func;#endif	char *cpu_func_name;	/* The previous codelets must update this field at the end of their	 * execution. copy_failed must be FAILURE if the copy failed, SUCCESS otherwise. */	enum exit_code copy_failed;	/* A human-readable name for the test */	const char *name;};typedef struct data_interface_test_summary data_interface_test_summary;void data_interface_test_summary_print(FILE *, data_interface_test_summary *);int data_interface_test_summary_success(data_interface_test_summary *);data_interface_test_summary *run_tests(struct test_config*);#endif /* !TEST_INTERFACES_H */
 |