aboutsummaryrefslogtreecommitdiff
path: root/delegate/test/NormalizationTest.cpp
blob: 3fc3141f08e061ffb6827e4384bca6d2aa4829bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// Copyright © 2021, 2023-2024 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#include "NormalizationTestHelper.hpp"

#include <doctest/doctest.h>

namespace armnnDelegate
{

TEST_SUITE("L2NormalizationTests")
{

TEST_CASE ("L2NormalizationFp32Test_Test")
{
    L2NormalizationTest();
}

} // TEST_SUITE("L2NormalizationTests")

TEST_SUITE("LocalResponseNormalizationTests")
{

TEST_CASE ("LocalResponseNormalizationTest_Test")
{
    LocalResponseNormalizationTest(3, 1.f, 1.f, 1.f);
}

} // TEST_SUITE("LocalResponseNormalizationTests")

} // namespace armnnDelegate