blob: 9be6f2cf53aceddfa21133959e5518ed6545e367 [file] [log] [blame]
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +01001/*
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +01002 * Copyright (c) 2017-2018 ARM Limited.
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +01003 *
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/CL/CLSubTensor.h"
25#include "arm_compute/runtime/CL/functions/CLActivationLayer.h"
26#include "arm_compute/runtime/CL/functions/CLConvolutionLayer.h"
SiCong Li86b53332017-08-23 11:02:43 +010027#include "arm_compute/runtime/CL/functions/CLDirectConvolutionLayer.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028#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"
SiCong Li86b53332017-08-23 11:02:43 +010032#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"
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 CLAlexNetModel = networks::AlexNetNetwork<ICLTensor,
Anthony Barbier6ff3b192017-09-04 18:44:23 +010050 CLTensor,
51 CLSubTensor,
52 CLAccessor,
53 CLActivationLayer,
54 CLConvolutionLayer,
SiCong Li86b53332017-08-23 11:02:43 +010055 CLDirectConvolutionLayer,
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056 CLFullyConnectedLayer,
57 CLNormalizationLayer,
58 CLPoolingLayer,
59 CLSoftmaxLayer>;
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 CLAlexNetModel network{};
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010082 network.init(dt, batches);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083 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
SiCong Li86b53332017-08-23 11:02:43 +010093TEST_SUITE(CL)
94TEST_SUITE(SYSTEM_TESTS)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010095
SiCong Li86b53332017-08-23 11:02:43 +010096TEST_CASE(AlexNet, framework::DatasetMode::PRECOMMIT)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010097{
98 // Compute alexnet
SiCong Li86b53332017-08-23 11:02:43 +010099 std::vector<unsigned int> classified_labels = compute_alexnet(DataType::F32, 1, "cnn_data/imagenet_data/cat.npy");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100100
101 // Expected labels
SiCong Li86b53332017-08-23 11:02:43 +0100102 std::vector<unsigned int> expected_labels = { 281 };
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100103
104 // Validate labels
105 validate(classified_labels, expected_labels);
106}
107
SiCong Li86b53332017-08-23 11:02:43 +0100108TEST_SUITE_END()
109TEST_SUITE_END()
110} // namespace validation
111} // namespace test
112} // namespace arm_compute