Skip to content

Commit 5883f01

Browse files
committed
cont : bump max nodes to 8x model tensors
1 parent 033b306 commit 5883f01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/llama-context.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1312,7 +1312,7 @@ uint32_t llama_context::output_reserve(int32_t n_outputs) {
13121312
//
13131313

13141314
uint32_t llama_context::graph_max_nodes() const {
1315-
return std::max<uint32_t>(1024u, 6u*model.n_tensors());
1315+
return std::max<uint32_t>(1024u, 8u*model.n_tensors());
13161316
}
13171317

13181318
llm_graph_result * llama_context::get_gf_res_reserve() const {

0 commit comments

Comments
 (0)