Skip to content

Commit b99bb50

Browse files
Header change CL/sycl to sycl/sycl (#1209)
* Change headers from CL/sycl to sycl/sycl in DirectProgramming folder * Rest of the folders * Change Publications folder
1 parent b14fe8a commit b99bb50

File tree

306 files changed

+309
-309
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

306 files changed

+309
-309
lines changed

AI-and-Analytics/End-to-end-Workloads/LidarObjectDetection-PointPillars/include/devicemanager/devicemanager.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#pragma once
88

9-
#include <CL/sycl.hpp>
9+
#include <sycl/sycl.hpp>
1010
#include <iostream>
1111

1212
namespace devicemanager {

AI-and-Analytics/End-to-end-Workloads/LidarObjectDetection-PointPillars/include/pointpillars/anchorgrid.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#pragma once
1919

20-
#include <CL/sycl.hpp>
20+
#include <sycl/sycl.hpp>
2121
#include <cmath>
2222
#include <string>
2323
#include <vector>

AI-and-Analytics/End-to-end-Workloads/LidarObjectDetection-PointPillars/include/pointpillars/common.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#pragma once
1919

20-
#include <CL/sycl.hpp>
20+
#include <sycl/sycl.hpp>
2121

2222
// using MACRO to allocate memory inside kernel
2323
#define NUM_3D_BOX_CORNERS_MACRO 8

AI-and-Analytics/End-to-end-Workloads/LidarObjectDetection-PointPillars/include/pointpillars/nms.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#pragma once
1919

20-
#include <CL/sycl.hpp>
20+
#include <sycl/sycl.hpp>
2121
#include "pointpillars/common.hpp"
2222

2323
namespace pointpillars {

AI-and-Analytics/End-to-end-Workloads/LidarObjectDetection-PointPillars/include/pointpillars/postprocess.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#pragma once
1919

20-
#include <CL/sycl.hpp>
20+
#include <sycl/sycl.hpp>
2121
#include <memory>
2222
#include <vector>
2323
#include "pointpillars/nms.hpp"

AI-and-Analytics/End-to-end-Workloads/LidarObjectDetection-PointPillars/include/pointpillars/preprocess.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#pragma once
1919

20-
#include <CL/sycl.hpp>
20+
#include <sycl/sycl.hpp>
2121

2222
namespace pointpillars {
2323

AI-and-Analytics/End-to-end-Workloads/LidarObjectDetection-PointPillars/include/pointpillars/scan.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818
#pragma once
19-
#include <CL/sycl.hpp>
19+
#include <sycl/sycl.hpp>
2020
#include <cstdint>
2121

2222
namespace pointpillars {

AI-and-Analytics/End-to-end-Workloads/LidarObjectDetection-PointPillars/include/pointpillars/scatter.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#pragma once
1919

20-
#include <CL/sycl.hpp>
20+
#include <sycl/sycl.hpp>
2121

2222
namespace pointpillars {
2323

AI-and-Analytics/End-to-end-Workloads/LidarObjectDetection-PointPillars/src/pointpillars/anchorgrid.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818
#include "pointpillars/anchorgrid.hpp"
19-
#include <CL/sycl.hpp>
19+
#include <sycl/sycl.hpp>
2020
#include <algorithm>
2121
#include "devicemanager/devicemanager.hpp"
2222
#include "pointpillars/common.hpp"

AI-and-Analytics/End-to-end-Workloads/LidarObjectDetection-PointPillars/src/pointpillars/nms.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// ------------------------------------------------------------------
1313

1414
#include "pointpillars/nms.hpp"
15-
#include <CL/sycl.hpp>
15+
#include <sycl/sycl.hpp>
1616
#include <algorithm>
1717
#include <numeric>
1818
#include <set>

AI-and-Analytics/End-to-end-Workloads/LidarObjectDetection-PointPillars/src/pointpillars/postprocess.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include <oneapi/dpl/algorithm>
1919
#include <oneapi/dpl/execution>
2020
#include <oneapi/dpl/iterator>
21-
#include <CL/sycl.hpp>
21+
#include <sycl/sycl.hpp>
2222
#include <algorithm>
2323
#include "pointpillars/postprocess.hpp" // the oneapi headers have to be included at first here!
2424
#include "devicemanager/devicemanager.hpp"

AI-and-Analytics/End-to-end-Workloads/LidarObjectDetection-PointPillars/src/pointpillars/preprocess.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818
#include "pointpillars/preprocess.hpp"
19-
#include <CL/sycl.hpp>
19+
#include <sycl/sycl.hpp>
2020
#include <algorithm>
2121
#include <iostream>
2222
#include "devicemanager/devicemanager.hpp"

AI-and-Analytics/End-to-end-Workloads/LidarObjectDetection-PointPillars/src/pointpillars/scan.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818
#include "pointpillars/scan.hpp"
19-
#include <CL/sycl.hpp>
19+
#include <sycl/sycl.hpp>
2020
#include "devicemanager/devicemanager.hpp"
2121

2222
namespace pointpillars {

AI-and-Analytics/End-to-end-Workloads/LidarObjectDetection-PointPillars/src/pointpillars/scatter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818
#include "pointpillars/scatter.hpp"
19-
#include <CL/sycl.hpp>
19+
#include <sycl/sycl.hpp>
2020
#include <algorithm>
2121
#include "devicemanager/devicemanager.hpp"
2222

DirectProgramming/C++/CompilerInfrastructure/OpenMP_Offload_Features/src/usm_and_composability_with_dpcpp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// =============================================================
66

77
#include <omp.h>
8-
#include <CL/sycl.hpp>
8+
#include <sycl/sycl.hpp>
99
#include <algorithm>
1010
#include <iostream>
1111

DirectProgramming/DPC++/DenseLinearAlgebra/jacobi_iterative/sycl_dpct_migrated/Common/helper_cuda.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
#pragma once
3535

36-
#include <CL/sycl.hpp>
36+
#include <sycl/sycl.hpp>
3737
#include <dpct/dpct.hpp>
3838
#include <stdint.h>
3939
#include <stdio.h>

DirectProgramming/DPC++/DenseLinearAlgebra/jacobi_iterative/sycl_dpct_migrated/src/jacobi.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
#include <helper_cuda.h>
3737

38-
#include <CL/sycl.hpp>
38+
#include <sycl/sycl.hpp>
3939
#include <dpct/dpct.hpp>
4040

4141
#include "jacobi.h"

DirectProgramming/DPC++/DenseLinearAlgebra/jacobi_iterative/sycl_dpct_migrated/src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
#include <stdio.h>
4040
#include <stdlib.h>
4141

42-
#include <CL/sycl.hpp>
42+
#include <sycl/sycl.hpp>
4343
#include <dpct/dpct.hpp>
4444

4545
#include "jacobi.h"

DirectProgramming/DPC++/DenseLinearAlgebra/jacobi_iterative/sycl_dpct_output/Common/helper_cuda.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
#pragma once
3535

36-
#include <CL/sycl.hpp>
36+
#include <sycl/sycl.hpp>
3737
#include <dpct/dpct.hpp>
3838
#include <stdint.h>
3939
#include <stdio.h>

DirectProgramming/DPC++/DenseLinearAlgebra/jacobi_iterative/sycl_dpct_output/src/jacobi.dp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
*/
3434

3535

36-
#include <CL/sycl.hpp>
36+
#include <sycl/sycl.hpp>
3737
#include <dpct/dpct.hpp>
3838
#include <helper_cuda.h>
3939
#include <vector>

DirectProgramming/DPC++/DenseLinearAlgebra/jacobi_iterative/sycl_dpct_output/src/main.cpp.dp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
// of all ones.
4646
// The dimension N_ROWS is included in jacobi.h
4747

48-
#include <CL/sycl.hpp>
48+
#include <sycl/sycl.hpp>
4949
#include <dpct/dpct.hpp>
5050
#include <helper_cuda.h>
5151
#include <helper_timer.h>

DirectProgramming/DPC++/GraphAlgorithms/all-pairs-shortest-paths/src/apsp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// SPDX-License-Identifier: MIT
88
// =============================================================
99

10-
#include <CL/sycl.hpp>
10+
#include <sycl/sycl.hpp>
1111
#include <chrono>
1212
#include <cstdlib>
1313
#include <iostream>

DirectProgramming/DPC++/GraphTraversal/odd-even-merge-sort/sycl_dpct_migrated/src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3232
*/
3333

34-
#include <CL/sycl.hpp>
34+
#include <sycl/sycl.hpp>
3535
#include <dpct/dpct.hpp>
3636

3737
// Utilities and system includes

DirectProgramming/DPC++/GraphTraversal/odd-even-merge-sort/sycl_dpct_migrated/src/oddEvenMergeSort.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
#include <assert.h>
3535

36-
#include <CL/sycl.hpp>
36+
#include <sycl/sycl.hpp>
3737
#include <dpct/dpct.hpp>
3838

3939
#include "sortingNetworks_common.h"

DirectProgramming/DPC++/GraphTraversal/odd-even-merge-sort/sycl_dpct_migrated/src/sortingNetworks_common.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#ifndef SORTINGNETWORKS_COMMON_CUH
3535
#define SORTINGNETWORKS_COMMON_CUH
3636

37-
#include <CL/sycl.hpp>
37+
#include <sycl/sycl.hpp>
3838
#include <dpct/dpct.hpp>
3939

4040
#include "sortingNetworks_common.h"

DirectProgramming/DPC++/GraphTraversal/odd-even-merge-sort/sycl_dpct_output/src/main.cpp.dp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
*/
4747

4848
// CUDA Runtime
49-
#include <CL/sycl.hpp>
49+
#include <sycl/sycl.hpp>
5050
#include <dpct/dpct.hpp>
5151

5252
// Utilities and system includes

DirectProgramming/DPC++/GraphTraversal/odd-even-merge-sort/sycl_dpct_output/src/oddEvenMergeSort.dp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
//Based on http://www.iti.fh-flensburg.de/lang/algorithmen/sortieren/networks/oemen.htm
3636

37-
#include <CL/sycl.hpp>
37+
#include <sycl/sycl.hpp>
3838
#include <dpct/dpct.hpp>
3939
#include <assert.h>
4040

DirectProgramming/DPC++/GraphTraversal/odd-even-merge-sort/sycl_dpct_output/src/sortingNetworks_common.dp.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#ifndef SORTINGNETWORKS_COMMON_CUH
3636
#define SORTINGNETWORKS_COMMON_CUH
3737

38-
#include <CL/sycl.hpp>
38+
#include <sycl/sycl.hpp>
3939
#include <dpct/dpct.hpp>
4040
#include "sortingNetworks_common.h"
4141

DirectProgramming/DPC++/GraphTraversal/odd-even-merge-sort/sycl_migrated/src/odd_even_merge_sort.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3232
*/
3333

34-
#include <CL/sycl.hpp>
34+
#include <sycl/sycl.hpp>
3535
using namespace sycl;
3636

3737
#include <assert.h>

DirectProgramming/DPC++/GraphTraversal/odd-even-merge-sort/sycl_migrated/src/sorting_networks_common.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3232
*/
3333

34-
#include <CL/sycl.hpp>
34+
#include <sycl/sycl.hpp>
3535
using namespace sycl;
3636

3737
////////////////////////////////////////////////////////////////////////////////

DirectProgramming/DPC++/Jupyter/sycl-performance-portability-training/01_Math_Kernel_Library_and_Basic_Parallel_Kernel.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
"// =============================================================\n",
104104
"\n",
105105
"\n",
106-
"#include <CL/sycl.hpp>\n",
106+
"#include <sycl/sycl.hpp>\n",
107107
"#include \"oneapi/mkl/blas.hpp\" //# oneMKL DPC++ interface for BLAS functions\n",
108108
"\n",
109109
"using namespace sycl;\n",
@@ -252,7 +252,7 @@
252252
"// =============================================================\n",
253253
"\n",
254254
"\n",
255-
"#include <CL/sycl.hpp>\n",
255+
"#include <sycl/sycl.hpp>\n",
256256
"\n",
257257
"using namespace sycl;\n",
258258
"\n",

DirectProgramming/DPC++/Jupyter/sycl-performance-portability-training/02_ND_Range_Kernels.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"// =============================================================\n",
9393
"\n",
9494
"\n",
95-
"#include <CL/sycl.hpp>\n",
95+
"#include <sycl/sycl.hpp>\n",
9696
"\n",
9797
"using namespace sycl;\n",
9898
"\n",
@@ -246,7 +246,7 @@
246246
"// =============================================================\n",
247247
"\n",
248248
"\n",
249-
"#include <CL/sycl.hpp>\n",
249+
"#include <sycl/sycl.hpp>\n",
250250
"\n",
251251
"using namespace sycl;\n",
252252
"\n",

DirectProgramming/DPC++/Jupyter/sycl-performance-portability-training/03_LocalMemory.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
"// =============================================================\n",
8484
"\n",
8585
"\n",
86-
"#include <CL/sycl.hpp>\n",
86+
"#include <sycl/sycl.hpp>\n",
8787
"\n",
8888
"using namespace sycl;\n",
8989
"\n",

DirectProgramming/DPC++/Jupyter/sycl-performance-portability-training/lab/mm_dpcpp_basic.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// =============================================================
88

99

10-
#include <CL/sycl.hpp>
10+
#include <sycl/sycl.hpp>
1111

1212
using namespace sycl;
1313

DirectProgramming/DPC++/Jupyter/sycl-performance-portability-training/lab/mm_dpcpp_basic_full.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// =============================================================
88

99

10-
#include <CL/sycl.hpp>
10+
#include <sycl/sycl.hpp>
1111
#include <ctime>
1212
#include <chrono>
1313
#include <getopt.h>

DirectProgramming/DPC++/Jupyter/sycl-performance-portability-training/lab/mm_dpcpp_common.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// =============================================================
88

99

10-
#include <CL/sycl.hpp>
10+
#include <sycl/sycl.hpp>
1111
#include <getopt.h>
1212
#include <ctime>
1313
#include <chrono>

DirectProgramming/DPC++/Jupyter/sycl-performance-portability-training/lab/mm_dpcpp_common_wg.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// =============================================================
88

99

10-
#include <CL/sycl.hpp>
10+
#include <sycl/sycl.hpp>
1111
#include <getopt.h>
1212
#include <ctime>
1313
#include <chrono>

DirectProgramming/DPC++/Jupyter/sycl-performance-portability-training/lab/mm_dpcpp_localmem.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// =============================================================
88

99

10-
#include <CL/sycl.hpp>
10+
#include <sycl/sycl.hpp>
1111

1212
using namespace sycl;
1313

DirectProgramming/DPC++/Jupyter/sycl-performance-portability-training/lab/mm_dpcpp_mkl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// =============================================================
88

99

10-
#include <CL/sycl.hpp>
10+
#include <sycl/sycl.hpp>
1111
#include "oneapi/mkl/blas.hpp" //# oneMKL DPC++ interface for BLAS functions
1212

1313
using namespace sycl;

DirectProgramming/DPC++/Jupyter/sycl-performance-portability-training/lab/mm_dpcpp_ndrange.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// =============================================================
88

99

10-
#include <CL/sycl.hpp>
10+
#include <sycl/sycl.hpp>
1111

1212
using namespace sycl;
1313

DirectProgramming/DPC++/Jupyter/sycl-performance-portability-training/lab/mm_dpcpp_ndrange_var.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// =============================================================
88

99

10-
#include <CL/sycl.hpp>
10+
#include <sycl/sycl.hpp>
1111

1212
using namespace sycl;
1313

DirectProgramming/DPC++/Jupyter/sycl-performance-portability-training/src/mm_dpcpp_basic.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// =============================================================
88

99

10-
#include <CL/sycl.hpp>
10+
#include <sycl/sycl.hpp>
1111

1212
using namespace sycl;
1313

0 commit comments

Comments
 (0)