ConvBiasDepthToSpace.cpp 5.84 KB
Newer Older
yanjl1's avatar
Initial  
yanjl1 committed
1
2
3
4
5
6
7
8
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#include <cstdint>
#include <iostream>

#include "utils.hpp"

#include <hipdnn_data_sdk/utilities/Tensor.hpp>
#include <hipdnn_data_sdk/utilities/Workspace.hpp>
#include <hipdnn_frontend.hpp>

int main()
{
    using InputType = hipdnn_data_sdk::types::half;

    const int64_t n = 1; // Batch size
    // Input
    const int64_t c = 8; // Number of channels
    const int64_t h = 128; // Height
    const int64_t w = 128; // Width

    // Filter
    const int64_t k = 16; // Number of filters
    const int64_t r = 3; // Height
    const int64_t s = 3; // Width

    // blockSize
    const int64_t blockSize = 2;

    // Conv param
    const std::vector<int64_t> strides = {1, 1};
    const std::vector<int64_t> padding = {1, 1};
    const std::vector<int64_t> dilation = {1, 1};

    const int64_t outH = ((h + 2 * padding[0] - (dilation[0] * (r - 1) + 1)) / strides[0]) + 1;
    const int64_t outW = ((w + 2 * padding[1] - (dilation[1] * (s - 1) + 1)) / strides[1]) + 1;

    auto buildConvDepthToSpaceGraph = [=](hipdnnHandle_t handle) {
        auto graph = std::make_shared<hipdnn_frontend::graph::Graph>();

        graph->set_name("conv_depth_to_space_graph")
            .set_io_data_type(hipdnn_frontend::getDataTypeEnumFromType<InputType>())
            .set_intermediate_data_type(hipdnn_frontend::getDataTypeEnumFromType<InputType>())
            .set_compute_data_type(hipdnn_frontend::DataType::FLOAT); //

        // create conv
        auto input = std::make_shared<hipdnn_frontend::graph::TensorAttributes>(
            hipdnn_frontend::graph::Tensor_attributes()
                .set_name("image")
                .set_dim({n, c, h, w})
                .set_stride({c * h * w, 1, c * w, c}));
        auto filter = std::make_shared<hipdnn_frontend::graph::TensorAttributes>(
            hipdnn_frontend::graph::Tensor_attributes()
                .set_name("filter")
                .set_dim({k, c, r, s})
                .set_stride({c * r * s, 1, c * s, c}));
        auto convFpropAttributes = hipdnn_frontend::graph::ConvFpropAttributes()
                                       .set_name("conv_fprop_node")
                                       .set_padding(padding)
                                       .set_stride(strides)
                                       .set_dilation(dilation);
        auto convOutput = graph->conv_fprop(input, filter, convFpropAttributes);

        // create bias
        auto bias = std::make_shared<hipdnn_frontend::graph::TensorAttributes>(
            hipdnn_frontend::graph::Tensor_attributes()
                .set_name("bias")
                .set_dim({1, k, 1, 1})
                .set_stride({k, 1, k, k}));
        auto biasAttributes = hipdnn_frontend::graph::PointwiseAttributes()
                                  .set_name("bias_node")
                                  .set_mode(hipdnn_frontend::PointwiseMode_t::ADD);
        auto biasOutput = graph->pointwise(convOutput, bias, biasAttributes);

        // create reshape
        auto firstReshapeAttributes
            = hipdnn_frontend::graph::ReshapeAttributes()
                  .set_name("first_reshape_node")
                  .set_dim({n, k / (blockSize * blockSize), blockSize, blockSize, outH, outW});
        auto firstReshapeOutput = graph->reshape(biasOutput, firstReshapeAttributes);

        // create transpose
        auto transposeAttributes = hipdnn_frontend::graph::TransposeAttributes()
                                       .set_name("transpose_node")
                                       .set_permutation({0, 1, 4, 2, 5, 3}); // CRD
        auto transposeOutput = graph->transpose(firstReshapeOutput, transposeAttributes);

        // create reshape
        auto secondReshapeAttributes
            = hipdnn_frontend::graph::ReshapeAttributes()
                  .set_name("second_reshape_node")
                  .set_dim({n, k / (blockSize * blockSize), outH * blockSize, outW * blockSize})
                  .set_stride(
                      {k * outH * outW, 1, k / blockSize * outW, k / (blockSize * blockSize)});
        auto secondReshapeOutput = graph->reshape(transposeOutput, secondReshapeAttributes);
        secondReshapeOutput->set_output(true);

        // build graph
        HIPDNN_FE_CHECK(graph->build(handle));

        return std::make_tuple(graph, input, filter, bias, secondReshapeOutput);
    };

    auto backend = hipdnn_frontend::detail::hipdnnBackend();
    if(!backend)
    {
        std::cout << "Creat backend failed. \n";
        return 1;
    }

    hipdnnHandle_t handle;
    HIPDNN_CHECK(backend->create(&handle));

    auto [graph, input, filter, bias, output] = buildConvDepthToSpaceGraph(handle);

    // Allocate DCU memory
    hipdnn_data_sdk::utilities::Tensor<InputType> inputTensor(input->get_dim(),
                                                              input->get_stride());
    hipdnn_data_sdk::utilities::Tensor<InputType> wTensor(filter->get_dim(), filter->get_stride());
    hipdnn_data_sdk::utilities::Tensor<InputType> biasTensor(bias->get_dim(), bias->get_stride());
    hipdnn_data_sdk::utilities::Tensor<InputType> outTensor(output->get_dim(),
                                                            output->get_stride());

    std::unordered_map<int64_t, void*> variantPack;
    variantPack[input->get_uid()] = inputTensor.memory().deviceData();
    variantPack[filter->get_uid()] = wTensor.memory().deviceData();
    variantPack[bias->get_uid()] = biasTensor.memory().deviceData();
    variantPack[output->get_uid()] = outTensor.memory().deviceData();

    int64_t workspaceSize = 0;
    HIPDNN_FE_CHECK(graph->get_workspace_size(workspaceSize));
    const hipdnn_data_sdk::utilities::Workspace workspace(static_cast<size_t>(workspaceSize));

    HIPDNN_FE_CHECK(graph->execute(handle, variantPack, workspace.get()));

    std::cout << "Convolution_depth_to_space_pointwise graph execution complete. \n";

    HIPDNN_CHECK(backend->destroy(handle));
    return 0;
}