File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -316,5 +316,5 @@ Converting the matmul weight format from ND to NZ can significantly improve perf
316316
317317# ## GGML_CANN_EAGER_MODE
318318
319- Enabling eager execution mode will bypass ACL graph execution and submit operators directly.
319+ Enabling eager execution mode will bypass ACL graph execution and submit operators directly.
320320This is useful for debugging or scenarios where graph building overhead is undesirable.
Original file line number Diff line number Diff line change @@ -420,7 +420,7 @@ struct ggml_backend_cann_context {
420420 async_mode = parse_bool (get_env (" GGML_CANN_ASYNC_MODE" ).value_or (" " ));
421421 GGML_LOG_INFO (" %s: device %d async operator submission is %s\n " , __func__,
422422 device, async_mode ? " ON" : " OFF" );
423-
423+
424424 eager_mode = parse_bool (get_env (" GGML_CANN_EAGER_MODE" ).value_or (" " ));
425425 GGML_LOG_INFO (" %s: device %d eager execution mode is %s (acl graph disabled)\n " ,
426426 __func__, device, eager_mode ? " ON" : " OFF" );
You can’t perform that action at this time.
0 commit comments