Dmitry Kazakov

Results 9 issues of Dmitry Kazakov

Vc version / revision | Operating System | Compiler & Version | Compiler Flags | Assembler & Version | CPU ----------------------|------------------|--------------------|----------------|---------------------|---- Vc 1.4.1 and 1.3.3 | Windows 10 | Mingw64:...

Hi! I have found a weird issue in `lager::lenses::getset`. It looks like both lambdas accept `std::forward(p)`, which causes the object to be **moved** twice. To make this happen, both getter...

…nses WARNING: this patch is only a proof of concept. It breaks a lot of unittests and I don't know how to fix them. The perpose of this patch is...

This is the final version of the patch that fixes both, double-move problem and extra getter call on `set(lens,...)` operation. The patch ensures the following requirements: 1) When `view(lens, whole)`...

I have a feeling like there is some bug in mapping readers holding a tuple. It seems to be impossible to map-unzip them into a normal function. Here is a...

std::unary_function and std::binary_function are removed from the standard in C++17.

This patchset makes the launcher .exe file on Windows more usable: 1) The .exe file (and its script) is now relocatable, because it falls back to `python.exe` when shebang line...

According to Intel's manual AVX and AVX512 can be explicitly disabled by the OS by setting corresponding bits of XCR0 register. It seems like Linux uses this feature to mitigate...

Ideally the patch CPU detection code should also check if the length of SVE and RVV is actually supported by the current CPU implementation (i.e. ZCR_Elx.LEN register for SVE and...