aboutsummaryrefslogtreecommitdiff
path: root/python/pyarmnn/src/pyarmnn/swig/armnn_version.i
blob: 039b16605d8d2266b2456b2cd9c48716f9a27c85 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
%module pyarmnn_version

%include "std_string.i"

%{
#define SWIG_FILE_WITH_INIT
#include "armnn/Version.hpp"
%}

%{
    std::string GetVersion()
    {
        return ARMNN_VERSION;
    };

    std::string GetMajorVersion()
    {
        return STRINGIFY_VALUE(ARMNN_MAJOR_VERSION);
    };

    std::string GetMinorVersion()
    {
        return STRINGIFY_VALUE(ARMNN_MINOR_VERSION);
    };
%}
%feature("docstring",
"
    Returns Arm NN library full version: MAJOR + MINOR + INCREMENTAL.

    Returns:
        str: Full version of Arm NN installed.

") GetVersion;
std::string GetVersion();

%feature("docstring",
"
    Returns Arm NN library major version.

    Returns:
        str: Major version of Arm NN installed.

") GetMajorVersion;
std::string GetMajorVersion();

%feature("docstring",
"
    Returns Arm NN library minor version.

    Returns:
        str: Minor version of Arm NN installed.

") GetMinorVersion;
std::string GetMinorVersion();