Skip to content

Commit

Permalink
fix by adding public (#1753)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xinyu302 authored Oct 23, 2024
1 parent ea69cc2 commit b0c09ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/cutlass/gemm/kernel/gemm_universal_with_visitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ template <
typename Epilogue, ///! Epilogue
typename ThreadblockSwizzle_ ///! Threadblock swizzling function
>
class GemmWithEpilogueVisitor: GemmUniversal<Mma,Epilogue, ThreadblockSwizzle_> {
class GemmWithEpilogueVisitor: public GemmUniversal<Mma, Epilogue, ThreadblockSwizzle_> {
public:

using ThreadblockSwizzle = ThreadblockSwizzle_;

using Base = GemmUniversal<Mma,Epilogue, ThreadblockSwizzle>;
using Base = GemmUniversal<Mma, Epilogue, ThreadblockSwizzle>;
using Base::Base;

using FusionCallbacks = typename Epilogue::FusionCallbacks;
Expand Down

0 comments on commit b0c09ed

Please sign in to comment.