You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running TBB whitebox tests, some test cases (e.g., those related to huge page memory) hardcode the huge page size as 2MB. If the system is configured with a non-2MB huge page size (e.g., 512MB or other sizes), the test assertions fail, reducing the adaptability of the test suite across environments.
/home/xxxxx/test/tbbmalloc/test_malloc_whitebox.cpp:xxx: FATAL ERROR: REQUIRE( allocSize == HUGE_PAGE_SIZE ) is NOT correct!
values: REQUIRE( 536870912 == 2097152 )
logged: Allocation size have to be aligned on Huge Page size internally.
This issue may affect CI/CD pipelines or cloud environments where non-2MB huge pages are common. If further debugging data or testing assistance is needed, feel free to request.
The text was updated successfully, but these errors were encountered:
When running TBB whitebox tests, some test cases (e.g., those related to huge page memory) hardcode the huge page size as 2MB. If the system is configured with a non-2MB huge page size (e.g., 512MB or other sizes), the test assertions fail, reducing the adaptability of the test suite across environments.
oneTBB/test/tbbmalloc/test_malloc_whitebox.cpp
Line 1263 in 280e32f
In my env, the config is:
so I got the error is:
like this issue #677
This issue may affect CI/CD pipelines or cloud environments where non-2MB huge pages are common. If further debugging data or testing assistance is needed, feel free to request.
The text was updated successfully, but these errors were encountered: