#ifndef DEVICE_GEMM_BIAS_ACTIVATION_HPP #define DEVICE_GEMM_BIAS_ACTIVATION_HPP #include #include "device_base.hpp" namespace ck { namespace tensor_operation { namespace device { template struct DeviceGemmBiasActivation : public BaseOperator { virtual std::unique_ptr MakeArgumentPointer(const void* p_a, const void* p_b, void* p_c, const void* p_c0, ck::index_t M, ck::index_t N, ck::index_t K, ck::index_t StrideA, ck::index_t StrideB, ck::index_t StrideC, AElementwiseOperation a_element_op, BElementwiseOperation b_element_op, CElementwiseOperation c_element_op, ck::index_t KBatch = 1) = 0; virtual std::unique_ptr MakeInvokerPointer() = 0; }; template using DeviceGemmBiasActivationPtr = std::unique_ptr< DeviceGemmBiasActivation>; } // namespace device } // namespace tensor_operation } // namespace ck #endif