NNXSW-1853 Change SubgraphViewSelector algorithm
[platform/upstream/armnn.git] / tests / ClassifierTestCaseData.hpp
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 #pragma once
6
7 #include <vector>
8
9 template <typename DataType>
10 class ClassifierTestCaseData
11 {
12 public:
13     ClassifierTestCaseData(unsigned int label, std::vector<DataType> inputImage)
14      : m_Label(label)
15      , m_InputImage(std::move(inputImage))
16     {
17     }
18
19     const unsigned int m_Label;
20     std::vector<DataType> m_InputImage;
21 };