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 5f3f1b8 commit 5fd4cefCopy full SHA for 5fd4cef
ggml/src/ggml-alloc.c
@@ -92,7 +92,6 @@ void ggml_tallocr_alloc(struct ggml_tallocr * talloc, struct ggml_tensor * tenso
92
fprintf(stderr, "%s: not enough space in the buffer to allocate %s (needed %zu, available %zu)\n",
93
__func__, tensor->name, size, ggml_backend_buffer_get_size(talloc->buffer) - talloc->offset);
94
GGML_ASSERT(!"not enough space in the buffer");
95
- return;
96
}
97
98
void * addr = (char *)ggml_backend_buffer_get_base(talloc->buffer) + talloc->offset;
0 commit comments