blob: 75f8d19651067ce4bd93007a3e3412c6b8ab0686 [file] [log] [blame]
Kaizen8938bd32017-09-28 14:38:23 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#include "arm_compute/runtime/CL/CLSubTensor.h"
25#include "arm_compute/runtime/CL/functions/CLActivationLayer.h"
26#include "arm_compute/runtime/CL/functions/CLConvolutionLayer.h"
27#include "arm_compute/runtime/CL/functions/CLDirectConvolutionLayer.h"
28#include "arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h"
29#include "arm_compute/runtime/CL/functions/CLNormalizationLayer.h"
30#include "arm_compute/runtime/CL/functions/CLPoolingLayer.h"
31#include "arm_compute/runtime/CL/functions/CLSoftmaxLayer.h"
32#include "tests/CL/CLAccessor.h"
33#include "tests/framework/Asserts.h"
34#include "tests/framework/Macros.h"
35#include "tests/networks/AlexNetNetwork.h"
36#include "tests/validation/Validation.h"
37
38#include <string>
39#include <vector>
40
41namespace arm_compute
42{
43namespace test
44{
45namespace validation
46{
47namespace
48{
49using CLAlexNetModel = networks::AlexNetNetwork<ICLTensor,
50 CLTensor,
51 CLSubTensor,
52 CLAccessor,
53 CLActivationLayer,
54 CLConvolutionLayer,
55 CLDirectConvolutionLayer,
56 CLFullyConnectedLayer,
57 CLNormalizationLayer,
58 CLPoolingLayer,
59 CLSoftmaxLayer>;
60std::vector<unsigned int> compute_alexnet(DataType dt, unsigned int batches, std::string input_file)
61{
62 std::vector<std::string> weight_files = { "cnn_data/alexnet_model/conv1_w.npy",
63 "cnn_data/alexnet_model/conv2_w.npy",
64 "cnn_data/alexnet_model/conv3_w.npy",
65 "cnn_data/alexnet_model/conv4_w.npy",
66 "cnn_data/alexnet_model/conv5_w.npy",
67 "cnn_data/alexnet_model/fc6_w.npy",
68 "cnn_data/alexnet_model/fc7_w.npy",
69 "cnn_data/alexnet_model/fc8_w.npy"
70 };
71
72 std::vector<std::string> bias_files = { "cnn_data/alexnet_model/conv1_b.npy",
73 "cnn_data/alexnet_model/conv2_b.npy",
74 "cnn_data/alexnet_model/conv3_b.npy",
75 "cnn_data/alexnet_model/conv4_b.npy",
76 "cnn_data/alexnet_model/conv5_b.npy",
77 "cnn_data/alexnet_model/fc6_b.npy",
78 "cnn_data/alexnet_model/fc7_b.npy",
79 "cnn_data/alexnet_model/fc8_b.npy"
80 };
81 CLAlexNetModel network{};
82 network.init(dt, 4, batches);
83 network.build();
84 network.allocate();
85 network.fill(weight_files, bias_files);
86 network.feed(std::move(input_file));
87 network.run();
88
89 return network.get_classifications();
90}
91} // namespace
92
93TEST_SUITE(CL)
94TEST_SUITE(SYSTEM_TESTS)
95
96TEST_CASE(AlexNet, framework::DatasetMode::PRECOMMIT)
97{
98 // Compute alexnet
99 std::vector<unsigned int> classified_labels = compute_alexnet(DataType::F32, 1, "cnn_data/imagenet_data/cat.npy");
100
101 // Expected labels
102 std::vector<unsigned int> expected_labels = { 281 };
103
104 // Validate labels
105 validate(classified_labels, expected_labels);
106}
107
108TEST_SUITE_END()
109TEST_SUITE_END()
110} // namespace validation
111} // namespace test
112} // namespace arm_compute