Skip to content

Commit

Permalink
Removed unnecessary code
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammad-tanvir-1211 committed Jun 5, 2024
1 parent d863b43 commit 783641c
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions include/cutlass/epilogue/collective/intel_pvc_epilogue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,18 +140,6 @@ class CollectiveEpilogue<
using SmemDStorage = EmptyType;

struct TensorStorageImpl: cute::tuple<SmemCStorage, SmemDStorage> {
using Base = cute::tuple<SmemCStorage, SmemDStorage>;

constexpr decltype(auto)
smem_C() {
return cute::get<0>(static_cast<Base &>(*this));
}

constexpr decltype(auto)
smem_D() {
return cute::get<1>(static_cast<Base &>(*this));
}

using FusionStorage = typename FusionCallbacks::SharedStorage;
FusionStorage thread;
};
Expand Down Expand Up @@ -298,7 +286,7 @@ class CollectiveEpilogue<
Tensor mD_crd = make_identity_tensor(make_shape(M,N));
Tensor cD = local_tile(mD_crd, take<0,2>(TileShapeMNK{}), make_coord(m_coord, n_coord));
// Get the fusion callbacks
constexpr bool RefSrc = true; // Register tensors reference R2S copy src layout
constexpr bool RefSrc = true;
auto residue_mn = make_coord(M, N);
auto cst_args = cutlass::epilogue::fusion::detail::ConsumerStoreArgs{
problem_shape_mnkl,
Expand Down

0 comments on commit 783641c

Please sign in to comment.