kernel_launch.hpp 6.69 KB
Newer Older
Chao Liu's avatar
Chao Liu committed
1
// SPDX-License-Identifier: MIT
Illia Silin's avatar
Illia Silin committed
2
// Copyright (c) 2018-2023, Advanced Micro Devices, Inc. All rights reserved.
Chao Liu's avatar
Chao Liu committed
3

Chao Liu's avatar
Chao Liu committed
4
5
6
7
8
9
#pragma once

#include <hip/hip_runtime.h>

#include "ck/ck.hpp"
#include "ck/stream_config.hpp"
10
#include "ck/host_utility/hip_check_error.hpp"
Chao Liu's avatar
Chao Liu committed
11
12
13
14
15
16
17
18
19
20
21
22

template <typename... Args, typename F>
float launch_and_time_kernel(const StreamConfig& stream_config,
                             F kernel,
                             dim3 grid_dim,
                             dim3 block_dim,
                             std::size_t lds_byte,
                             Args... args)
{
#if CK_TIME_KERNEL
    if(stream_config.time_kernel_)
    {
aska-0096's avatar
aska-0096 committed
23
24
#if 0
        printf("HipGraph OFF\n");
25
        if(ck::EnvIsEnabled(CK_ENV(CK_LOGGING)))
26
        {
27
            printf("%s: grid_dim {%u, %u, %u}, block_dim {%u, %u, %u} \n",
28
29
30
31
32
33
34
35
36
37
                   __func__,
                   grid_dim.x,
                   grid_dim.y,
                   grid_dim.z,
                   block_dim.x,
                   block_dim.y,
                   block_dim.z);

            printf("Warm up %d times\n", stream_config.cold_niters_);
        }
Chao Liu's avatar
Chao Liu committed
38
        // warm up
zjing14's avatar
zjing14 committed
39
40
41
42
43
        for(int i = 0; i < stream_config.cold_niters_; ++i)
        {
            kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
            hip_check_error(hipGetLastError());
        }
Chao Liu's avatar
Chao Liu committed
44

zjing14's avatar
zjing14 committed
45
        const int nrepeat = stream_config.nrepeat_;
46
        if(ck::EnvIsEnabled(CK_ENV(CK_LOGGING)))
47
48
49
        {
            printf("Start running %d times...\n", nrepeat);
        }
Chao Liu's avatar
Chao Liu committed
50
51
52
53
54
55
56
57
58
59
60
        hipEvent_t start, stop;

        hip_check_error(hipEventCreate(&start));
        hip_check_error(hipEventCreate(&stop));

        hip_check_error(hipDeviceSynchronize());
        hip_check_error(hipEventRecord(start, stream_config.stream_id_));

        for(int i = 0; i < nrepeat; ++i)
        {
            kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
61
            hip_check_error(hipGetLastError());
Chao Liu's avatar
Chao Liu committed
62
63
64
65
66
67
68
69
70
        }

        hip_check_error(hipEventRecord(stop, stream_config.stream_id_));
        hip_check_error(hipEventSynchronize(stop));

        float total_time = 0;

        hip_check_error(hipEventElapsedTime(&total_time, start, stop));

71
72
73
        hip_check_error(hipEventDestroy(start));
        hip_check_error(hipEventDestroy(stop));

Chao Liu's avatar
Chao Liu committed
74
        return total_time / nrepeat;
aska-0096's avatar
aska-0096 committed
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#elif 1
        printf("HipGraph ON\n");
        hipGraph_t graph_;
        hipStream_t stream_;

        HIP_CHECK_ERROR(hipStreamCreate(&stream_));
        StreamConfig sc{stream_};

        HIP_CHECK_ERROR(hipStreamBeginCapture(sc.stream_id_, hipStreamCaptureModeGlobal));
        for(int i_r = 0; i_r < stream_config.nrepeat_; i_r++)
        {
            kernel<<<grid_dim, block_dim, lds_byte, sc.stream_id_>>>(args...);
        }
        HIP_CHECK_ERROR(hipStreamEndCapture(sc.stream_id_, &graph_));

        hipGraphExec_t instance_;
        HIP_CHECK_ERROR(hipGraphInstantiate(&instance_, graph_, nullptr, nullptr, 0));

        hipEvent_t start_, stop_;

        HIP_CHECK_ERROR(hipEventCreate(&start_));
        HIP_CHECK_ERROR(hipEventCreate(&stop_));

        // warm-up
        for(int i_r = 0; i_r < stream_config.cold_niters_; i_r++)
        {
            kernel<<<grid_dim, block_dim, lds_byte, sc.stream_id_>>>(args...);
        }
        HIP_CHECK_ERROR(hipDeviceSynchronize());

        HIP_CHECK_ERROR(hipEventRecord(start_, sc.stream_id_));

        HIP_CHECK_ERROR(hipGraphLaunch(instance_, sc.stream_id_));

        HIP_CHECK_ERROR(hipEventRecord(stop_, sc.stream_id_));
        HIP_CHECK_ERROR(hipEventSynchronize(stop_));

        HIP_CHECK_ERROR(hipGetLastError());

        HIP_CHECK_ERROR(hipGraphDestroy(graph_));

        float total_time = 0;

        HIP_CHECK_ERROR(hipEventElapsedTime(&total_time, start_, stop_));

        return total_time / stream_config.nrepeat_;
#endif
Chao Liu's avatar
Chao Liu committed
122
123
124
125
    }
    else
    {
        kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
126
        hip_check_error(hipGetLastError());
Chao Liu's avatar
Chao Liu committed
127
128
129
130
131

        return 0;
    }
#else
    kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
132
    hip_check_error(hipGetLastError());
Chao Liu's avatar
Chao Liu committed
133
134
135
136

    return 0;
#endif
}
137
138
139
140
141
142
143
144
145
146
147
148
149

template <typename... Args, typename F, typename PreProcessFunc>
float launch_and_time_kernel_with_preprocess(const StreamConfig& stream_config,
                                             PreProcessFunc preprocess,
                                             F kernel,
                                             dim3 grid_dim,
                                             dim3 block_dim,
                                             std::size_t lds_byte,
                                             Args... args)
{
#if CK_TIME_KERNEL
    if(stream_config.time_kernel_)
    {
150
        if(ck::EnvIsEnabled(CK_ENV(CK_LOGGING)))
151
        {
152
            printf("%s: grid_dim {%u, %u, %u}, block_dim {%u, %u, %u} \n",
153
154
155
156
157
158
159
160
161
162
                   __func__,
                   grid_dim.x,
                   grid_dim.y,
                   grid_dim.z,
                   block_dim.x,
                   block_dim.y,
                   block_dim.z);

            printf("Warm up %d times\n", stream_config.cold_niters_);
        }
163
164
        // warm up
        preprocess();
165
166
167
168
169
        for(int i = 0; i < stream_config.cold_niters_; ++i)
        {
            kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
            hip_check_error(hipGetLastError());
        }
170

171
        const int nrepeat = stream_config.nrepeat_;
172
        if(ck::EnvIsEnabled(CK_ENV(CK_LOGGING)))
173
174
175
        {
            printf("Start running %d times...\n", nrepeat);
        }
176
177
178
179
180
181
182
183
184
185
186
187
        hipEvent_t start, stop;

        hip_check_error(hipEventCreate(&start));
        hip_check_error(hipEventCreate(&stop));

        hip_check_error(hipDeviceSynchronize());
        hip_check_error(hipEventRecord(start, stream_config.stream_id_));

        for(int i = 0; i < nrepeat; ++i)
        {
            preprocess();
            kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
188
            hip_check_error(hipGetLastError());
189
190
191
192
193
194
195
196
197
        }

        hip_check_error(hipEventRecord(stop, stream_config.stream_id_));
        hip_check_error(hipEventSynchronize(stop));

        float total_time = 0;

        hip_check_error(hipEventElapsedTime(&total_time, start, stop));

198
199
200
        hip_check_error(hipEventDestroy(start));
        hip_check_error(hipEventDestroy(stop));

201
202
203
204
205
206
        return total_time / nrepeat;
    }
    else
    {
        preprocess();
        kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
207
        hip_check_error(hipGetLastError());
208
209
210
211
212

        return 0;
    }
#else
    kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
213
    hip_check_error(hipGetLastError());
214
215
216
217

    return 0;
#endif
}