This repository was archived by the owner on Nov 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,11 @@ include(FetchContent)
3535FetchContent_Declare(
3636 distributed-ranges
3737 GIT_REPOSITORY https://github.com/oneapi-src/distributed-ranges.git
38- GIT_TAG c618154a1bceda33e5d61e1536179aeaa11b68f4 )
38+ GIT_TAG main )
3939FetchContent_MakeAvailable(distributed-ranges)
4040
4141FetchContent_Declare(
4242 cpp-format
4343 GIT_REPOSITORY https://github.com/fmtlib/fmt.git
44- GIT_TAG 0b0f7cf )
44+ GIT_TAG master )
4545FetchContent_MakeAvailable(cpp-format)
Original file line number Diff line number Diff 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
5354where 'custom-directory-name' stands for the name of a directory containing local repo data on a docker volume
You can’t perform that action at this time.
0 commit comments