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 ac6ce60 commit dd84a88Copy full SHA for dd84a88
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