From b0c09ed07762e7f3fa49b2953a5dd17e851231a6 Mon Sep 17 00:00:00 2001 From: Xinyu Yang Date: Thu, 24 Oct 2024 00:45:58 +0800 Subject: [PATCH] fix by adding public (#1753) --- include/cutlass/gemm/kernel/gemm_universal_with_visitor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/cutlass/gemm/kernel/gemm_universal_with_visitor.h b/include/cutlass/gemm/kernel/gemm_universal_with_visitor.h index 0d9fbc3fc3..5ce123a1a6 100644 --- a/include/cutlass/gemm/kernel/gemm_universal_with_visitor.h +++ b/include/cutlass/gemm/kernel/gemm_universal_with_visitor.h @@ -52,12 +52,12 @@ template < typename Epilogue, ///! Epilogue typename ThreadblockSwizzle_ ///! Threadblock swizzling function > -class GemmWithEpilogueVisitor: GemmUniversal { +class GemmWithEpilogueVisitor: public GemmUniversal { public: using ThreadblockSwizzle = ThreadblockSwizzle_; - using Base = GemmUniversal; + using Base = GemmUniversal; using Base::Base; using FusionCallbacks = typename Epilogue::FusionCallbacks;