gemm_bf16.cpp 4.28 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <algorithm>
#include <cstdlib>
#include <half.hpp>
#include <iostream>
#include <numeric>
#include <tuple>
#include <vector>

#include "gemm_util.hpp"
#include "config.hpp"
#include "print.hpp"
#include "device.hpp"
#include "host_tensor.hpp"
#include "host_tensor_generator.hpp"
#include "host_gemm.hpp"
#include "device_tensor.hpp"
#include "device_gemm_xdl.hpp"
#include "device_gemm_xdl_c_shuffle.hpp"
#include "element_wise_operation.hpp"
#include "reference_gemm.hpp"
#include "gemm_specialization.hpp"
#include "test_util.hpp"

using PassThrough = ck::tensor_operation::element_wise::PassThrough;

26
using DeviceGemmNoOpPtr =
27
28
29
30
31
32
33
34
    ck::tensor_operation::device::DeviceGemmPtr<ck::tensor_operation::element_wise::PassThrough,
                                                ck::tensor_operation::element_wise::PassThrough,
                                                ck::tensor_operation::element_wise::PassThrough>;

namespace ck {
namespace tensor_operation {
namespace device {
namespace device_gemm_instance {
35
36
37
38
39
void add_device_gemm_xdl_c_shuffle_bf16_bf16_bf16_km_kn_mn_instances(std::vector<DeviceGemmNoOpPtr>&);
void add_device_gemm_xdl_c_shuffle_bf16_bf16_bf16_km_nk_mn_instances(std::vector<DeviceGemmNoOpPtr>&);
void add_device_gemm_xdl_c_shuffle_bf16_bf16_bf16_mk_nk_mn_instances(std::vector<DeviceGemmNoOpPtr>&);
void add_device_gemm_xdl_c_shuffle_bf16_bf16_bf16_mk_kn_mn_instances(std::vector<DeviceGemmNoOpPtr>&);
} // namespace device_gemm_instance
40
41
42
43
} // namespace device
} // namespace tensor_operation
} // namespace ck

44
int main()
45
{
46
47
    using RowMajor    = ck::tensor_layout::gemm::RowMajor;
    using ColumnMajor = ck::tensor_layout::gemm::ColumnMajor;
48

49
50
    bool res = true;
    std::vector<DeviceGemmNoOpPtr> gemmPtrs;
51

52
53
    ck::tensor_operation::device::device_gemm_instance::
        add_device_gemm_xdl_c_shuffle_bf16_bf16_bf16_km_kn_mn_instances(gemmPtrs);
54

55
56
57
58
59
60
61
62
63
64
    for(auto& gemmPtr : gemmPtrs)
    {
        res &= ck::gemm_util::TestGemmBF16<DeviceGemmNoOpPtr,
                                           ColumnMajor,
                                           RowMajor,
                                           RowMajor,
                                           PassThrough,
                                           PassThrough,
                                           PassThrough>{}(gemmPtr);
    }
65

66
67
68
    gemmPtrs.clear();
    ck::tensor_operation::device::device_gemm_instance::
        add_device_gemm_xdl_c_shuffle_bf16_bf16_bf16_km_nk_mn_instances(gemmPtrs);
69

70
71
72
73
74
75
76
77
78
79
    for(auto& gemmPtr : gemmPtrs)
    {
        res &= ck::gemm_util::TestGemmBF16<DeviceGemmNoOpPtr,
                                           ColumnMajor,
                                           ColumnMajor,
                                           RowMajor,
                                           PassThrough,
                                           PassThrough,
                                           PassThrough>{}(gemmPtr);
    }
80

81
82
83
    gemmPtrs.clear();
    ck::tensor_operation::device::device_gemm_instance::
        add_device_gemm_xdl_c_shuffle_bf16_bf16_bf16_mk_kn_mn_instances(gemmPtrs);
84

85
86
87
88
89
90
91
92
93
94
    for(auto& gemmPtr : gemmPtrs)
    {
        res &= ck::gemm_util::TestGemmBF16<DeviceGemmNoOpPtr,
                                           RowMajor,
                                           RowMajor,
                                           RowMajor,
                                           PassThrough,
                                           PassThrough,
                                           PassThrough>{}(gemmPtr);
    }
95

96
    gemmPtrs.clear();
97
98
99
100
101
    ck::tensor_operation::device::device_gemm_instance::
        add_device_gemm_xdl_c_shuffle_bf16_bf16_bf16_mk_nk_mn_instances(gemmPtrs);

    for(auto& gemmPtr : gemmPtrs)
    {
102
103
104
105
106
107
108
        res &= ck::gemm_util::TestGemmBF16<DeviceGemmNoOpPtr,
                                           RowMajor,
                                           ColumnMajor,
                                           RowMajor,
                                           PassThrough,
                                           PassThrough,
                                           PassThrough>{}(gemmPtr);
109
110
111
112
    }

    std::cout << "TestGemm ..... " << (res ? "SUCCESS" : "FAILURE") << std::endl;
}