aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/backends/ClWorkloads/ClDepthwiseConvolutionFloat32Workload.hpp
blob: 8711f0c515fc8b62ad4f72718728a716e6808332 (plain)
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
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//

#pragma once

#include "backends/ClWorkloadUtils.hpp"

namespace armnn
{

class ClDepthwiseConvolutionFloat32Workload : public Float32Workload<DepthwiseConvolution2dQueueDescriptor>
{
public:
    ClDepthwiseConvolutionFloat32Workload(const DepthwiseConvolution2dQueueDescriptor& descriptor,
                                          const WorkloadInfo& info);
    void Execute() const override;

private:
    typedef float KernelDataType;
    typedef float BiasDataType;

    mutable std::unique_ptr<arm_compute::IFunction> m_pDepthwiseConvolutionLayer;

    arm_compute::CLTensor m_KernelTensor;
    arm_compute::CLTensor m_BiasTensor;

    template <typename WorkloadType>
    friend void InitClDepthwiseConvolutionWorkload(WorkloadType& workload);
};

} //namespace armnn