Skip to content

Commit

Permalink
try fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
t4c1 committed Feb 21, 2025
1 parent 25b486f commit 7fe0080
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/copy_debug/copy_debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
*
**************************************************************************************************/

#include "cutlass/detail/layout.hpp"
//#include "cutlass/detail/layout.hpp"
//#include "cute/atom/copy_traits_xe.hpp"

#include <cute/tensor.hpp>
#include <sycl/sycl.hpp>
Expand All @@ -40,6 +41,7 @@
#include <cutlass/cutlass.h>

using namespace syclcompat::experimental;
using namespace cute;

#define SUBGROUP_SIZE (16)

Expand All @@ -63,7 +65,7 @@ void copy_kernel(TensorS S) {
Layout<CopyThreadShape>{},
make_layout(shape_div(typename traits_load::BlockShape{}, CopyThreadShape{})));

auto thr_copy_load = tiled_copy_load.get_slice(cutlass::get_sub_group_local_id());
auto thr_copy_load = tiled_copy_load.get_slice(ThreadIdxX());

using actual_fragment_size = std::conditional_t<std::is_same_v<fragment_size, void>, C<Atom_load::NumValDst>, fragment_size>;
Tensor fragment = make_tensor<Element>(make_shape(actual_fragment_size{},_1{},_1{}));
Expand Down

0 comments on commit 7fe0080

Please sign in to comment.