| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 | 
							- /* StarPU --- Runtime system for heterogeneous multicore architectures.
 
-  *
 
-  * Copyright (C) 2010-2011  Université de Bordeaux 1
 
-  * Copyright (C) 2010  Mehdi Juhoor <mjuhoor@gmail.com>
 
-  * Copyright (C) 2010  Centre National de la Recherche Scientifique
 
-  *
 
-  * 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 __STARPU_DATA_FILTERS_H__
 
- #define __STARPU_DATA_FILTERS_H__
 
- #include <stdarg.h>
 
- #include <starpu.h>
 
- #include <starpu_config.h>
 
- #ifdef __cplusplus
 
- extern "C" {
 
- #endif
 
- struct starpu_data_interface_ops_t;
 
- struct starpu_data_filter {
 
- 	void (*filter_func)(void *father_interface, void *child_interface, struct starpu_data_filter *, unsigned id, unsigned nparts);
 
-         unsigned (*get_nchildren)(struct starpu_data_filter *, starpu_data_handle initial_handle);
 
-         struct starpu_data_interface_ops_t *(*get_child_ops)(struct starpu_data_filter *, unsigned id);
 
-         unsigned filter_arg;
 
-         unsigned nchildren;
 
-         void *filter_arg_ptr;
 
- };
 
- void starpu_data_partition(starpu_data_handle initial_handle, struct starpu_data_filter *f);
 
- void starpu_data_unpartition(starpu_data_handle root_data, uint32_t gathering_node);
 
- int starpu_data_get_nb_children(starpu_data_handle handle);
 
- starpu_data_handle starpu_data_get_child(starpu_data_handle handle, unsigned i);
 
- /* unsigned list */
 
- starpu_data_handle starpu_data_get_sub_data(starpu_data_handle root_data, unsigned depth, ... );
 
- /* Same, but using va_list */
 
- starpu_data_handle starpu_data_vget_sub_data(starpu_data_handle root_data, unsigned depth, va_list pa );
 
- /* struct starpu_data_filter * list */
 
- void starpu_data_map_filters(starpu_data_handle root_data, unsigned nfilters, ...);
 
- /* Same, but using va_list */
 
- void starpu_data_vmap_filters(starpu_data_handle root_data, unsigned nfilters, va_list pa);
 
- /* a few examples of filters */
 
- /* for BCSR */
 
- void starpu_canonical_block_filter_bcsr(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);
 
- void starpu_vertical_block_filter_func_csr(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);
 
- /* (filters for BLAS interface) */
 
- void starpu_block_filter_func(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);
 
- void starpu_vertical_block_filter_func(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);
 
- /* for vector */
 
- void starpu_block_filter_func_vector(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);
 
- void starpu_vector_list_filter_func(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);
 
- void starpu_vector_divide_in_2_filter_func(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);
 
- /* for block */
 
- void starpu_block_filter_func_block(void *father_interface, void *child_interface, struct starpu_data_filter *f, unsigned id, unsigned nparts);
 
- #ifdef __cplusplus
 
- }
 
- #endif
 
- #endif
 
 
  |