mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
70 lines
1.9 KiB
C
70 lines
1.9 KiB
C
/**
|
|
******************************************************************************
|
|
* @file layers_upsample_generic.h
|
|
* @author STMicroelectronics
|
|
* @brief header file of AI platform padding generic datatypes
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2022 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_UPSAMPLE_H
|
|
#define LAYERS_UPSAMPLE_H
|
|
|
|
#include "layers_generic.h"
|
|
|
|
/*!
|
|
* @defgroup layers_pad_generic Layers Definitions
|
|
* @brief definition
|
|
*
|
|
*/
|
|
AI_API_DECLARE_BEGIN
|
|
|
|
|
|
/******************************************************************************/
|
|
/* Forward Functions Section */
|
|
/******************************************************************************/
|
|
|
|
|
|
/*!
|
|
* @brief Handles upsampling in zeros mode
|
|
* @ingroup layers_upsample
|
|
* @param layer upsample layer
|
|
*/
|
|
AI_INTERNAL_API
|
|
void forward_upsample_zeros_is8os8(ai_layer* layer);
|
|
|
|
/*!
|
|
* @brief Handles upsampling in bilinear mode
|
|
* @ingroup layers_upsample
|
|
* @param layer upsample layer
|
|
*/
|
|
AI_INTERNAL_API
|
|
void forward_upsample_bilinear_is8os8(ai_layer* layer);
|
|
|
|
/*!
|
|
* @brief Handles upsampling in zeros mode
|
|
* @ingroup layers_upsample
|
|
* @param layer upsample layer
|
|
*/
|
|
AI_INTERNAL_API
|
|
void forward_upsample_zeros_is16os16(ai_layer* layer);
|
|
|
|
/*!
|
|
* @brief Handles upsampling in bilinear mode
|
|
* @ingroup layers_upsample
|
|
* @param layer upsample layer
|
|
*/
|
|
AI_INTERNAL_API
|
|
void forward_upsample_bilinear_is16os16(ai_layer* layer);
|
|
AI_API_DECLARE_END
|
|
|
|
#endif /*LAYERS_UPSAMPLE_H*/
|