From 7206589e02e1ded5154eb9341cc4bc0e02c24a4d Mon Sep 17 00:00:00 2001 From: Hasan Mukhlis Date: Sun, 10 Mar 2024 15:37:47 +0800 Subject: [PATCH] add paralled example exe --- build.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/build.zig b/build.zig index c496c0efb..1bc2d164e 100644 --- a/build.zig +++ b/build.zig @@ -189,6 +189,7 @@ pub fn build(b: *std.Build) !void { make.exe("embedding", "examples/embedding/embedding.cpp", &.{ ggml, ggml_alloc, ggml_backend, ggml_quants, llama, common, buildinfo }), make.exe("finetune", "examples/finetune/finetune.cpp", &.{ ggml, ggml_alloc, ggml_backend, ggml_quants, llama, common, buildinfo, train }), make.exe("train-text-from-scratch", "examples/train-text-from-scratch/train-text-from-scratch.cpp", &.{ ggml, ggml_alloc, ggml_backend, ggml_quants, llama, common, buildinfo, train }), + make.exe("parallel", "examples/parallel/parallel.cpp", &.{ ggml, ggml_alloc, ggml_backend, ggml_quants, llama, common, buildinfo, sampling, console, grammar_parser, clip }), server, };