Skip to content

Commit 66e8188

Browse files
committed
fix of sycl.hpp includes
1 parent 94b0797 commit 66e8188

File tree

18 files changed

+19
-19
lines changed

18 files changed

+19
-19
lines changed

dl-cifar/SYCL/basic-dl/lnorm_layer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include <stdio.h>
2828
#include <stdlib.h>
2929
#include <math.h>
30-
#include <sycl.hpp>
30+
#include <sycl/sycl.hpp>
3131

3232
#include "tracing.h"
3333
#include "timing.h"

dl-cifar/SYCL/basic-dl/softmax_layer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
#ifndef DL_CIFAR_SOFTMAX_LAYER_H_
2525
#define DL_CIFAR_SOFTMAX_LAYER_H_
2626

27-
#include <sycl.hpp>
27+
#include <sycl/sycl.hpp>
2828
#include "timing.h"
2929
#include "tracing.h"
3030
#include "handle.h"
3131

32-
#include <sycl.hpp>
32+
#include <sycl/sycl.hpp>
3333

3434
#if defined(USE_CUBLAS)
3535
#include <cublas_v2.h>

dl-cifar/SYCL/blas_routines.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include "tracing.h"
3232
#include "handle.h"
3333

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

3636

3737
#if defined(USE_CUBLAS)

dl-cifar/SYCL/handle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include <iostream>
2828
#include <string>
2929
#include "timing.h"
30-
#include <sycl.hpp>
30+
#include <sycl/sycl.hpp>
3131

3232
#if defined(USE_CUBLAS)
3333
#include <cublas_v2.h>

dl-cifar/SYCL/upsample.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include <stdio.h>
2828
#include <stdlib.h>
2929
#include <math.h>
30-
#include <sycl.hpp>
30+
#include <sycl/sycl.hpp>
3131

3232
#include "tracing.h"
3333
#include "timing.h"

dl-mnist/SYCL/tensor_mgr.onednn.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include <list>
3232
#include <array>
3333

34-
#include <sycl.hpp>
34+
#include <sycl/sycl.hpp>
3535
#include "oneapi/dnnl/dnnl.hpp"
3636
#include "../common/workload_params.h"
3737

ethminer/libethash-sycl/SYCLMiner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You should have received a copy of the GNU General Public License
3636
along with ethminer. If not, see <http://www.gnu.org/licenses/>.
3737
*/
3838

39-
#include <sycl.hpp>
39+
#include <sycl/sycl.hpp>
4040
#include <libethcore/Farm.h>
4141
#include <ethash/ethash.hpp>
4242

ethminer/libethash-sycl/SYCLMiner.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ along with ethminer. If not, see <http://www.gnu.org/licenses/>.
3838

3939
#pragma once
4040

41-
#include <sycl.hpp>
41+
#include <sycl/sycl.hpp>
4242
#include "ethash_sycl_miner_kernel.h"
4343

4444
#include <libdevcore/Worker.h>

ethminer/libethash-sycl/dagger_shuffled.dp.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*
2020
*/
2121

22-
#include <sycl.hpp>
22+
#include <sycl/sycl.hpp>
2323
#include "ethash_sycl_miner_kernel_globals.h"
2424

2525
#include "ethash_sycl_miner_kernel.h"

ethminer/libethash-sycl/dpcpp_helper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
#pragma once
2323

24-
#include <sycl.hpp>
24+
#include <sycl/sycl.hpp>
2525

2626
#define __dpct_inline__ __inline__ __attribute__((always_inline))
2727
#define DEV_INLINE __dpct_inline__

0 commit comments

Comments
 (0)