Skip to content

Commit

Permalink
Fix issue with including SYCL (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
aacostadiaz authored Oct 7, 2024
1 parent 03756c7 commit 679f7a5
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/cute/tutorial/sgemm_1_sycl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*
**************************************************************************************************/

#include <sycl.hpp>
#include <sycl/sycl.hpp>
#include <syclcompat.hpp>

#include <cute/tensor.hpp>
Expand Down
2 changes: 1 addition & 1 deletion examples/cute/tutorial/sgemm_2_sycl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*
**************************************************************************************************/

#include <sycl.hpp>
#include <sycl/sycl.hpp>
#include <syclcompat.hpp>


Expand Down
2 changes: 1 addition & 1 deletion examples/cute/tutorial/sgemm_sm70_sycl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*
**************************************************************************************************/

#include <sycl.hpp>
#include <sycl/sycl.hpp>
#include <syclcompat.hpp>

#include <cute/tensor.hpp>
Expand Down
2 changes: 1 addition & 1 deletion examples/cute/tutorial/sgemm_sm80_sycl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*
**************************************************************************************************/

#include <sycl.hpp>
#include <sycl/sycl.hpp>
#include <syclcompat.hpp>

#include <cute/tensor.hpp>
Expand Down
2 changes: 1 addition & 1 deletion examples/cute/tutorial/tiled_copy_sycl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*
**************************************************************************************************/

#include <sycl.hpp>
#include <sycl/sycl.hpp>
#include <syclcompat.hpp>

#include <cute/tensor.hpp>
Expand Down
2 changes: 1 addition & 1 deletion include/cute/util/debug.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*/

#if defined(CUTLASS_ENABLE_SYCL)
#include <sycl.hpp>
#include <sycl/sycl.hpp>
#include <syclcompat.hpp>
#else
#include <cuda_runtime_api.h>
Expand Down
2 changes: 1 addition & 1 deletion include/cute/util/sycl_vec.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#pragma once

// fwd declare OCL function and OCL types
#include <sycl.hpp> //for sycl::vec
#include <sycl/sycl.hpp> //for sycl::vec

namespace cute
{
Expand Down

0 comments on commit 679f7a5

Please sign in to comment.