Skip to content

Commit 589b8c1

Browse files
JoeOsterakertesz
andauthored
dpc_reduce update readme (#161)
* Updating License file to no date in the title /* * Copyright (c) 2020 Intel Corporation * * This program and the accompanying materials are made available under the * terms of the The MIT License which is available at * https://opensource.org/licenses/MIT. * * SPDX-License-Identifier: MIT */ * Update README.md * Fix FPGA entries * Update README.md Updates per request of sranikonda * Update README.md * removing duplicate samples after transfering to dwarves folders * Update Makefile.win changing compiler name from "dpcpp-cl" to "dpcpp" * Update Makefile.win * Update Makefile.win.fpga * Update CMakeLists.txt * Update CMakeLists.txt * Update CMakeLists.txt * Update README.md * Update README.md Co-authored-by: akertesz <[email protected]>
1 parent e0e8016 commit 589b8c1

File tree

4 files changed

+15
-17
lines changed

4 files changed

+15
-17
lines changed

DirectProgramming/DPC++/ParallelPatterns/dpc_reduce/README.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -83,17 +83,18 @@ where
8383

8484

8585
### Example of Output
86-
Rank #0 runs on: lqnguyen-NUC1, uses device: Intel(R) Gen9 HD Graphics NEO
87-
Number of steps is 1000000
88-
Cpu Seq calc: PI =3.14 in 0.00422 seconds
89-
Cpu TBB calc: PI =3.14 in 0.00177 seconds
90-
dpstd native: PI =3.14 in 0.209 seconds
91-
dpstd native2: PI =3.14 in 0.213 seconds
92-
dpstd native3: PI =3.14 in 0.00222 seconds
93-
dpstd native4: PI =3.14 in 0.00237 seconds
94-
dpstd two steps: PI =3.14 in 0.0014 seconds
95-
dpstd transform_reduce: PI =3.14 in 0.000528 seconds
96-
mpi native: PI =3.14 in 0.548 seconds
97-
mpi transform_reduce: PI =3.14 in 0.000498 seconds
98-
succes
99-
86+
```c++
87+
Rank #0 runs on: lqnguyen-NUC1, uses device: Intel(R) Gen9 HD Graphics NEO \
88+
Number of steps is 1000000 \
89+
Cpu Seq calc: PI =3.14 in 0.00422 seconds \
90+
Cpu TBB calc: PI =3.14 in 0.00177 seconds \
91+
dpstd native: PI =3.14 in 0.209 seconds \
92+
dpstd native2: PI =3.14 in 0.213 seconds \
93+
dpstd native3: PI =3.14 in 0.00222 seconds \
94+
dpstd native4: PI =3.14 in 0.00237 seconds \
95+
dpstd two steps: PI =3.14 in 0.0014 seconds \
96+
dpstd transform_reduce: PI =3.14 in 0.000528 seconds \
97+
mpi native: PI =3.14 in 0.548 seconds \
98+
mpi transform_reduce: PI =3.14 in 0.000498 seconds \
99+
succes \
100+
```

Libraries/oneDNN/dpcpp_interoperability/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
cmake_minimum_required(VERSION 2.8.11)
22
if("${CMAKE_CXX_COMPILER}" STREQUAL "")
3-
set(CMAKE_C_COMPILER "clang")
43
set(CMAKE_CXX_COMPILER "dpcpp")
54
endif()
65
project (dpcpp_interoperability)

Libraries/oneDNN/getting_started/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
cmake_minimum_required(VERSION 2.8.11)
22
if("${CMAKE_CXX_COMPILER}" STREQUAL "")
3-
set(CMAKE_C_COMPILER "clang")
43
set(CMAKE_CXX_COMPILER "dpcpp")
54
endif()
65
project (getting_started)

Libraries/oneDNN/simple_model/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
cmake_minimum_required(VERSION 2.8.11)
22
if("${CMAKE_CXX_COMPILER}" STREQUAL "")
3-
set(CMAKE_C_COMPILER "clang")
43
set(CMAKE_CXX_COMPILER "dpcpp")
54
endif()
65
project (simple_model)

0 commit comments

Comments
 (0)