| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 | 
							- /* 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.
 
-  */
 
- #ifndef __STARPU_FPGA_H__
 
- #define __STARPU_FPGA_H__
 
- #include <starpu_config.h>
 
- #if defined STARPU_USE_FPGA
 
- //#include <fpga.h>
 
- #ifdef __cplusplus
 
- extern "C"
 
- {
 
- #endif
 
- /**
 
-    @defgroup API_FPGA_Extensions FPGA Extensions
 
-    @{
 
- */
 
- //int starpu_fpga_allocate_memory(fpga_mem *addr, size_t size);
 
- typedef struct data_exchange_log
 
- {
 
-         int size;
 
-         float time;
 
- } fpga_trans;
 
- typedef struct properties
 
- {
 
-         int totalGlobalMem;
 
-         int concurrentKernels;
 
-         char *name;
 
- } fpgaDeviceProp;
 
- /**
 
-    get device properties
 
-  */
 
- int fpgaGetDeviceProperties(fpgaDeviceProp *,unsigned devid);
 
- void fpga_report_configuration(void);
 
- /**
 
-    set fpga device
 
-  */
 
- int fpgaSetDevice(unsigned devid);
 
- /**
 
-    fpga is silent
 
-  */
 
- int fpga_is_silent();
 
- /** @} */
 
- #ifdef __cplusplus
 
- }
 
- #endif
 
- #endif /* STARPU_USE_FPGA */
 
- #endif /* __STARPU_FPGA_H__ */
 
 
  |