Closed
Description
The initial design of the compute tasks in ggml
was each one to have 3 separate stages:
GGML_TASK_INIT
GGML_TASK_COMPUTE
GGML_TASK_FINALIZE
So far, the GGML_TASK_FINALIZE
step has been left completely unused and it seems it won't find any applications in the future. Therefore, it is best to remove it all together. This will simplify the code a little bit and also bring performance improvements as there will be fewer thread synchronization points during the graph computation
Related: