Skip to content

Commit 1515916

Browse files
authored
Support latest repos versions #11
2 parents 4e4cc44 + d94195c commit 1515916

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ include(FetchContent)
3535
FetchContent_Declare(
3636
distributed-ranges
3737
GIT_REPOSITORY https://github.com/oneapi-src/distributed-ranges.git
38-
GIT_TAG c618154a1bceda33e5d61e1536179aeaa11b68f4)
38+
GIT_TAG main)
3939
FetchContent_MakeAvailable(distributed-ranges)
4040

4141
FetchContent_Declare(
4242
cpp-format
4343
GIT_REPOSITORY https://github.com/fmtlib/fmt.git
44-
GIT_TAG 0b0f7cf)
44+
GIT_TAG master)
4545
FetchContent_MakeAvailable(cpp-format)

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In Linux system (bash shell) download distributed-ranges-tutorial from GitHub an
2626
git clone https://github.com/mateuszpn/distributed-ranges-tutorial
2727
cd distributed-ranges-tutorial
2828
CXX=icpx CC=icx cmake -B build
29-
cmake --build build
29+
cmake --build build -j
3030
mpirun -n N ./build/src/example_name
3131
```
3232

@@ -48,6 +48,7 @@ In case your environment is not configured properly or you just prefer a hassle-
4848
cd custom-directory-name
4949
CXX=icpx CC=icx cmake -B build -DENABLE_SYCL=ON
5050
cmake --build build -j
51+
mpirun -n N ./build/src/example_name
5152
```
5253

5354
where 'custom-directory-name' stands for the name of a directory containing local repo data on a docker volume

0 commit comments

Comments
 (0)