blob: 3fa19e4f03fa1f6a7e4751a0d7dceab84ca0cfd5 [file] [log] [blame]
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +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 */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010024#include "arm_compute/runtime/NEON/functions/NEActivationLayer.h"
25#include "arm_compute/runtime/NEON/functions/NEConvolutionLayer.h"
SiCong Li86b53332017-08-23 11:02:43 +010026#include "arm_compute/runtime/NEON/functions/NEDirectConvolutionLayer.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/runtime/NEON/functions/NEFullyConnectedLayer.h"
28#include "arm_compute/runtime/NEON/functions/NENormalizationLayer.h"
29#include "arm_compute/runtime/NEON/functions/NEPoolingLayer.h"
30#include "arm_compute/runtime/NEON/functions/NESoftmaxLayer.h"
31#include "arm_compute/runtime/SubTensor.h"
SiCong Li86b53332017-08-23 11:02:43 +010032#include "tests/NEON/Accessor.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"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037
SiCong Li86b53332017-08-23 11:02:43 +010038#include <string>
39#include <vector>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040
SiCong Li86b53332017-08-23 11:02:43 +010041namespace arm_compute
42{
43namespace test
44{
45namespace validation
46{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047namespace
48{
SiCong Li86b53332017-08-23 11:02:43 +010049using NEAlexNetModel = networks::AlexNetNetwork<ITensor,
Anthony Barbier6ff3b192017-09-04 18:44:23 +010050 Tensor,
51 SubTensor,
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010052 Accessor,
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053 NEActivationLayer,
54 NEConvolutionLayer,
SiCong Li86b53332017-08-23 11:02:43 +010055 NEDirectConvolutionLayer,
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056 NEFullyConnectedLayer,
57 NENormalizationLayer,
58 NEPoolingLayer,
59 NESoftmaxLayer>;
SiCong Li86b53332017-08-23 11:02:43 +010060std::vector<unsigned int> compute_alexnet(DataType dt, unsigned int batches, std::string input_file)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010061{
SiCong Li86b53332017-08-23 11:02:43 +010062 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"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010070 };
71
SiCong Li86b53332017-08-23 11:02:43 +010072 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"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010080 };
81 NEAlexNetModel network{};
82
SiCong Li86b53332017-08-23 11:02:43 +010083 network.init(dt, 4, batches);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010084 network.build();
85 network.allocate();
86 network.fill(weight_files, bias_files);
87 network.feed(std::move(input_file));
88 network.run();
89
90 return network.get_classifications();
91}
92} // namespace
93
SiCong Li86b53332017-08-23 11:02:43 +010094TEST_SUITE(NEON)
95TEST_SUITE(SYSTEM_TESTS)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010096
Georgios Pinitas898a8062017-09-12 19:19:12 +010097TEST_CASE(AlexNet, framework::DatasetMode::PRECOMMIT)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010098{
99 // Compute alexnet
SiCong Li86b53332017-08-23 11:02:43 +0100100 std::vector<unsigned int> classified_labels = compute_alexnet(DataType::F32, 1, "cnn_data/imagenet_data/cat.npy");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101
102 // Expected labels
SiCong Li86b53332017-08-23 11:02:43 +0100103 std::vector<unsigned int> expected_labels = { 281 };
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104
105 // Validate labels
106 validate(classified_labels, expected_labels);
107}
108
SiCong Li86b53332017-08-23 11:02:43 +0100109TEST_SUITE_END()
110TEST_SUITE_END()
111} // namespace validation
112} // namespace test
113} // namespace arm_compute