Skip to content

Commit

Permalink
Merge pull request #1352 from againull/againull/override_umf_repo
Browse files Browse the repository at this point in the history
[UR] Provide flexibility to replace unified-memory-framework repo and tag
  • Loading branch information
igchor committed Feb 16, 2024
2 parents 1ac6f95 + 3487672 commit 227a5ed
Showing 1 changed file with 7 additions and 4 deletions.
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

0 comments on commit 227a5ed

Please sign in to comment.