From: Georgi Gerganov Date: Sat, 2 Sep 2023 07:07:04 +0000 (+0300) Subject: ggml : fix L-BFGS linesearch loop (close #501) X-Git-Tag: upstream/0.0.1642~1253 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=e41877e9d284b1956f8b77859c2767213af49bef;p=pkg%2Fggml%2Fsources%2Fggml ggml : fix L-BFGS linesearch loop (close #501) --- diff --git a/src/ggml.c b/src/ggml.c index 74966f3c..bea1e245 100644 --- a/src/ggml.c +++ b/src/ggml.c @@ -18713,7 +18713,6 @@ static enum ggml_opt_result linesearch_backtracking( // strong Wolfe condition (GGML_LINESEARCH_BACKTRACKING_STRONG_WOLFE) return count; } - return count; } }