Skip to content

Commit 49af41f

Browse files
authored
Double precision fix for Jacobi, migrate from dpcpp and bug fixes (#1222)
* Add Jacobi Iterative Method Sample * Add first version of Jacobi Eigen Solver * Modify Eigen * Rremove Eigen and modify Iterative * Change name of files * Change README * Change README * Change README * Change values * Change Cmakelists * Modify optimized gpu * change selector * reamove wait * Change names of files and add comments * Change cpu version and README * Directory * Add cpu offload pic * Remove pics * Pic * Move pic * Update README * Add files via upload * Update README.md * Modify multi gpu * Modify multi gpu * Modify multi gpu * Modify multi gpu * Modify multi gpu * Modify multi gpu * Modify multi gpu * Modify multi gpu * Modify multi gpu * Modify multi gpu * Modify multi gpu * Modify multi gpu * Update README * Add License.txt * Update README.md * Final commit * Update README.md * Update README.md * Clean * Update README.md * Update README.md * Change directory * test multigpu * test multigpu * test multigpu * test multigpu * test multigpu * test multigpu * Update README.md * Update README.md * Change graphs * Update README.md * Add files via upload * Delete files * Add files via upload * Update README.md * Rename direcotry * Update sample.json * Apply clang formating * Change names * Add failsafe * Add failsafe * Apply clang formmating * Change formatting * Change varaible names * Create github-repo-stats.yml * Update github-repo-stats.yml * Update github-repo-stats.yml * Remove workflow * Fix for double precision * Migrate from dpcpp to icpx + bug fixes * Change compiler and few bug fixes
1 parent bc3471f commit 49af41f

File tree

38 files changed

+102
-95
lines changed

38 files changed

+102
-95
lines changed

DirectProgramming/DPC++/DenseLinearAlgebra/guided_jacobi_iterative_gpu_optimization/src/2_guided_jacobi_iterative_solver_gpu.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
using namespace sycl;
1818

19-
typedef double Real;
19+
typedef float Real;
2020

2121
// Program variables, feel free to change anything .
2222
static const int kSize = 30000;
@@ -29,9 +29,7 @@ static const std::uint32_t kSeed = 666;
2929
std::ofstream outfile;
3030

3131
// Function responsible for generating a float type
32-
// diagonally dominant matrix. Float had to be used
33-
// as using double would result in segmentation faults
34-
// for extreamlly large matrixes. This is also an example
32+
// diagonally dominant matrix. This is also an example
3533
// of using sycl based RNG which had to be used as using
3634
// external (non sycl) functions slows down the execution
3735
// drasticly.

DirectProgramming/DPC++/DenseLinearAlgebra/guided_jacobi_iterative_gpu_optimization/src/3_guided_jacobi_iterative_solver_multi_gpu.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
using namespace sycl;
1818

19-
typedef double Real;
19+
typedef float Real;
2020

2121
// Program variables, feel free to change anything .
2222
static const int kSize = 30000;
@@ -29,9 +29,7 @@ static const std::uint32_t kSeed = 666;
2929
std::ofstream outfile;
3030

3131
// Function responsible for generating a float type
32-
// diagonally dominant matrix. Float had to be used
33-
// as using double would result in segmentation faults
34-
// for extreamlly large matrixes. This is also an example
32+
// diagonally dominant matrix. This is also an example
3533
// of using sycl based RNG which had to be used as using
3634
// external (non sycl) functions slows down the execution
3735
// drasticly.

DirectProgramming/DPC++/Jupyter/sycl-performance-portability-training/Makefile

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
all: mm_dpcpp_mkl mm_dpcpp_basic mm_dpcpp_basic_full mm_dpcpp_ndrange mm_dpcpp_ndrange_var mm_dpcpp_localmem mm_dpcpp_localmem_wg
22

33
mm_dpcpp_mkl: lab/mm_dpcpp_mkl.cpp lab/mm_dpcpp_common.cpp
4-
dpcpp lab/mm_dpcpp_mkl.cpp lab/mm_dpcpp_common.cpp -DMKL_ILP64 -I$MKLROOT/include -L$MKLROOT/lib/intel64 -lmkl_sycl -lmkl_intel_ilp64 -lmkl_sequential -lmkl_core -lsycl -lOpenCL -lpthread -lm -ldl -O3 -o lab/mm_dpcpp_mkl
4+
icpx lab/mm_dpcpp_mkl.cpp lab/mm_dpcpp_common.cpp -DMKL_ILP64 -I$MKLROOT/include -L$MKLROOT/lib/intel64 -fsycl -lmkl_sycl -lmkl_intel_ilp64 -lmkl_sequential -lmkl_core -lsycl -lOpenCL -lpthread -lm -ldl -O3 -o lab/mm_dpcpp_mkl
55

66
mm_dpcpp_basic: lab/mm_dpcpp_basic.cpp lab/mm_dpcpp_common.cpp
7-
dpcpp lab/mm_dpcpp_basic.cpp lab/mm_dpcpp_common.cpp -o lab/mm_dpcpp_basic
7+
icpx lab/mm_dpcpp_basic.cpp lab/mm_dpcpp_common.cpp -o lab/mm_dpcpp_basic
88

99
mm_dpcpp_basic_full: lab/mm_dpcpp_basic_full.cpp
10-
dpcpp lab/mm_dpcpp_basic_full.cpp -o lab/mm_dpcpp_basic_full
10+
icpx lab/mm_dpcpp_basic_full.cpp -o lab/mm_dpcpp_basic_full
1111

1212
mm_dpcpp_ndrange: lab/mm_dpcpp_ndrange.cpp lab/mm_dpcpp_common.cpp
13-
dpcpp lab/mm_dpcpp_ndrange.cpp lab/mm_dpcpp_common.cpp -o lab/mm_dpcpp_ndrange
13+
icpx lab/mm_dpcpp_ndrange.cpp lab/mm_dpcpp_common.cpp -o lab/mm_dpcpp_ndrange
1414

1515
mm_dpcpp_ndrange_var: lab/mm_dpcpp_ndrange_var.cpp lab/mm_dpcpp_common.cpp
16-
dpcpp lab/mm_dpcpp_ndrange_var.cpp lab/mm_dpcpp_common.cpp -o lab/mm_dpcpp_ndrange_var
16+
icpx lab/mm_dpcpp_ndrange_var.cpp lab/mm_dpcpp_common.cpp -o lab/mm_dpcpp_ndrange_var
1717

1818
mm_dpcpp_localmem: lab/mm_dpcpp_localmem.cpp lab/mm_dpcpp_common.cpp
19-
dpcpp lab/mm_dpcpp_localmem.cpp lab/mm_dpcpp_common.cpp -o lab/mm_dpcpp_localmem
19+
icpx lab/mm_dpcpp_localmem.cpp lab/mm_dpcpp_common.cpp -o lab/mm_dpcpp_localmem
2020

2121
mm_dpcpp_localmem_wg: lab/mm_dpcpp_localmem.cpp lab/mm_dpcpp_common_wg.cpp
22-
dpcpp lab/mm_dpcpp_localmem.cpp lab/mm_dpcpp_common_wg.cpp -o lab/mm_dpcpp_localmem_wg
22+
icpx lab/mm_dpcpp_localmem.cpp lab/mm_dpcpp_common_wg.cpp -o lab/mm_dpcpp_localmem_wg
2323

2424
run:
2525
lab/mm_dpcpp_mkl

Libraries/oneCCL/oneCCL_Getting_Started/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
cmake_minimum_required(VERSION 3.4)
22
if("${CMAKE_CXX_COMPILER}" STREQUAL "")
33
set(CMAKE_C_COMPILER "icx")
4-
set(CMAKE_CXX_COMPILER "dpcpp")
4+
set(CMAKE_CXX_COMPILER "icpx")
5+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsycl")
56
endif()
67
project (oneCCL_Getting_Started)
78
if("$ENV{EXAMPLE_ROOT}" STREQUAL "")

Libraries/oneCCL/oneCCL_Getting_Started/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Users can rebuild the cpu_allreduce_test.cpp by typing "make cpu_allreduce_test"
119119
cd oneapi-toolkit/oneCCL/oneCCL_Getting_Started
120120
mkdir build
121121
cd build
122-
cmake .. -DCMAKE_C_COMPILER=icx -DCMAKE_CXX_COMPILER=dpcpp -DCOMPUTE_BACKEND=dpcpp
122+
cmake .. -DCMAKE_C_COMPILER=icx -DCMAKE_CXX_COMPILER=icpx -DCOMPUTE_BACKEND=icpx
123123
make sycl_allreduce_test
124124
```
125125
> NOTE: The source file "sycl_allreduce_test.cpp" will be copied from ${INTEL_ONEAPI_INSTALL_FOLDER}/ccl/latest/examples/sycl to build/src/sycl folder.

Libraries/oneDPL/gamma-correction/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
set(CMAKE_CXX_COMPILER "dpcpp")
1+
set(CMAKE_CXX_COMPILER "icpx")
2+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsycl")
23
# Set default build type to RelWithDebInfo if not specified
34
if (NOT CMAKE_BUILD_TYPE)
45
message (STATUS "Default CMAKE_BUILD_TYPE not set using Release with Debug Info")

Libraries/oneDPL/maxloc_reductions/GNUmakefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ run_all: maxloc_operator maxloc_implicit maxloc_buffered maxloc_usm
1111
./maxloc_usm
1212

1313
maxloc_operator: maxloc_operator.cpp
14-
dpcpp $< -o $@
14+
icpx $< -fsycl -o $@
1515

1616
maxloc_implicit: maxloc_implicit.cpp
17-
dpcpp $< -o $@
17+
icpx $< -fsycl -o $@
1818

1919
maxloc_buffered: maxloc_buffered.cpp
20-
dpcpp $< -o $@
20+
icpx $< -fsycl -o $@
2121

2222
maxloc_usm: maxloc_usm.cpp
23-
dpcpp $< -o $@
23+
icpx $< -fsycl -o $@
2424

2525
clean:
2626
-rm -f maxloc_operator maxloc_implicit maxloc_buffered maxloc_usm

Libraries/oneDPL/stable_sort_by_key/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
set(CMAKE_CXX_COMPILER "dpcpp")
1+
set(CMAKE_CXX_COMPILER "icpx")
2+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsycl")
23
# Set default build type to RelWithDebInfo if not specified
34
if (NOT CMAKE_BUILD_TYPE)
45
message (STATUS "Default CMAKE_BUILD_TYPE not set using Release with Debug Info")

Libraries/oneMKL/black_scholes/GNUmakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ mkl_path := $(MKL)
1414
acc := $(strip $(ACC))
1515
headers := $(wildcard *.hpp)
1616

17-
cxx_flags := -O3 -DMKL_ILP64 -I$(MKLROOT)/include -fno-sycl-early-optimizations
17+
cxx_flags := -O3 -fsycl -DMKL_ILP64 -I$(MKLROOT)/include -fno-sycl-early-optimizations
1818
ldxx_flags := -L${MKLROOT}/lib/intel64 -lmkl_sycl -lmkl_intel_ilp64 -lmkl_sequential -lmkl_core -lsycl -lOpenCL -lpthread -lm -ldl -fsycl-device-code-split=per_kernel
19-
cxx := dpcpp
19+
cxx := icpx
2020

2121
ifneq ($(acc),)
2222
cxx_flags += -DACC_$(acc)

Libraries/oneMKL/block_cholesky_decomposition/GNUmakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ MKL_COPTS = -DMKL_ILP64 -I"${MKLROOT}/include"
88
MKL_LIBS = -L${MKLROOT}/lib/intel64 -lmkl_sycl -lmkl_intel_ilp64 -lmkl_sequential -lmkl_core -lsycl -lOpenCL -lpthread -lm -ldl
99

1010
factor: factor.cpp dpbltrf.cpp auxi.cpp
11-
dpcpp $^ -o $@ -fsycl-device-code-split=per_kernel $(MKL_COPTS) $(MKL_LIBS)
11+
icpx $^ -o $@ -fsycl -fsycl-device-code-split=per_kernel $(MKL_COPTS) $(MKL_LIBS)
1212

1313
solve: solve.cpp dpbltrf.cpp dpbltrs.cpp auxi.cpp
14-
dpcpp $^ -o $@ -fsycl-device-code-split=per_kernel $(MKL_COPTS) $(MKL_LIBS)
14+
icpx $^ -o $@ -fsycl -fsycl-device-code-split=per_kernel $(MKL_COPTS) $(MKL_LIBS)
1515

1616
clean:
1717
-rm -f factor solve

Libraries/oneMKL/block_lu_decomposition/GNUmakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ MKL_COPTS = -DMKL_ILP64 -I"${MKLROOT}/include"
88
MKL_LIBS = -L${MKLROOT}/lib/intel64 -lmkl_sycl -lmkl_intel_ilp64 -lmkl_sequential -lmkl_core -lsycl -lOpenCL -lpthread -lm -ldl
99

1010
factor: factor.cpp dgeblttrf.cpp auxi.cpp
11-
dpcpp $^ -o $@ -fsycl-device-code-split=per_kernel $(MKL_COPTS) $(MKL_LIBS)
11+
icpx $^ -o $@ -fsycl -fsycl-device-code-split=per_kernel $(MKL_COPTS) $(MKL_LIBS)
1212

1313
solve: solve.cpp dgeblttrf.cpp dgeblttrs.cpp auxi.cpp
14-
dpcpp $^ -o $@ -fsycl-device-code-split=per_kernel $(MKL_COPTS) $(MKL_LIBS)
14+
icpx $^ -o $@ -fsycl -fsycl-device-code-split=per_kernel $(MKL_COPTS) $(MKL_LIBS)
1515

1616
clean:
1717
-rm -f factor solve

Libraries/oneMKL/computed_tomography/GNUmakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ MKL_LIBS = -L${MKLROOT}/lib/intel64 -lmkl_sycl -lmkl_intel_ilp64 -lmkl_sequentia
1313
DPCPP_OPTS = $(MKL_COPTS) -fsycl-device-code-split=per_kernel $(MKL_LIBS)
1414

1515
computed_tomography: computed_tomography.cpp
16-
dpcpp $< -o $@ $(DPCPP_OPTS)
16+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
1717

1818
clean:
1919
-rm -f computed_tomography radon.bmp restored.bmp

Libraries/oneMKL/fourier_correlation/GNUmakefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ run_all: fcorr_1d_buff fcorr_1d_usm fcorr_2d_usm
1212
DPCPP_OPTS = -DMKL_ILP64 -I${MKLROOT}/include -qmkl=parallel
1313

1414
fcorr_1d_buff: fcorr_1d_buffers.cpp
15-
dpcpp $< -o $@ $(DPCPP_OPTS)
15+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
1616

1717
fcorr_1d_usm: fcorr_1d_usm.cpp
18-
dpcpp $< -o $@ $(DPCPP_OPTS)
18+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
1919

2020
fcorr_2d_usm: fcorr_2d_usm.cpp
21-
dpcpp $< -o $@ $(DPCPP_OPTS)
21+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
2222

2323
clean:
2424
-rm -f fcorr_1d_buff fcorr_1d_usm fcorr_2d_usm

Libraries/oneMKL/matrix_mul_mkl/GNUmakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ MKL_LIBS = -L${MKLROOT}/lib/intel64 -lmkl_sycl -lmkl_intel_ilp64 -lmkl_sequentia
1313
DPCPP_OPTS = $(MKL_COPTS) -fsycl-device-code-split=per_kernel $(MKL_LIBS)
1414

1515
matrix_mul_mkl: matrix_mul_mkl.cpp
16-
dpcpp $< -o $@ $(DPCPP_OPTS)
16+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
1717

1818
clean:
1919
-rm -f matrix_mul_mkl

Libraries/oneMKL/monte_carlo_european_opt/GNUmakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ MKL_LIBS = -L${MKLROOT}/lib/intel64 -lmkl_sycl -lmkl_intel_ilp64 -lmkl_sequentia
1313
DPCPP_OPTS = $(MKL_COPTS) -fsycl-device-code-split=per_kernel $(MKL_LIBS)
1414

1515
mc_european: mc_european.cpp
16-
dpcpp $< -o $@ $(DPCPP_OPTS)
16+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
1717

1818
mc_european_usm: mc_european_usm.cpp
19-
dpcpp $< -o $@ $(DPCPP_OPTS)
19+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
2020

2121
clean:
2222
-rm -f mc_european mc_european_usm

Libraries/oneMKL/monte_carlo_pi/GNUmakefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ MKL_LIBS = -L${MKLROOT}/lib/intel64 -lmkl_sycl -lmkl_intel_ilp64 -lmkl_sequentia
1515
DPCPP_OPTS = $(MKL_COPTS) -fsycl-device-code-split=per_kernel -fno-sycl-early-optimizations $(MKL_LIBS)
1616

1717
mc_pi: mc_pi.cpp
18-
dpcpp $< -o $@ $(DPCPP_OPTS)
18+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
1919

2020
mc_pi_usm: mc_pi_usm.cpp
21-
dpcpp $< -o $@ $(DPCPP_OPTS)
21+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
2222

2323
mc_pi_device_api: mc_pi_device_api.cpp
24-
dpcpp $< -o $@ $(DPCPP_OPTS)
24+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
2525

2626
clean:
2727
-rm -f mc_pi mc_pi_usm mc_pi_device_api

Libraries/oneMKL/random_sampling_without_replacement/GNUmakefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ MKL_LIBS = -L${MKLROOT}/lib/intel64 -lmkl_sycl -lmkl_intel_ilp64 -lmkl_sequentia
1515
DPCPP_OPTS = $(MKL_COPTS) -fsycl-device-code-split=per_kernel -fno-sycl-early-optimizations $(MKL_LIBS)
1616

1717
lottery: lottery.cpp
18-
dpcpp $< -o $@ $(DPCPP_OPTS)
18+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
1919

2020
lottery_usm: lottery_usm.cpp
21-
dpcpp $< -o $@ $(DPCPP_OPTS)
21+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
2222

2323
lottery_device_api: lottery_device_api.cpp
24-
dpcpp $< -o $@ $(DPCPP_OPTS)
24+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
2525

2626
clean:
2727
-rm -f lottery lottery_usm lottery_device_api

Libraries/oneMKL/sparse_conjugate_gradient/GNUmakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ MKL_LIBS = -L${MKLROOT}/lib/intel64 -lmkl_sycl -lmkl_intel_ilp64 -lmkl_sequentia
1313
DPCPP_OPTS = $(MKL_COPTS) -fsycl-device-code-split=per_kernel $(MKL_LIBS)
1414

1515
sparse_cg: sparse_cg.cpp
16-
dpcpp $< -o $@ $(DPCPP_OPTS)
16+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
1717

1818
clean:
1919
-rm -f sparse_cg

Libraries/oneMKL/student_t_test/GNUmakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ MKL_LIBS = -L${MKLROOT}/lib/intel64 -lmkl_sycl -lmkl_intel_ilp64 -lmkl_sequentia
1414
DPCPP_OPTS = $(MKL_COPTS) -fsycl-device-code-split=per_kernel -fno-sycl-early-optimizations $(MKL_LIBS)
1515

1616
t_test: t_test.cpp
17-
dpcpp $< -o $@ $(DPCPP_OPTS)
17+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
1818

1919
t_test_usm: t_test_usm.cpp
20-
dpcpp $< -o $@ $(DPCPP_OPTS)
20+
icpx $< -fsycl -o $@ $(DPCPP_OPTS)
2121

2222
clean:
2323
-rm -f t_test t_test_usm

Libraries/oneTBB/tbb-async-sycl/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ cmake_minimum_required (VERSION 3.4)
33
if (${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Windows")
44
set(CMAKE_CXX_COMPILER "dpcpp-cl")
55
else()
6-
set(CMAKE_CXX_COMPILER "dpcpp")
6+
set(CMAKE_CXX_COMPILER "icpx")
7+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsycl")
78
endif()
89

910
project (TBB-ASYNC-SYCL LANGUAGES CXX)

Libraries/oneTBB/tbb-resumable-tasks-sycl/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ cmake_minimum_required (VERSION 3.4)
33
if (${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Windows")
44
set(CMAKE_CXX_COMPILER "dpcpp-cl")
55
else()
6-
set(CMAKE_CXX_COMPILER "dpcpp")
6+
set(CMAKE_CXX_COMPILER "icpx")
7+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsycl")
78
endif()
89

910
project (TBB-RESUMABLE-TASKS-SYCL LANGUAGES CXX)

Libraries/oneTBB/tbb-task-sycl/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ cmake_minimum_required (VERSION 3.4)
33
if (${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Windows")
44
set(CMAKE_CXX_COMPILER "dpcpp-cl")
55
else()
6-
set(CMAKE_CXX_COMPILER "dpcpp")
6+
set(CMAKE_CXX_COMPILER "icpx")
7+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsycl")
78
endif()
89

910
project (TBB-TASK-SYCL LANGUAGES CXX)

Libraries/oneVPL/dpcpp-blur/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
cmake_minimum_required(VERSION 3.4)
22
if("${CMAKE_CXX_COMPILER}" STREQUAL "")
33
set(CMAKE_CC_COMPILER "icx")
4-
set(CMAKE_CXX_COMPILER "dpcpp")
4+
set(CMAKE_CXX_COMPILER "icpx")
5+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsycl")
56
endif()
67
project (getting_started)
78
file(COPY $ENV{ONEAPI_ROOT}/vpl/latest/examples/interop/dpcpp-blur/src DESTINATION . FILES_MATCHING PATTERN "*.*")

Libraries/oneVPL/hello-decode/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
cmake_minimum_required(VERSION 3.4)
22
if("${CMAKE_CXX_COMPILER}" STREQUAL "")
33
set(CMAKE_CC_COMPILER "icx")
4-
set(CMAKE_CXX_COMPILER "dpcpp")
4+
set(CMAKE_CXX_COMPILER "icpx")
5+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsycl")
56
endif()
67
project (getting_started)
78
file(COPY $ENV{ONEAPI_ROOT}/vpl/latest/examples/hello/hello-decode/src DESTINATION . FILES_MATCHING PATTERN "*.*")

Libraries/oneVPL/hello-encode/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
cmake_minimum_required(VERSION 3.4)
22
if("${CMAKE_CXX_COMPILER}" STREQUAL "")
33
set(CMAKE_CC_COMPILER "icx")
4-
set(CMAKE_CXX_COMPILER "dpcpp")
4+
set(CMAKE_CXX_COMPILER "icpx")
5+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsycl")
56
endif()
67
project (getting_started)
78
file(COPY $ENV{ONEAPI_ROOT}/vpl/latest/examples/hello/hello-encode/src DESTINATION . FILES_MATCHING PATTERN "*.*")

Libraries/oneVPL/hello-vpp/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
cmake_minimum_required(VERSION 3.4)
22
if("${CMAKE_CXX_COMPILER}" STREQUAL "")
33
set(CMAKE_CC_COMPILER "icx")
4-
set(CMAKE_CXX_COMPILER "dpcpp")
4+
set(CMAKE_CXX_COMPILER "icpx")
5+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsycl")
56
endif()
67
project (getting_started)
78
file(COPY $ENV{ONEAPI_ROOT}/vpl/latest/examples/hello/hello-vpp/src DESTINATION . FILES_MATCHING PATTERN "*.*")

Publications/DPC++/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ if(WIN32)
3434
endif(WIN32)
3535
if(UNIX)
3636
set(CMAKE_C_COMPILER icx)
37-
set(CMAKE_CXX_COMPILER dpcpp)
37+
set(CMAKE_CXX_COMPILER icpx)
3838
# set(CMAKE_CXX_CREATE_STATIC_LIBRARY "lib <OBJECTS> /out:<TARGET>")
3939
# set(CMAKE_CXX_LINK_EXECUTABLE "ld.lld <OBJECTS> -o <TARGET> <LINK_LIBRARIES>")
4040
endif(UNIX)

Publications/DPC++/Ch06_unified_shared_memory/fig_6_9_queries.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
#include <sycl/sycl.hpp>
66
using namespace sycl;
7-
using dinfo = info::device;
87
constexpr int N = 42;
98

109
template <typename T> void foo(T data, id<1> i) { data[i] = N; }
@@ -13,8 +12,8 @@ int main() {
1312
queue Q;
1413
auto dev = Q.get_device();
1514
auto ctxt = Q.get_context();
16-
bool usm_shared = dev.get_info<dinfo::usm_shared_allocations>();
17-
bool usm_device = dev.get_info<dinfo::usm_device_allocations>();
15+
bool usm_shared = dev.get_info<info::device::usm_shared_allocations>();
16+
bool usm_device = dev.get_info<info::device::usm_device_allocations>();
1817
bool use_USM = usm_shared || usm_device;
1918

2019
if (use_USM) {
@@ -29,7 +28,7 @@ int main() {
2928
? "shared"
3029
: "device")
3130
<< " allocations on "
32-
<< get_pointer_device(data, ctxt).get_info<dinfo::name>()
31+
<< get_pointer_device(data, ctxt).get_info<info::device::name>()
3332
<< "\n";
3433
Q.parallel_for(N, [=](id<1> i) { foo(data, i); });
3534
Q.wait();

Publications/DPC++/Ch10_expressing_kernels/fig_10_8_opencl_object_interop.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// SPDX-License-Identifier: MIT
44

55
#include <sycl/sycl.hpp>
6-
#include <CL/sycl/backend/opencl.hpp>
6+
#include <sycl/backend/opencl.hpp>
77
#include <iostream>
88
using namespace sycl;
99

Tools/Advisor/matrix_multiply_advisor/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(CMAKE_CXX_COMPILER dpcpp)
1+
set(CMAKE_CXX_COMPILER icpx)
22
cmake_minimum_required(VERSION 3.4)
33
project(matrix_multiply)
44
set(CMAKE_CXX_FLAGS "-g -O3 -fsycl -Wno-write-strings -w -D_Linux")

0 commit comments

Comments
 (0)