Skip to content

Commit dc17a42

Browse files
committed
fix typo
Signed-off-by: noemotiovon <[email protected]>
1 parent e808b21 commit dc17a42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/backend/CANN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.
320320
This is useful for debugging or scenarios where graph building overhead is undesirable.

ggml/src/ggml-cann/common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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");

0 commit comments

Comments
 (0)