ArmNN
 22.05.01
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 TensorInfos of 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;
23 };
24 
25 } //namespace armnn
Optional< std::string > m_ConvolutionMethod
Copyright (c) 2021 ARM Limited and Contributors.
std::vector< TensorInfo > m_InputTensorInfos
std::vector< TensorInfo > m_OutputTensorInfos
Optional< TensorInfo > m_BiasTensorInfo
EmptyOptional is used to initialize the Optional class in case we want to have default value for an O...
Definition: Optional.hpp:32
Contains information about TensorInfos of a layer.
Optional< TensorInfo > m_WeightsTensorInfo