aboutsummaryrefslogtreecommitdiff
path: root/tests/Cifar10Database.hpp
diff options
context:
space:
mode:
authortelsoa01 <telmo.soares@arm.com>2018-03-09 14:13:49 +0000
committertelsoa01 <telmo.soares@arm.com>2018-03-09 14:13:49 +0000
commit4fcda0101ec3d110c1d6d7bee5c83416b645528a (patch)
treec9a70aeb2887006160c1b3d265c27efadb7bdbae /tests/Cifar10Database.hpp
downloadarmnn-4fcda0101ec3d110c1d6d7bee5c83416b645528a.tar.gz
Release 18.02
Change-Id: Id3c11dc5ee94ef664374a988fcc6901e9a232fa6
Diffstat (limited to 'tests/Cifar10Database.hpp')
-rw-r--r--tests/Cifar10Database.hpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/Cifar10Database.hpp b/tests/Cifar10Database.hpp
new file mode 100644
index 0000000000..a4998cee1d
--- /dev/null
+++ b/tests/Cifar10Database.hpp
@@ -0,0 +1,23 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// See LICENSE file in the project root for full license information.
+//
+#pragma once
+
+#include "ClassifierTestCaseData.hpp"
+
+#include <string>
+#include <memory>
+
+class Cifar10Database
+{
+public:
+ using TTestCaseData = ClassifierTestCaseData<float>;
+
+ explicit Cifar10Database(const std::string& binaryFileDirectory, bool rgbPack = false);
+ std::unique_ptr<TTestCaseData> GetTestCaseData(unsigned int testCaseId);
+
+private:
+ std::string m_BinaryDirectory;
+ bool m_RgbPack;
+};