Skip to content

Commit e10936b

Browse files
committed
reformat files
1 parent d4f4257 commit e10936b

File tree

6 files changed

+9
-12
lines changed

6 files changed

+9
-12
lines changed

.github/workflows/daily.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ on:
1616
jobs:
1717
checks:
1818
runs-on: devcloud
19+
env:
20+
CXX: icpx
21+
CC: icx
1922
steps:
2023
- uses: actions/checkout@v4
2124
- name: Apt installs
@@ -28,11 +31,5 @@ jobs:
2831
cache: 'pip'
2932
- run: pip install pre-commit
3033
- run: pre-commit run --all-files
31-
icpx:
32-
runs-on: devcloud
33-
env:
34-
CXX: icpx
35-
CC: icx
36-
steps:
3734
- name: Build & Run
3835
run: srun -p pvc-shared -w idc-beta-batch-pvc-node-12 scripts/daily.sh

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ In case your environment is not configured properly or you just prefer a hassle-
4545
git clone https://github.com/mateuszpn/distributed-ranges-tutorial
4646
cd distributed-ranges-tutorial
4747
docker run -it -v $(pwd):/custom-directory-name -u root docker.io/intel/oneapi:latest /bin/bash
48-
cd custom-directory-name
48+
cd custom-directory-name
4949
CXX=icpx CC=icx cmake -B build -DENABLE_SYCL=ON
5050
cmake --build build -j
5151
```
@@ -147,6 +147,6 @@ The example shows the distributed nature of dr data structures. The distributed_
147147
_Please note: after each loop the vector content is printed with `fmt::print()`. The formatter function for `distributed_vector` is rather slow, as it gets the vector element by element, both from local node and remote nodes. You can think about customised, more effective way of results presentation._
148148

149149
<!--
150-
Consider adding one more example:
150+
Consider adding one more example:
151151
*Simple 2-D operation - Find a pattern in the randomly filled array*
152152
-->

scripts/daily.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ cmake --build build -j
1717

1818
mpirun -n 2 ./build/src/example1
1919
mpirun -n 2 ./build/src/example2
20-
mpirun -n 2 ./build/src/example3
20+
mpirun -n 2 ./build/src/example3

security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Security Policy
2-
Intel is committed to rapidly addressing security vulnerabilities affecting our customers and providing clear guidance on the solution, impact, severity and mitigation.
2+
Intel is committed to rapidly addressing security vulnerabilities affecting our customers and providing clear guidance on the solution, impact, severity and mitigation.
33

44
## Reporting a Vulnerability
55
Please report any security vulnerabilities in this project utilizing the guidelines [here](https://www.intel.com/content/www/us/en/security-center/vulnerability-handling-guidelines.html).

src/example1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ int main(int argc, char **argv) {
2929
mhp::finalize();
3030

3131
return 0;
32-
}
32+
}

src/example3.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ int main(int argc, char **argv) {
5858
mhp::finalize();
5959

6060
return 0;
61-
}
61+
}

0 commit comments

Comments
 (0)