Borislav Stanimirov

Results 60 issues of Borislav Stanimirov

The default stack size on Windows with MSVC is 1MB. This is not enough for `test1` and it crashes with a stack overflow. This PR increases the stack size for...

The assertion here https://github.com/ggerganov/ggml/blob/0a63fc0f6cb1915d1fa5c62c8f0f018d072253c9/tests/test2.c#L75 fails `res` is `GGML_OPT_DID_NOT_CONVERGE` at this point I have not done any digging here so unfortunately I have no other details whatsoever

In the spirit of this PR: https://github.com/ggerganov/llama.cpp/pull/1889 This is a cosmetic change. No functionality is changed. Warnings and compilation errors are fixed (and some warnings ignored) leading to a successful...

Mixin allocators are allowed, but all others, the ones that are `std::pmr::polymorphic_allocator` in C++, are not. C code uses the default allocation for all of them. Moreover since objects and...

capi

I'm not satisfied with the naming convention in the C API especially in terms of code auto-completion Let's rename the handles with an `h` prefix like `dnmx_hobject`, `dnmx_htype` and so...

capi

This happens when running the plugin demo with asan on mac: It does not happen with clang15 on Linux and it seems that it shouldn't happen on mac as well....

testing

Add target and header installation (dynamix vs dynamix-dev)

build

Currently the types registry in the domain is a `std::set`. Types are allocated as a single buffer of variable width, and thus cannot be stored by value. So, since, every...

performance

Test: * [ ] Mixin definition with simple messages * [ ] Mixin definition with complex messages * [ ] Mixin definition with no messages messages * [ ] Message...

testing