blob: 304bc0bf065df2ec4c763c6a99154c714d9128d3 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
5#pragma once
6
7namespace armnn
8{
9
10/// Contains information about inputs and outputs to a layer.
11/// This is needed at construction of workloads, but are not stored.
12struct WorkloadInfo
13{
14 std::vector<TensorInfo> m_InputTensorInfos;
15 std::vector<TensorInfo> m_OutputTensorInfos;
16};
17
18} //namespace armnn