- 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_interface_ops::handle_to_pointer )(starpu_data_handle_t handle, unsigned node)
- Use starpu_data_interface_ops::to_pointer instead. Return the current pointer (if any) for the handle on the given node.
- 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.