Adrian
Adrian
`dt-struct/define-datatype!` will throw an Exception if any of the fields has `:datatype` `:pointer` and `:n-elems` is greater than one. Below is a minimal repro: ```clojure > (dt-struct/define-datatype! ::HasPointerArray [{:n-elems 10,...
I've been enjoying ggml indirectly through llama.cpp, whisper.cpp, and clip.cpp on my m1 mac. I was interested in trying to train some models directly using ggml+metal, but ran into a...
hasheq seems to work for ropes with non empty ropes, but throws for empty ropes. A short repro: ```clojure > (contains? #{(ropes/rope [])} :whatever) Execution error (NullPointerException) at ropes.core.Rope/hasheq (core.clj:28)....
I haven't fully investigated the issue, but I do have a short repro: ```clojure > (ropes/view (ropes/snip (ropes/rope [1 2]) 1 2) 0 1) Execution error (StackOverflowError) at ropes.core/rope (core.clj:331)....
The current native dependencies for datalevin require more recent versions of the OSX operating system than might otherwise be required. Calling a datalevin function that loads native dependencies will throw...
The latest native datalevin dependencies for macosx link to a homebrew version of libomp. This means mac osx users who don't use homebrew (eg. macports users) cannot use the latest...
Using `dt-ffi/define-library-interface` waits to load function symbols until runtime (this is good), but once a function is called, all of the symbols for the library are loaded and any missing...
It should be possible to pass a monospaced font to the inspector.
This is confusing. At the very least, the docs should highlight this. It probably makes sense to also return width/height in points.
There was some work done to improve destructuring support in https://github.com/phronmophobic/membrane/issues/53. Some known issues: ```clojure ;; namespaced keys aren't supported in let statements (defui foo [{:keys [a]}] (let [{:foo/keys [b]}...