From 092c05cf39213210a1ce81bd74c36d57c71368ab Mon Sep 17 00:00:00 2001 From: Kacper Stefanski Date: Thu, 11 Jul 2024 10:33:16 +0200 Subject: [PATCH 1/2] support latest repos versions --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7aa8b36..e156f64 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,11 +35,11 @@ include(FetchContent) FetchContent_Declare( distributed-ranges GIT_REPOSITORY https://github.com/oneapi-src/distributed-ranges.git - GIT_TAG c618154a1bceda33e5d61e1536179aeaa11b68f4) + GIT_TAG main) FetchContent_MakeAvailable(distributed-ranges) FetchContent_Declare( cpp-format GIT_REPOSITORY https://github.com/fmtlib/fmt.git - GIT_TAG 0b0f7cf) + GIT_TAG master) FetchContent_MakeAvailable(cpp-format) From d94195ca8267b90ba99f2393be4d46c067787752 Mon Sep 17 00:00:00 2001 From: Kacper Stefanski Date: Thu, 11 Jul 2024 10:36:03 +0200 Subject: [PATCH 2/2] small README.md adjustments --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bdbaa7b..40d5b90 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ In Linux system (bash shell) download distributed-ranges-tutorial from GitHub an git clone https://github.com/mateuszpn/distributed-ranges-tutorial cd distributed-ranges-tutorial CXX=icpx CC=icx cmake -B build - cmake --build build + cmake --build build -j mpirun -n N ./build/src/example_name ``` @@ -48,6 +48,7 @@ In case your environment is not configured properly or you just prefer a hassle- cd custom-directory-name CXX=icpx CC=icx cmake -B build -DENABLE_SYCL=ON cmake --build build -j + mpirun -n N ./build/src/example_name ``` where 'custom-directory-name' stands for the name of a directory containing local repo data on a docker volume