Skip to content

Support latest repos versions #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 11, 2024
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
Loading