Skip to content
Merged
Show file tree
Hide file tree
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
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