kernel_launch.hpp 6.16 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
#pragma once

#include <hip/hip_runtime.h>

#include "ck/ck.hpp"
9
#include <ck/host_utility/device_prop.hpp>
Chao Liu's avatar
Chao Liu committed
10
#include "ck/stream_config.hpp"
11
#include "ck/host_utility/hip_check_error.hpp"
Chao Liu's avatar
Chao Liu committed
12

13
14
#include "rocm_smi/rocm_smi.h"

Chao Liu's avatar
Chao Liu committed
15
16
17
18
19
20
21
22
23
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
24
25
26
27
28
29
30
31

    rsmi_status_t ret;
    uint32_t num_devices;
    uint16_t dev_id;

    ret = rsmi_init(0);
    ret = rsmi_num_monitor_devices(&num_devices);

Chao Liu's avatar
Chao Liu committed
32
33
    if(stream_config.time_kernel_)
    {
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58

        if(ck::get_device_name() == "gfx940" || ck::get_device_name() == "gfx941" || ck::get_device_name() == "gfx942")
        {
            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 < stream_config.nrepeat_; ++i)
            {
                kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
                hip_check_error(hipGetLastError());
            }

            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));
            total_time/=10;
            stream_config.cold_niters_ = (1000.0 / total_time);//we need longer runtime to ramp up the clk on MI300s
59
60
61

            // Need to find some heuristic which Dynamically Define cold iterations based on GPU clock cycle 
            // #Emin #lookAt1 
62
63
            stream_config.nrepeat_     = stream_config.cold_niters_;
        }
64
#if DEBUG_LOG
Chao Liu's avatar
Chao Liu committed
65
66
67
68
69
70
71
72
73
        printf("%s: grid_dim {%d, %d, %d}, block_dim {%d, %d, %d} \n",
               __func__,
               grid_dim.x,
               grid_dim.y,
               grid_dim.z,
               block_dim.x,
               block_dim.y,
               block_dim.z);

74
        printf("Warm up %d times\n", stream_config.cold_niters_);
75
#endif
Chao Liu's avatar
Chao Liu committed
76
        // warm up
zjing14's avatar
zjing14 committed
77
78
79
80
81
        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
82

zjing14's avatar
zjing14 committed
83
        const int nrepeat = stream_config.nrepeat_;
84
#if DEBUG_LOG
Chao Liu's avatar
Chao Liu committed
85
        printf("Start running %d times...\n", nrepeat);
86
#endif
Chao Liu's avatar
Chao Liu committed
87
88
89
90
91
92
93
94
95
96
97
        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...);
98
            hip_check_error(hipGetLastError());
Chao Liu's avatar
Chao Liu committed
99
100
101
102
103
104
105
106
107
108
109
110
111
112
        }

        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));

        return total_time / nrepeat;
    }
    else
    {
        kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
113
        hip_check_error(hipGetLastError());
Chao Liu's avatar
Chao Liu committed
114
115
116
117
118

        return 0;
    }
#else
    kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
119
    hip_check_error(hipGetLastError());
Chao Liu's avatar
Chao Liu committed
120
121
122
123

    return 0;
#endif
}
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146

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_)
    {
#if DEBUG_LOG
        printf("%s: grid_dim {%d, %d, %d}, block_dim {%d, %d, %d} \n",
               __func__,
               grid_dim.x,
               grid_dim.y,
               grid_dim.z,
               block_dim.x,
               block_dim.y,
               block_dim.z);

147
        printf("Warm up %d times\n", stream_config.cold_niters_);
148
149
150
#endif
        // warm up
        preprocess();
151
152
153
154
155
        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());
        }
156

157
        const int nrepeat = stream_config.nrepeat_;
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#if DEBUG_LOG
        printf("Start running %d times...\n", nrepeat);
#endif
        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...);
173
            hip_check_error(hipGetLastError());
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
        }

        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));

        return total_time / nrepeat;
    }
    else
    {
        preprocess();
        kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
189
        hip_check_error(hipGetLastError());
190
191
192
193
194

        return 0;
    }
#else
    kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
195
    hip_check_error(hipGetLastError());
196
197
198
199

    return 0;
#endif
}