You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /*
- * Copyright (c) Huawei Technologies Co., Ltd. 2021. All rights reserved.
- * Description: ffts plus interface
- */
-
- #ifndef __CCE_RUNTIME_FFTS_PLUS_H
- #define __CCE_RUNTIME_FFTS_PLUS_H
-
- #include "base.h"
- #include "rt_stars_define.h"
-
- #if defined(__cplusplus) && !defined(COMPILE_OMG_PACKAGE)
- extern "C" {
- #endif
-
- #pragma pack(push)
- #pragma pack (1)
-
- typedef struct tagFftsPlusTaskInfo {
- const rtFftsPlusSqe_t *fftsPlusSqe;
- const void *descBuf; // include total context
- size_t descBufLen; // the length of descBuf
- } rtFftsPlusTaskInfo_t;
-
- #pragma pack(pop)
-
-
- RTS_API rtError_t rtFftsPlusTaskLaunch(rtFftsPlusTaskInfo_t *fftsPlusTaskInfo, rtStream_t stream);
-
-
- #if defined(__cplusplus) && !defined(COMPILE_OMG_PACKAGE)
- }
- #endif
- #endif // __CCE_RUNTIME_FFTS_H
|