-
## Generic Instantiation
Rust calls it monomorphization and in C++ it's called template specialization. In Chapel we just call it generic instantiation. This process is inherently challenging for l…
-
After checking out in detail the documentation for Chapel's compiler (https://chapel-lang.org/docs/usingchapel/compiling.html) and the help screen printed by the compiler itself using `chpl --help`, I…
ghost updated
6 years ago
-
# Software tools
The software tools listed here are ones that we've found useful for various [Wild Peaches](https://wildpeaches.xyz/) articles, or maybe we think they'll cool once we get around to th…
-
```
library(ivmte)
# error doesn't reproduce if I use all years
dt
-
-
We would be interested in incorporating and running the GROMOS force field in OpenMM. The GROMOS force field was parametrized using the reaction-field (RF) method to account for the electrostatic inte…
-
I implemented sub-quadratic attention (as described in https://arxiv.org/abs/2112.05682v2):
https://twitter.com/Birchlabs/status/1607503573906063362
https://github.com/Birch-san/diffusers/pull/1…
-
It appears that when a particularly large draft page is being previewed in the CMS, it will fail with this error in the browser: "Error While Sending Preview Data"
Looking at the logs, this seems to …
-
One thing that was realized in the `AbstractArray` interface is that traits are a convenient and powerful way of expressing ways of interacting with different types of arrays, the prototypical exampli…
-
Something like `Regex::new("x").find_iter().count()`, suggest to use [bytecount](https://github.com/llogiq/bytecount) instead, which is much faster.