From cb1dec0ec04228aa13137caebe951cd7843a6816 Mon Sep 17 00:00:00 2001 From: mqy Date: Mon, 3 Jul 2023 23:58:31 +0800 Subject: [PATCH] minor: update comments --- ggml.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ggml.h b/ggml.h index fae63e631..0f1bd138b 100644 --- a/ggml.h +++ b/ggml.h @@ -448,8 +448,7 @@ extern "C" { struct ggml_graph_compute_plan { // Size of work buffer, calculated by `ggml_graph_compute_make_plan()`. size_t work_size; - // Worker buffer. - // Expect allocate/free by caller before/after calling to `ggml_graph_compute()`. + // Work buffer, to be allocated by caller before calling to `ggml_graph_compute()`. void * work_data; int n_threads;