Skip to content

Commit 656478c

Browse files
jimmytweigtagta
authored
Migrate samples back to CL/sycl.hpp (#1265)
* Makefile changes to support sse3 for icpx * Removed long filename * Reverted back to old README.md * Reverted back to old README.md * Deleted unused folders * Fixed overflow when compute_units * work_group_size is larger than maximum integer size * Fix * Renamed folder names to guided_xxxx for jacobi and odd_even_merge and updated to the latest SYCL compiler changes * Fixes * Update jacobi.cpp * Changed include from <sycl/scyl.hpp> to <CL/sycl.hpp> to compile on 2023.0 * Removed #include "dpc_common.hpp" from source files * Revert "Removed #include "dpc_common.hpp" from source files" This reverts commit 139125a. * Revert samples back to CL/sycl.hpp Co-authored-by: gta <[email protected]> Co-authored-by: gta <[email protected]>
1 parent 9d9a277 commit 656478c

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

DirectProgramming/DPC++/DenseLinearAlgebra/matrix_mul/src/matrix_mul_dpcpp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* relevant terms noted in the comments.
1515
*/
1616

17-
#include <sycl/sycl.hpp>
17+
#include <CL/sycl.hpp>
1818
#include <iostream>
1919
#include <limits>
2020

DirectProgramming/DPC++/SpectralMethods/DiscreteCosineTransform/src/DCT.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "DCT.hpp"
22

3-
#include <sycl/sycl.hpp>
3+
#include <CL/sycl.hpp>
44
#include <cmath>
55
#include <cstdio>
66
#include <cstdlib>

DirectProgramming/DPC++/StructuredGrids/1d_HeatTransfer/src/1d_HeatTransfer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
// 1d_HeatTransfer.cpp
3434
//
3535
//******************************************************************************
36-
#include <sycl/sycl.hpp>
36+
#include <CL/sycl.hpp>
3737
#include <algorithm>
3838
#include <fstream>
3939
#include <iomanip>

DirectProgramming/DPC++/StructuredGrids/guided_HSOpticalflow_SYCLMigration/02_sycl_dpct_migrated/src/derivativesKernel.hpp

Lines changed: 1 addition & 1 deletion
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 <sycl/sycl.hpp>
34+
#include <CL/sycl.hpp>
3535
#include <dpct/dpct.hpp>
3636

3737
#include "common.h"

DirectProgramming/DPC++/StructuredGrids/iso2dfd_dpcpp/src/iso2dfd.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include <fstream>
3232
#include <iostream>
3333
#include <string>
34-
#include <sycl/sycl.hpp>
34+
#include <CL/sycl.hpp>
3535
#include <cmath>
3636
#include <cstring>
3737
#include <stdio.h>

DirectProgramming/DPC++/StructuredGrids/iso3dfd_dpcpp/src/iso3dfd.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include "iso3dfd.h"
3434
#include <iostream>
3535
#include <string>
36+
#include <CL/sycl.hpp>
3637
#include "device_selector.hpp"
3738
#include "dpc_common.hpp"
3839

0 commit comments

Comments
 (0)