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 f088b6a commit f4e664fCopy full SHA for f4e664f
src/llama-context.cpp
@@ -181,7 +181,7 @@ llama_context::llama_context(
181
// graph outputs buffer
182
{
183
// resized during inference when a batch uses more outputs
184
- if ((uint32_t) output_reserve(params.n_seq_max) < params.n_seq_max) {
+ if (output_reserve(params.n_seq_max) < params.n_seq_max) {
185
throw std::runtime_error("failed to reserve initial output buffer");
186
}
187
0 commit comments