Ben Ruijl
Ben Ruijl
At the moment it seems that on every request, a file is loaded from disk. Can this be cached?
Fixes #25
I think `is_zero` should only check the real part instead of all the components: ``` fn is_zero(&self) -> bool { self.iter().all(|x| x.is_zero()) } ```
At the moment the dual implementation of the `MulAdd` trait simply does `self * a + b`, which actually doesn't honor the trait: > Fused multiply-add. Computes (self * a)...
If there is an `anc` folder in the source directory, it is intended as ancillary material (per arxiv's directory structure convention) and needs to be copied into the target folder.
The AUR package referred to the in the readme does not exist.
This commit overrides `__getstate__` and `__setstate__` to store the source address as part of the state. As a result, the `SourceAddressAdapter` can be pickled correctly. For more information, see: https://stackoverflow.com/questions/27711907/python-unpickle-a-object-with-a-class-instance-inside
## 🐛 Bug Reports Using the minimal setup below, which contains a `main.rs` and a `lib.rs`, I get the following linker error: ```log error: linking with `cc` failed: exit code:...
I expect the performance of the quad prec literal `NUM_rq` to have the same performance of doing `real128(NUM.q)`, however it is much slower. Running `perf` on some sample code shows...
I would like to load a library with `RTLD_GLOBAL` as I want to use the symbols for a subsequent library load. Can you add this option?