Markus Mottl

Results 41 comments of Markus Mottl

I don't know about your particular system configuration, but it seems that your LAPACK library is not properly linking with the BLAS library, on which it depends. This is certainly...

I don't have any plans for adding GGLSE myself, but please feel free to submit a patch. I'm glad the library works well for you.

I'm afraid, but I don't really develop OCamlMakefile anymore. You are much better off switching to [Dune](https://github.com/ocaml/dune). But feel free to submit any patches you might need.

It would certainly make sense to switch to PCRE2. Unfortunately, I do not currently have time to work on this. I don't know to which extent PCRE2 is backward-compatible. I...

I'm afraid, but I couldn't replicate this problem on Big Sur. I don't have an M1 platform though. You may want to check the installation of your PostgreSQL library. Mine...

I'm afraid, but notice processors do not currently work as they should due to some limitations of the OCaml runtime. You may want to read issues https://github.com/mmottl/postgresql-ocaml/issues/37 and https://github.com/paurkedal/ocaml-caqti/issues/33 Basically,...

It usually takes at least many months for features to get into the OCaml runtime. It would be especially hard right now due to the introduction of multicore, from which...

Since there won't be any global lock on the runtime anymore, multicore should make it possible for any thread to enter OCaml land without lock acquisitions. I could certainly imagine...

Sounds interesting, I believe I get the idea. Having to force all suspensions is fine if you need to take out all elements, because then the cost is amortized. But...

Ah, yes, indeed, I was only thinking of the worst case here. It's nice that this worst-case logarithmic cost is amortized over the insertions of all elements, too, and thus...