Vladislav Shchapov
Vladislav Shchapov
@isaevil I think it's better to add a cmake option to select the behavior on macOS. What do you think?
Maybe check the value of the macro ``SIZE_MAX`` (https://en.cppreference.com/w/c/types/limits)? ```c++ #include #if SIZE_MAX
``__SIZEOF_POINTER__`` - is non standard and not a portable solution. MSVC does not define this macro.
> If I'm not mistaken sizeof is compile time evaluation. https://godbolt.org/z/1Phzbc6nh At compile time, but not at preprocessing time.
@pavelkumbrasev I think yes. We can. Offtopic: The ``test_task_arena`` test has timeout on Windows. ``` 26/138 Test #26: test_task_arena ..........................***Timeout 185.82 sec TBB Warning: The number of workers is currently...
@pavelkumbrasev Issue already created: https://github.com/oneapi-src/oneTBB/issues/952 My comment in issue: https://github.com/oneapi-src/oneTBB/issues/952#issuecomment-1336448704 I think the problem of hangs on ARM and multiple x86 test slowdowns on an overloaded system has a similar...
@Dead2 Fix for MSVC: #1725 Fix for MSAN: #1726
Fix for ``arch/s390/dfltcc_detail.h:222:12: error: call to undeclared function 'ZALLOC'``: #1728 Fix for CI: #1726, #1725
> OK. @KungFuJesus Let me confirm if I understood you: are you suggesting to replace `features->has_avx512` with the following 3 new features? `features->has_avx512f`, `features->has_avx512dq` and `features->has_avx512bw`. I think this is...