3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-01 07:42:18 +00:00
Brooklyn/arch/arm/ARMnn/tests/ClassifierTestCaseData.hpp

22 lines
424 B
C++
Raw Normal View History

2022-04-02 13:06:56 +00:00
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <vector>
template <typename DataType>
class ClassifierTestCaseData
{
public:
ClassifierTestCaseData(unsigned int label, std::vector<DataType> inputImage)
: m_Label(label)
, m_InputImage(std::move(inputImage))
{
}
const unsigned int m_Label;
std::vector<DataType> m_InputImage;
};