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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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>

0 commit comments

Comments
 (0)