Skip to content

Commit

Permalink
Change ifdef statements
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammad-tanvir-1211 committed May 15, 2024
1 parent ae6c2ab commit 07b76e4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/cute/atom/copy_atom.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,7 @@ print_latex_copy(LayoutS const& S, ThrIDS const& TS, // (m,n) -> (tid,vid) and
#include <cute/atom/copy_traits_sm90_tma.hpp>
#endif

#if defined(CUTLASS_ENABLE_SYCL)
#if defined(SYCL_INTEL_TARGET)
#include <cute/atom/copy_traits_xe.hpp>
#endif

Expand Down
2 changes: 1 addition & 1 deletion include/cutlass/gemm/collective/collective_mma.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ struct CollectiveMma {
#include "cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized.hpp"
#include "cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8.hpp"

#if defined(CUTLASS_ENABLE_SYCL)
#if defined(SYCL_INTEL_TARGET)
#include "cutlass/gemm/collective/intel_pvc_mma.hpp"
#endif
/////////////////////////////////////////////////////////////////////////////////////////////////
2 changes: 1 addition & 1 deletion include/cutlass/gemm/dispatch_policy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ struct MainloopSm90ArrayTmaGmmaWarpSpecialized {
};


#if defined(CUTLASS_ENABLE_SYCL)
#if defined(SYCL_INTEL_TARGET)
struct MainloopIntelPVCBase {
constexpr static int Stages = 1;
using ArchTag = arch::IntelPVC;
Expand Down
2 changes: 1 addition & 1 deletion include/cutlass/gemm/kernel/gemm_universal.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ struct IsCutlass3ArrayKernel<ProblemShape, cute::void_t<typename ProblemShape::U
#include "cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_cooperative.hpp"
#include "cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_cooperative.hpp"

#if defined(CUTLASS_ENABLE_SYCL)
#if defined(SYCL_INTEL_TARGET)
#include "cutlass/gemm/kernel/intel_pvc_gemm.hpp"
#endif
////////////////////////////////////////////////////////////////////////////////

0 comments on commit 07b76e4

Please sign in to comment.