blob: eee2124678313fac2d3fec39c3e2ed8ec2800338 [file] [log] [blame]
Matthew Sloyanac001ee2021-02-03 10:43:04 +00001//
2// Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8namespace armnnTfLiteParser
9{
10
11/// Macro utils
12#define STRINGIFY_VALUE(s) STRINGIFY_MACRO(s)
13#define STRINGIFY_MACRO(s) #s
14
15// TfLiteParser version components
Nikhil Raj3390e252021-02-11 17:39:47 +000016#define TFLITE_PARSER_MAJOR_VERSION 24
James Conroya0f8b152022-06-21 11:31:47 +000017#define TFLITE_PARSER_MINOR_VERSION 4
Matthew Sloyanac001ee2021-02-03 10:43:04 +000018#define TFLITE_PARSER_PATCH_VERSION 0
19
20/// TFLITE_PARSER_VERSION: "X.Y.Z"
21/// where:
22/// X = Major version number
23/// Y = Minor version number
24/// Z = Patch version number
25#define TFLITE_PARSER_VERSION STRINGIFY_VALUE(TFLITE_PARSER_MAJOR_VERSION) "." \
26 STRINGIFY_VALUE(TFLITE_PARSER_MINOR_VERSION) "." \
27 STRINGIFY_VALUE(TFLITE_PARSER_PATCH_VERSION)
28
29} //namespace armnnTfLiteParser