aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/backends/ITensorHandle.hpp
blob: b95dcc65e016052467ade23130ffa8eee57ba9e7 (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
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//
#pragma once

namespace armnn
{

class ITensorHandle
{
public:
    enum Type
    {
        Cpu,
        CL,
        Neon
    };

    virtual ~ITensorHandle(){}
    virtual void Allocate() = 0;
    virtual ITensorHandle::Type GetType() const = 0;
};

}