Vladislav Shchapov
Vladislav Shchapov
> @phprus , I would like to clarify. You see the the hang for [f7c6435](https://github.com/oneapi-src/oneTBB/commit/f7c64356753cc9b443f9c6dcd8fe231c15375518), is it correct? Yes. I run the ``test_scheduler_mix`` test overnight on my computer and in...
@Alexandr-Konovalov OS: Debian 12 Build information: ``` phprus@srv2:~/test/tbb/oneTBB-f7c64356753cc9b443f9c6dcd8fe231c15375518/build/cpp20rwd$ cmake -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_CXX_STANDARD=20 -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON ../.. -- The CXX compiler identification is GNU 12.2.0 -- Detecting CXX compiler ABI info -- Detecting...
Any news?
Any news?
Looks like a bug in MinGW: https://osdn.net/projects/mingw/ticket/39565 (broken ssl). As I see, MinGW has a problem with versions and trademarks: > Thank you for your report, but may I ask...
Error may be caused by using ``-flto=thin``. zlib-ng does not support LTO in non-native builds (native build cmake flags: ``WITH_NATIVE_INSTRUCTIONS`` and ``NATIVE_ARCH_OVERRIDE`` for customize arch compiller flags instead of ``-march=native``).
@chLFF If your CPU supports RVV, please replace the ``riscv_check_features`` function (https://github.com/zlib-ng/zlib-ng/blob/5b04d9ce043d1b690a648e335fd11aac71d91e6f/arch/riscv/riscv_features.c#L47-L52) with: ```c void Z_INTERNAL riscv_check_features(struct riscv_cpu_features *features) { features->has_rvv = 1; } ``` If the error is reproducible,...
https://github.com/zlib-ng/zlib-ng/issues/1769#issuecomment-2312001069 is not equivalent to https://github.com/zlib-ng/zlib-ng/issues/1769#issuecomment-2311797756 For test we need to manual set of ``features->has_rvv`` to ``1``.
> And i don't understand why the equivalence is false. Because i also manually set features->has_rvv to 1 but only inside `riscv_check_features_compile_time(features)` which determined during compiling. ``riscv_check_features_compile_time`` has macro conditions....
@junchao-loongson Thanks for the help with testing. Thanks for the assembler code to convert `__m128i` types to `__m256i`.