blob: 250f88371e1e6741fc143d78516c54abef1d3607 [file] [log] [blame]
Matthew Benthamf61c2702019-04-23 16:43:27 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "../DriverTestHelpers.hpp"
7#include "../../1.0/FullyConnected.hpp"
8
9#include <boost/test/unit_test.hpp>
10
11BOOST_AUTO_TEST_SUITE(FullyConnectedReshapeTests)
12
13BOOST_AUTO_TEST_CASE(TestFlattenFullyConnectedInput)
14{
15 using armnn::TensorShape;
16 BOOST_TEST(FlattenFullyConnectedInput(TensorShape({97,1,1,2048}), TensorShape({512, 2048})) ==
17 TensorShape({97, 2048}));
18}
19
20BOOST_AUTO_TEST_SUITE_END()