Bogdan Opanchuk
Bogdan Opanchuk
Somewhere between Flatbuffers 2.0.0 and 2.0.5 (current) there has been a backwards incompatible change in how generated Rust files are laid out (#6731, if I'm not mistaken). The current [published...
Setup: Python 3.9.9, `pip list`: ``` attrs 21.4.0 iniconfig 1.1.1 packaging 21.3 pip 21.3.1 pluggy 1.0.0 py 1.11.0 pyparsing 3.0.7 pytest 7.0.1 setuptools 60.5.0 tomli 2.0.1 wheel 0.37.1 ``` (basically...
I want to implement a deserializer for anything that can be created out of `&[u8]`, and I want to report the resulting error, if any. I write the following `deserialize()`...
Imagine you're adding a `requests` dependency to your projects, as it's done in the tutorial. Currently this will result in `"requests>=2.27.1"` in the dependency list. This is most probably an...
MacOS 10.15.2, Python 3.7.5, PyOpenCL 2019.1.2 My machine has three available devices: - 0: Intel(R) Core(TM) i7-8850H CPU @ 2.60GHz - 1: Intel(R) UHD Graphics 630 - 2: AMD Radeon...
The new `pybind11` version does not install properly on MacOs 10.13.6. During the compilation the linker produces several warnings: ld: warning: ld: warning: ignoring file build/temp.macosx-10.13-x86_64-3.6/src/wrap_cl.o, file was built for...
This option would be helpful in the following usage scenario. Suppose that, in addition to command-line arguments, the options can be supplied via function arguments, or a config file. One...
Quite often it is not the elapsed time that I want to see when measuring a function's performance, but some function of it. For instance, if I have an FFT...
Currently `product()` iterates over its parameters in a "column-major" order (I guess, to be consistent with the order of array indices). I believe it would be useful to be able...
As far as I understand, it is supposed to be the standard deviation of the error used for LWE objects in new ciphertexts. But in every place new LWEs are...