1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- #ifndef __STARPU_BOUND_H__
- #define __STARPU_BOUND_H__
- #include <stdio.h>
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- void starpu_bound_start(int deps, int prio);
- void starpu_bound_stop(void);
- void starpu_bound_print_dot(FILE *output);
- void starpu_bound_compute(double *res, double *integer_res, int integer);
- void starpu_bound_print_lp(FILE *output);
- void starpu_bound_print_mps(FILE *output);
- void starpu_bound_print(FILE *output, int integer);
- #ifdef __cplusplus
- }
- #endif
- #endif
|