kernel_launch.hpp 4.97 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_)
    {
23
24
        if(ck::EnvIsEnabled(ENV(CK_LOGGING)))
        {
25
            printf("%s: grid_dim {%u, %u, %u}, block_dim {%u, %u, %u} \n",
26
27
28
29
30
31
32
33
34
35
                   __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
36
        // warm up
zjing14's avatar
zjing14 committed
37
38
39
40
41
        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
42

zjing14's avatar
zjing14 committed
43
        const int nrepeat = stream_config.nrepeat_;
44
45
46
47
        if(ck::EnvIsEnabled(ENV(CK_LOGGING)))
        {
            printf("Start running %d times...\n", nrepeat);
        }
Chao Liu's avatar
Chao Liu committed
48
49
50
51
52
53
54
55
56
57
58
        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...);
59
            hip_check_error(hipGetLastError());
Chao Liu's avatar
Chao Liu committed
60
61
62
63
64
65
66
67
68
69
70
71
72
73
        }

        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...);
74
        hip_check_error(hipGetLastError());
Chao Liu's avatar
Chao Liu committed
75
76
77
78
79

        return 0;
    }
#else
    kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
80
    hip_check_error(hipGetLastError());
Chao Liu's avatar
Chao Liu committed
81
82
83
84

    return 0;
#endif
}
85
86
87
88
89
90
91
92
93
94
95
96
97

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_)
    {
98
99
        if(ck::EnvIsEnabled(ENV(CK_LOGGING)))
        {
100
            printf("%s: grid_dim {%u, %u, %u}, block_dim {%u, %u, %u} \n",
101
102
103
104
105
106
107
108
109
110
                   __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_);
        }
111
112
        // warm up
        preprocess();
113
114
115
116
117
        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());
        }
118

119
        const int nrepeat = stream_config.nrepeat_;
120
121
122
123
        if(ck::EnvIsEnabled(ENV(CK_LOGGING)))
        {
            printf("Start running %d times...\n", nrepeat);
        }
124
125
126
127
128
129
130
131
132
133
134
135
        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...);
136
            hip_check_error(hipGetLastError());
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
        }

        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...);
152
        hip_check_error(hipGetLastError());
153
154
155
156
157

        return 0;
    }
#else
    kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
158
    hip_check_error(hipGetLastError());
159
160
161
162

    return 0;
#endif
}