lb90

Results 122 comments of lb90

> Is it possible to add test cases? Sure :) P.S: will get back to this within 1 or 2 days...

Hi! Should I rebase to solve the conflict?

Hello @mikekaganski! https://github.com/Exiv2/exiv2/issues/3225 is fixed by the LLVM/LibC++ PR linked above. On the other hand, issue https://developercommunity.visualstudio.com/t/setlocale-may-crash-CRT-in-some-cases/10603395 must be fixed in the UCRT. The UCRT is source-available but not open...

I think AVX512 support was added in https://github.com/google/skia/commit/9cb4de5da15a1b438003e5a7ff3a27c8804f445a Skia uses `cpuid` at runtime to detect if `AVX512` is supported (and not [IsProcessorFeaturePresent](https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-isprocessorfeaturepresent)): * https://github.com/google/skia/blob/main/modules/skcms/skcms.cc#L2468 * https://github.com/google/skia/blob/main/src/core/SkCpu.cpp#L62 ~~I wonder what happens...

IMO this could be https://randomascii.wordpress.com/2016/12/05/vc-archavx-option-unsafe-at-any-speed/

> but sadly I cannot run the exe: WGL: The driver does not appear to support OpenGL Hi @raedrizqie! If you can't run the example, it might be useful to...

I have built skia locally with MINGW_ARCH=ucrt64 Since `GrContextThreadSafeProxyPriv::Make` is defined in src/gpu/ganesh/GrContextThreadSafeProxy.cpp, I have checked the compiled `.o` file in out/Release-UCRT64/obj/src/gpu/ganesh. Turns out it contains vmovdqu64: ``` 00000e70 struct...

Ah, thanks! Actually I couldn't find where that flag came from :smiley: Ok, so it's https://github.com/msys2/MINGW-packages/blob/master/mingw-w64-skia/0002-add-mingw-toolchain-skia.patch#L200 With that GCC can generate code that's not compatible with all CPUs. Let's see...

@kasper93 @lazka How can I invoke the equivalent of `rst2pdf.exe ` using `python` directly? I tried `python -m rst2pdf ` but it fails with: `D:/msys64/clang64/bin/python.exe: No module named rst2pdf.__main__; 'rst2pdf'...