QortalOS Brooklyn for Raspberry Pi 4
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
748 B

//
// Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
namespace armnnDelegate
{
/// Macro utils
#define STRINGIFY_VALUE(s) STRINGIFY_MACRO(s)
#define STRINGIFY_MACRO(s) #s
// ArmNN Delegate version components
#define DELEGATE_MAJOR_VERSION 25
#define DELEGATE_MINOR_VERSION 1
#define DELEGATE_PATCH_VERSION 0
/// DELEGATE_VERSION: "X.Y.Z"
/// where:
/// X = Major version number
/// Y = Minor version number
/// Z = Patch version number
#define DELEGATE_VERSION STRINGIFY_VALUE(DELEGATE_MAJOR_VERSION) "." \
STRINGIFY_VALUE(DELEGATE_MINOR_VERSION) "." \
STRINGIFY_VALUE(DELEGATE_PATCH_VERSION)
} //namespace armnnDelegate