|
12345678910111213141516171819202122232425262728293031323334 |
- /*
- * 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
|