- Global starpu_codelet::cpu_func  
- Optional field which has been made deprecated. One should use instead the field starpu_codelet::cpu_funcs. 
- Global starpu_codelet::cuda_func  
- Optional field which has been made deprecated. One should use instead the starpu_codelet::cuda_funcs field. 
- Global starpu_codelet::opencl_func  
- Optional field which has been made deprecated. One should use instead the starpu_codelet::opencl_funcs field. 
- Global starpu_data_free_pinned_if_possible  
- Equivalent to starpu_free(). This macro is provided to avoid breaking old codes. 
- Global starpu_data_malloc_pinned_if_possible  
- Equivalent to starpu_malloc(). This macro is provided to avoid breaking old codes. 
- Global starpu_mpi_initialize  (void)
- 
This function has been made deprecated. One should use instead the function starpu_mpi_init(). This function does not call MPI_Init(), it should be called beforehand.  
- Global starpu_mpi_initialize_extended  (int *rank, int *world_size)
- 
This function has been made deprecated. One should use instead the function starpu_mpi_init(). MPI will be initialized by starpumpi by calling MPI_Init_Thread(argc, argv, MPI_THREAD_SERIALIZED, ...).
 
- Global STARPU_MULTIPLE_CPU_IMPLEMENTATIONS  
- 
Setting the field starpu_codelet::cpu_func with this macro indicates the codelet will have several implementations. The use of this macro is deprecated. One should always only define the field starpu_codelet::cpu_funcs.  
- Global STARPU_MULTIPLE_CUDA_IMPLEMENTATIONS  
- 
Setting the field starpu_codelet::cuda_func with this macro indicates the codelet will have several implementations. The use of this macro is deprecated. One should always only define the field starpu_codelet::cuda_funcs.  
- Global STARPU_MULTIPLE_OPENCL_IMPLEMENTATIONS  
- 
Setting the field starpu_codelet::opencl_func with this macro indicates the codelet will have several implementations. The use of this macro is deprecated. One should always only define the field starpu_codelet::opencl_funcs.  
- Global starpu_perfmodel::cost_model  )(struct starpu_data_descr *)
- This field is deprecated. Use instead the field starpu_perfmodel::cost_function field.  
- Global starpu_perfmodel_per_arch::cost_model  )(struct starpu_data_descr *t)
- This field is deprecated. Use instead the field starpu_perfmodel_per_arch::cost_function.  
- Global starpu_task::buffers  [STARPU_NMAXBUFS]
- This field has been made deprecated. One should use instead the field starpu_task::handles to specify the data handles accessed by the task. The access modes are now defined in the field starpu_codelet::modes.