-
Notifications
You must be signed in to change notification settings - Fork 35
Add UMF_BUILD_OS_MEMORY_PROVIDER option to disable OS memory provider #112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ jobs: | |
compiler: [{c: gcc, cxx: g++}] | ||
pool_tracking: ['ON', 'OFF'] | ||
shared_library: ['OFF'] | ||
os_provider: ['ON'] | ||
include: | ||
- os: 'ubuntu-20.04' | ||
build_type: Release | ||
|
@@ -29,6 +30,18 @@ jobs: | |
build_type: Release | ||
compiler: {c: gcc, cxx: g++} | ||
shared_library: 'ON' | ||
# test os_provider='OFF' with shared_library='ON' | ||
- os: 'ubuntu-22.04' | ||
build_type: Release | ||
compiler: {c: gcc, cxx: g++} | ||
shared_library: 'ON' | ||
os_provider: 'OFF' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what is the practical reason to test without the OS memory provider? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just to test if the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @vinser52 UR or oneCCL does not require an OS provider. oneCCL does not even have libnuma or hwloc installed on its CI systems. |
||
# test os_provider='OFF' with shared_library='OFF' | ||
- os: 'ubuntu-22.04' | ||
build_type: Release | ||
compiler: {c: gcc, cxx: g++} | ||
shared_library: 'OFF' | ||
os_provider: 'OFF' | ||
runs-on: ${{matrix.os}} | ||
|
||
steps: | ||
|
@@ -54,6 +67,7 @@ jobs: | |
-DUMF_BUILD_SHARED_LIBRARY=${{matrix.shared_library}} | ||
-DCMAKE_C_COMPILER=${{matrix.compiler.c}} | ||
-DCMAKE_CXX_COMPILER=${{matrix.compiler.cxx}} | ||
-DUMF_BUILD_OS_MEMORY_PROVIDER=${{matrix.os_provider}} | ||
-DUMF_ENABLE_POOL_TRACKING=${{matrix.pool_tracking}} | ||
-DUMF_FORMAT_CODE_STYLE=OFF | ||
-DUMF_DEVELOPER_MODE=ON | ||
|
Uh oh!
There was an error while loading. Please reload this page.