blob: b95dcc65e016052467ade23130ffa8eee57ba9e7 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// See LICENSE file in the project root for full license information.
4//
5#pragma once
6
7namespace armnn
8{
9
10class ITensorHandle
11{
12public:
13 enum Type
14 {
15 Cpu,
16 CL,
17 Neon
18 };
19
20 virtual ~ITensorHandle(){}
21 virtual void Allocate() = 0;
22 virtual ITensorHandle::Type GetType() const = 0;
23};
24
25}