mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
32 lines
948 B
C
32 lines
948 B
C
/**
|
|
******************************************************************************
|
|
* @file ai_common_config.h
|
|
* @author AST Embedded Analytics Research Platform
|
|
* @brief header file of AI platform common compile configuration defines
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2018 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_COMMON_CONFIG_H
|
|
#define AI_COMMON_CONFIG_H
|
|
|
|
/*!
|
|
* @defgroup layers Layers Compilation Config Definitions
|
|
* @brief definition
|
|
*
|
|
*/
|
|
|
|
#define HAS_PROFILE_FLOAT
|
|
#define HAS_PROFILE_FIXED
|
|
|
|
|
|
#endif /*AI_COMMON_CONFIG_H*/
|