mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
52 lines
1.4 KiB
C
52 lines
1.4 KiB
C
/**
|
|
******************************************************************************
|
|
* @file layers_generic_dqnn.h
|
|
* @author AIS
|
|
* @brief header file of AI platform DQNN generic datatypes
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2021 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 LAYERS_GENERIC_DQNN_H
|
|
#define LAYERS_GENERIC_DQNN_H
|
|
|
|
#include "layers_common.h"
|
|
#include "layers_generic.h"
|
|
|
|
/*!
|
|
* @defgroup layers_generic_dqnn Layers Definitions
|
|
* @brief definition
|
|
*
|
|
*/
|
|
|
|
AI_API_DECLARE_BEGIN
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
/* Forward Functions Section */
|
|
/******************************************************************************/
|
|
|
|
/*!
|
|
* @brief Handles concat with binary input, binary output and
|
|
* binary weights
|
|
* @ingroup layers_generic_dqnn
|
|
* @param layer concat layer
|
|
*/
|
|
AI_INTERNAL_API
|
|
void forward_concat_is1os1(ai_layer *pLayer);
|
|
|
|
|
|
|
|
AI_API_DECLARE_END
|
|
|
|
#endif /*LAYERS_GENERIC_DQNN_H*/
|