47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
|
|
/**
|
|
******************************************************************************
|
|
* @file model_config.h
|
|
* @author AST Embedded Analytics Research Platform
|
|
* @date 2025-05-20T15:23:57+0800
|
|
* @brief AI Tool Automatic Code Generator for Custom Layers Implementation
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2025 STMicroelectronics.
|
|
* All rights reserved.
|
|
*
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
* in the root directory of this software component.
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef AI_MODEL_CONFIG_H
|
|
#define AI_MODEL_CONFIG_H
|
|
|
|
#undef AI_TOOLS_VERSION_MAJOR
|
|
#undef AI_TOOLS_VERSION_MINOR
|
|
#undef AI_TOOLS_VERSION_MICRO
|
|
#define AI_TOOLS_VERSION_MAJOR 2
|
|
#define AI_TOOLS_VERSION_MINOR 0
|
|
#define AI_TOOLS_VERSION_MICRO 0
|
|
#define AI_TOOLS_VERSION_EXTRA "20049"
|
|
|
|
|
|
#undef AI_PLATFORM_API_MAJOR
|
|
#undef AI_PLATFORM_API_MINOR
|
|
#undef AI_PLATFORM_API_MICRO
|
|
#define AI_PLATFORM_API_MAJOR (1)
|
|
#define AI_PLATFORM_API_MINOR (1)
|
|
#define AI_PLATFORM_API_MICRO (0)
|
|
|
|
#undef AI_TOOLS_API_VERSION_MAJOR
|
|
#undef AI_TOOLS_API_VERSION_MINOR
|
|
#undef AI_TOOLS_API_VERSION_MICRO
|
|
#define AI_TOOLS_API_VERSION_MAJOR (1)
|
|
#define AI_TOOLS_API_VERSION_MINOR (5)
|
|
#define AI_TOOLS_API_VERSION_MICRO (0)
|
|
|
|
#endif /*AI_MODEL_CONFIG_H*/
|