Skip to content
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

[UR] Provide flexibility to replace unified-memory-framework repo and tag #1352

Merged
merged 1 commit into from
Feb 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions source/common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,14 @@ target_include_directories(ur_common PUBLIC
)

message(STATUS "Download Unified Memory Framework from github.com")
if (NOT DEFINED UMF_REPO)
set(UMF_REPO "https://github.com/oneapi-src/unified-memory-framework.git")
endif()

set(UMF_REPO "https://github.com/oneapi-src/unified-memory-framework.git")

# Merge pull request #119 from ldorau/Fix_arena_extent_split_and_arena_extent_merge
set(UMF_TAG 9bf7a0dc4dff76844e10edbb5c6e9d917536ef6d)
if (NOT DEFINED UMF_TAG)
# Merge pull request #119 from ldorau/Fix_arena_extent_split_and_arena_extent_merge
set(UMF_TAG 9bf7a0dc4dff76844e10edbb5c6e9d917536ef6d)
endif()

message(STATUS "Will fetch Unified Memory Framework from ${UMF_REPO}")

Expand Down