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.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Exception thrown at 0x00007FFABCBCC55C (ucrtbased.dll) in sd.ui.exe: 0xC0000005: Access violation reading location 0x000001E123A9C07C."
Which is occured at
void ggml_free(struct ggml_context * ctx)
at line 2355 in ggml.c
Which is called from ggml_extend.hpp at ggml_free
void free_params_buffer() { if (params_ctx != NULL) { ggml_free(params_ctx); params_ctx = NULL; } ...
which is called from the destructor of the GGMLModule
~GGMLModule() { free_params_buffer(); }
Which is called from the LoraModel destructor (extended from GGMLModule)
Which is called from StableDiffusionGGML destructor:
~StableDiffusionGGML() { ggml_backend_free(backend); }
which is called from free_sd_ctx what i called to remove the model from the (v)ram
I tried the following situations:
I think it's the same effect with the embeddings
The text was updated successfully, but these errors were encountered:
leejet#175 leejet#154 leejet#141 - remove lora mapping which is disal…
fc8be44
…low to release ram
The new master branch resolves this.
Sorry, something went wrong.
No branches or pull requests
"Exception thrown at 0x00007FFABCBCC55C (ucrtbased.dll) in sd.ui.exe: 0xC0000005: Access violation reading location 0x000001E123A9C07C."
Which is occured at
void ggml_free(struct ggml_context * ctx)
at line 2355 in ggml.c

Which is called from ggml_extend.hpp at ggml_free
which is called from the destructor of the GGMLModule
Which is called from the LoraModel destructor (extended from GGMLModule)
Which is called from StableDiffusionGGML destructor:
which is called from free_sd_ctx what i called to remove the model from the (v)ram
I tried the following situations:
I think it's the same effect with the embeddings
The text was updated successfully, but these errors were encountered: