device_gemm.hpp 989 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
#ifndef DEVICE_GEMM_HPP
#define DEVICE_GEMM_HPP

#include <iostream>
#include "device_base.hpp"

namespace ck {
namespace tensor_operation {
namespace device {

11
template <typename CElementwiseOperation>
12
13
struct DeviceGemm : public BaseOperator
{
Chao Liu's avatar
Chao Liu committed
14
15
16
17
18
19
20
21
22
23
    virtual std::unique_ptr<BaseArgument>
    MakeArgumentPointer(const void* p_a,
                        const void* p_b,
                        void* p_c,
                        ck::index_t M,
                        ck::index_t N,
                        ck::index_t K,
                        ck::index_t StrideA,
                        ck::index_t StrideB,
                        ck::index_t StrideC,
24
                        CElementwiseOperation c_element_op) = 0;
25
26
27
28

    virtual std::unique_ptr<BaseInvoker> MakeInvokerPointer() = 0;
};

29
30
template <typename CElementwiseOperation>
using DeviceGemmPtr = std::unique_ptr<DeviceGemm<CElementwiseOperation>>;
31
32
33
34
35

} // namespace device
} // namespace tensor_operation
} // namespace ck
#endif