We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a359a2 commit 06489afCopy full SHA for 06489af
src/llama-context.cpp
@@ -6,11 +6,9 @@
6
#include "llama-model.h"
7
#include "llama-kv-cache.h"
8
9
-#include <cassert>
10
#include <cstring>
11
#include <stdexcept>
12
#include <cinttypes>
13
-#include <cmath>
14
15
//
16
// llama_context
src/llama-kv-cache.cpp
@@ -7,6 +7,7 @@
#include <algorithm>
#include <cassert>
+#include <cmath>
#include <limits>
#include <map>
@@ -542,7 +543,7 @@ llm_graph_result_ptr llama_kv_cache_unified::build_graph_shift(
542
543
544
res->add_input(std::move(inp));
545
- return std::move(res);
546
+ return res;
547
}
548
549
llm_graph_result_ptr llama_kv_cache_unified::build_graph_defrag(
0 commit comments