aboutsummaryrefslogtreecommitdiff
path: root/tests/profiling/GatordMockMain.cpp
blob: 91fa907795b15a5d490d6248a91758ad34eeeb21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// Copyright © 2019 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#include "CommandLineProcessor.hpp"

#include <cstdlib>

int main(int argc, char *argv[])
{
    armnn::gatordmock::CommandLineProcessor cmdline;
    if (!cmdline.ProcessCommandLine(argc, argv))
    {
        return EXIT_FAILURE;
    }
    return EXIT_SUCCESS;
}