profile_groupnorm.cpp 2.99 KB
Newer Older
rocking's avatar
rocking committed
1
2
3
4
5
6
7
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-2022, Advanced Micro Devices, Inc. All rights reserved.

#include <iostream>
#include <vector>
#include <unordered_map>

Chao Liu's avatar
Chao Liu committed
8
#include "profiler/include/data_type_enum.hpp"
rocking's avatar
rocking committed
9
10
11
12
13
14
15
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
48
49
50
51
52
#include "profiler/include/profile_groupnorm_impl.hpp"

using ck::index_t;

struct GroupnormArgParser
{
    std::unordered_map<std::string, std::vector<int>> long_opts = {{"length", {}}};

    bool parse_opt(int argc, char* argv[], const std::string& key, int i)
    {
        if(std::string("--") + key == argv[i])
        {
            int pos = i;
            while(++i < argc && argv[i][0] != '-') {}
            int end = i;
            for(int j = pos + 1; j < end; j++)
            {
                long_opts[key].push_back(std::stoi(argv[j]));
            }
            return true;
        }
        return false;
    }

    void operator()(int argc, char* argv[])
    {
        for(auto& kv : long_opts)
        {
            for(int i = 1; i < argc; i++)
            {
                if(parse_opt(argc, argv, kv.first, i))
                    break;
            }
        }
    }
};

void print_help_groupnorm()
{
    std::cout << "arg1: tensor operation (groupnorm: Group normalization)\n"
              << "arg2: data type (0: fp16; 1: fp32)\n"
              << "arg3: verification (0: no; 1: yes)\n"
              << "arg4: initialization (0: no init; 1: integer value; 2: decimal value)\n"
              << "arg5: print tensor value (0: no; 1: yes)\n"
Chao Liu's avatar
Chao Liu committed
53
              << "arg6: time kernel (0=no, 1=yes)\n"
54
              << "--length: tensor extents (e.g, --length 1 16 16 32 40) \n"
rocking's avatar
rocking committed
55
56
57
58
59
              << std::endl;
}

int profile_groupnorm(int argc, char* argv[])
{
Chao Liu's avatar
Chao Liu committed
60
61
62
63
64
65
    ck::DataTypeEnum data_type  = ck::DataTypeEnum::Half;
    bool do_verification        = false;
    int init_method             = 0;
    bool do_log                 = 0;
    bool time_kernel            = 1;
    std::vector<index_t> length = {64, 16, 16, 32, 40};
rocking's avatar
rocking committed
66

Chao Liu's avatar
Chao Liu committed
67
    if(argc != 1 && argc != 13)
rocking's avatar
rocking committed
68
69
70
71
72
73
74
    {
        print_help_groupnorm();
        return 0;
    }

    if(argc == 14)
    {
Chao Liu's avatar
Chao Liu committed
75
76
77
78
79
        data_type       = static_cast<ck::DataTypeEnum>(std::stoi(argv[2]));
        do_verification = std::stoi(argv[3]);
        init_method     = std::stoi(argv[4]);
        do_log          = std::stoi(argv[5]);
        time_kernel     = std::stoi(argv[6]);
rocking's avatar
rocking committed
80
81
82
83
84
85
86
87
88
89

        // parse the long options
        GroupnormArgParser arg_parser;
        arg_parser(argc, argv);
        length = arg_parser.long_opts["length"];
    }

    using F16 = ck::half_t;
    using F32 = float;

Chao Liu's avatar
Chao Liu committed
90
91
92
93
94
95
    if(data_type == ck::DataTypeEnum::Float)
    {
        ck::profiler::profile_groupnorm_impl<F32, F32, F32, F32, F32>(
            do_verification, init_method, do_log, time_kernel, length);
    }
    else if(data_type == ck::DataTypeEnum::Half)
rocking's avatar
rocking committed
96
97
    {
        ck::profiler::profile_groupnorm_impl<F16, F16, F16, F32, F16>(
Chao Liu's avatar
Chao Liu committed
98
            do_verification, init_method, do_log, time_kernel, length);
rocking's avatar
rocking committed
99
100
101
102
103
104
105
106
    }
    else
    {
        throw std::runtime_error("not implemented yet");
    }

    return 0;
}