client_app_impl.hpp 4.03 KB
Newer Older
Jehandad Khan's avatar
Jehandad Khan committed
1
2
#pragma once

Jehandad Khan's avatar
Jehandad Khan committed
3
#include "host_interface.hpp"
Jehandad Khan's avatar
Jehandad Khan committed
4
5


Jehandad Khan's avatar
Jehandad Khan committed
6
7
8
9
10
11
12
13
14
15
struct DeviceMem
{
    float* ptr_mem=nullptr;
    int size;
    DeviceMem(int _size): size(_size){}
    float* GetDeviceBuffer()
    {
        return ptr_mem;
    }
};
Jehandad Khan's avatar
Jehandad Khan committed
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

namespace ck {
namespace app {

void profile_conv_fwd_impl(int do_verification,
                           int init_method,
                           bool do_log,
                           int nrepeat,
                           ck::index_t N,
                           ck::index_t K,
                           ck::index_t C,
                           std::vector<ck::index_t> input_spatial_lengths,
                           std::vector<ck::index_t> filter_spatial_lengths,
                           std::vector<ck::index_t> output_spatial_lengths,
                           std::vector<ck::index_t> conv_filter_strides,
                           std::vector<ck::index_t> conv_filter_dilations,
                           std::vector<ck::index_t> input_left_pads,
                           std::vector<ck::index_t> input_right_pads)
{
    const ck::index_t Y = filter_spatial_lengths[0];
    const ck::index_t X = filter_spatial_lengths[1];

    const ck::index_t Hi = input_spatial_lengths[0];
    const ck::index_t Wi = input_spatial_lengths[1];

    const ck::index_t Ho = output_spatial_lengths[0];
    const ck::index_t Wo = output_spatial_lengths[1];

    const auto in_sz = 1000;
    const auto wei_sz = 1000;
    const auto out_sz = 1000;

Jehandad Khan's avatar
Jehandad Khan committed
48
49
50
51
    using WeiDataType = float;
    using InDataType = float;
    using OutDataType = float;

Jehandad Khan's avatar
Jehandad Khan committed
52
53
54
55
56
57
58
    DeviceMem in_device_buf(sizeof(InDataType) * in_sz);
    DeviceMem wei_device_buf(sizeof(WeiDataType) * wei_sz);
    DeviceMem out_device_buf(sizeof(OutDataType) * out_sz);
    // data is already on device!


    // add device Conv instances
Jehandad Khan's avatar
Jehandad Khan committed
59
    std::vector<DeviceConvFwdPtr_t> conv_ptrs;
Jehandad Khan's avatar
Jehandad Khan committed
60

Jehandad Khan's avatar
Jehandad Khan committed
61
62
    add_device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_f32_instances_t(conv_ptrs);
    if(conv_ptrs.empty())
Jehandad Khan's avatar
Jehandad Khan committed
63
64
65
66
67
68
69
70
71
72
73
74
    {
        throw std::runtime_error("wrong! no device Conv instance found");
    }

    std::string best_conv_name;
    float best_ave_time   = 0;
    float best_tflops     = 0;
    float best_gb_per_sec = 0;

    // profile device Conv instances
    for(auto& conv_ptr : conv_ptrs)
    {
Jehandad Khan's avatar
Jehandad Khan committed
75
76
77
78
        auto argument_ptr = conv_ptr.MakeArgumentPointer(
            static_cast<void*>(in_device_buf.GetDeviceBuffer()),
            static_cast<void*>(wei_device_buf.GetDeviceBuffer()),
            static_cast<void*>(out_device_buf.GetDeviceBuffer()),
Jehandad Khan's avatar
Jehandad Khan committed
79
80
81
82
83
84
85
86
87
            N,
            K,
            C,
            input_spatial_lengths,
            filter_spatial_lengths,
            output_spatial_lengths,
            conv_filter_strides,
            conv_filter_dilations,
            input_left_pads,
Jehandad Khan's avatar
Jehandad Khan committed
88
            input_right_pads);
Jehandad Khan's avatar
Jehandad Khan committed
89

Jehandad Khan's avatar
Jehandad Khan committed
90
        auto invoker_ptr = conv_ptr.MakeInvokerPointer();
Jehandad Khan's avatar
Jehandad Khan committed
91

Jehandad Khan's avatar
Jehandad Khan committed
92
        if(conv_ptr.IsSupportedArgument(argument_ptr.get()))
Jehandad Khan's avatar
Jehandad Khan committed
93
        {
Jehandad Khan's avatar
Jehandad Khan committed
94
            std::string conv_name = conv_ptr.GetTypeString();
Jehandad Khan's avatar
Jehandad Khan committed
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
122
123
124
125
126

            float ave_time = invoker_ptr->Run(argument_ptr.get(), nrepeat);

            std::size_t flop = std::size_t(2) * N * K * Ho * Wo * C * Y * X;

            std::size_t num_btype = sizeof(InDataType) * (N * C * Hi * Wi) +
                                    sizeof(WeiDataType) * (K * C * Y * X) +
                                    sizeof(OutDataType) * (N * K * Ho * Wo);

            float tflops = static_cast<float>(flop) / 1.E9 / ave_time;

            float gb_per_sec = num_btype / 1.E6 / ave_time;

            std::cout << "Perf: " << ave_time << " ms, " << tflops << " TFlops, " << gb_per_sec
                      << " GB/s, " << conv_name << std::endl;

            if(tflops > best_tflops)
            {
                best_conv_name  = conv_name;
                best_tflops     = tflops;
                best_ave_time   = ave_time;
                best_gb_per_sec = gb_per_sec;
            }
        }
    }

    std::cout << "Best Perf: " << best_ave_time << " ms, " << best_tflops << " TFlops, "
              << best_gb_per_sec << " GB/s, " << best_conv_name << std::endl;
}

} // namespace profiler
} // namespace ck