Skip to content

Commit

Permalink
Support latest repos versions #11
Browse files Browse the repository at this point in the history
  • Loading branch information
lslusarczyk authored Jul 11, 2024
2 parents 4e4cc44 + d94195c commit 1515916
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand All @@ -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
Expand Down

0 comments on commit 1515916

Please sign in to comment.