You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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 computationRelated:
The text was updated successfully, but these errors were encountered: