starpu_deprecated_api.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2010-2011 Université de Bordeaux 1
  4. * Copyright (C) 2010, 2011 Centre National de la Recherche Scientifique
  5. *
  6. * StarPU is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU Lesser General Public License as published by
  8. * the Free Software Foundation; either version 2.1 of the License, or (at
  9. * your option) any later version.
  10. *
  11. * StarPU is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  14. *
  15. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  16. */
  17. #ifndef __STARPU_DEPRECATED_API_H__
  18. #define _STARPU_DEPRECATED_API_H__
  19. #ifdef __cplusplus
  20. extern "C"
  21. {
  22. #endif
  23. #warning deprecated types. Please update your code to use the latest API, e.g. using tools/dev/rename.sh
  24. typedef starpu_data_handle_t starpu_data_handle;
  25. typedef struct starpu_block_interface starpu_block_interface_t;
  26. typedef struct starpu_matrix_interface starpu_matrix_interface_t;
  27. typedef struct starpu_vector_interface starpu_vector_interface_t;
  28. typedef struct starpu_variable_interface starpu_variable_interface_t;
  29. typedef struct starpu_csr_interface starpu_csr_interface_t;
  30. typedef struct starpu_bcsr_interface starpu_bcsr_interface_t;
  31. typedef struct starpu_multiformat_interface starpu_multiformat_interface_t;
  32. typedef starpu_machine_topology starpu_machine_topology_s;
  33. typedef starpu_htbl32_node starpu_htbl32_node_s;
  34. typedef starpu_history_list starpu_history_list_t;
  35. typedef starpu_buffer_descr starpu_buffer_descr_t;
  36. typedef starpu_history_entry starpu_history_entry_t;
  37. typedef starpu_history_list starpu_history_list_t;
  38. typedef starpu_model_list starpu_model_list_t;
  39. typedef starpu_regression_model starpu_regression_model_t;
  40. typedef starpu_per_arch_perfmodel starpu_per_arch_perfmodel_t;
  41. typedef starpu_perfmodel starpu_perfmodel_t;
  42. typedef starpu_sched_policy starpu_sched_policy_s;
  43. typedef starpu_data_interface_ops starpu_data_interface_ops_t;
  44. typedef struct starpu_buffer_descr starpu_buffer_descr;
  45. typedef struct starpu_codelet starpu_codelet;
  46. typedef enum starpu_access_mode starpu_access_mode;
  47. #ifdef __cplusplus
  48. }
  49. #endif
  50. #endif /* _STARPU_DEPRECATED_API_H__ */