12345678910111213141516171819202122232425262728293031323334353637 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2009-2011 Université de Bordeaux 1
- * 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 __DATA_INTERFACE_H__
- #define __DATA_INTERFACE_H__
- #include <starpu.h>
- #include <common/config.h>
- /* Some data interfaces or filters use this interface internally */
- extern struct starpu_data_interface_ops_t _starpu_interface_matrix_ops;
- void _starpu_data_free_interfaces(starpu_data_handle handle)
- STARPU_ATTRIBUTE_INTERNAL;
- extern void _starpu_data_interface_init(void) STARPU_ATTRIBUTE_INTERNAL;
- extern void _starpu_data_interface_shutdown(void) STARPU_ATTRIBUTE_INTERNAL;
- extern void _starpu_data_register_ram_pointer(starpu_data_handle handle,
- void *ptr)
- STARPU_ATTRIBUTE_INTERNAL;
- #endif // __DATA_INTERFACE_H__
|