ArmNN
 20.02
WorkloadInfo.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2020 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 #pragma once
6 
7 #include <armnn/Tensor.hpp>
8 
9 #include <vector>
10 
11 namespace armnn
12 {
13 
14 /// Contains information about inputs and outputs to a layer.
15 /// This is needed at construction of workloads, but are not stored.
17 {
18  std::vector<TensorInfo> m_InputTensorInfos;
19  std::vector<TensorInfo> m_OutputTensorInfos;
20 };
21 
22 } //namespace armnn
Copyright (c) 2020 ARM Limited.
std::vector< TensorInfo > m_InputTensorInfos
std::vector< TensorInfo > m_OutputTensorInfos
Contains information about inputs and outputs to a layer.