From aa6adda26e1ee9843dddb013890e3312bee52cfe Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Sun, 11 Dec 2022 20:34:04 +0200 Subject: [PATCH] talk : make compatible with c++11 (part 2) --- examples/talk.wasm/gpt-2.cpp | 4 +++- examples/talk/gpt-2.cpp | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/examples/talk.wasm/gpt-2.cpp b/examples/talk.wasm/gpt-2.cpp index 3cdc2c2..bc5e099 100644 --- a/examples/talk.wasm/gpt-2.cpp +++ b/examples/talk.wasm/gpt-2.cpp @@ -533,7 +533,9 @@ bool gpt2_eval( params.mem_buffer = buf; struct ggml_context * ctx0 = ggml_init(params); - struct ggml_cgraph gf = { .n_threads = n_threads }; + + struct ggml_cgraph gf = { }; + gf.n_threads = n_threads; struct ggml_tensor * embd = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, N); memcpy(embd->data, embd_inp.data(), N*ggml_element_size(embd)); diff --git a/examples/talk/gpt-2.cpp b/examples/talk/gpt-2.cpp index 6ef2496..3c04a9c 100644 --- a/examples/talk/gpt-2.cpp +++ b/examples/talk/gpt-2.cpp @@ -533,7 +533,9 @@ bool gpt2_eval( params.mem_buffer = buf; struct ggml_context * ctx0 = ggml_init(params); - struct ggml_cgraph gf = { .n_threads = n_threads }; + + struct ggml_cgraph gf = { }; + gf.n_threads = n_threads; struct ggml_tensor * embd = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, N); memcpy(embd->data, embd_inp.data(), N*ggml_element_size(embd));