commit 3f4938648950a7f3bf9a19c320ca9fae7c52de20 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Mon May 13 13:44:23 2024 +0800 [feat] cviruntime opensource for cv18xx soc. - a4b6a3, add cumsum and gatherelements_pt.
27 lines
521 B
C
27 lines
521 B
C
/*
|
|
* Copyright (C) Cvitek Co., Ltd. 2019-2020. All rights reserved.
|
|
*
|
|
* File Name: bmruntime_bmkernel.h
|
|
* Description:
|
|
*/
|
|
|
|
#ifndef _BM_RUNTIME_BMKERNEL_H_
|
|
#define _BM_RUNTIME_BMKERNEL_H_
|
|
|
|
#include <bmruntime.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void bmruntime_bmkernel_create(bmctx_t ctx, void **p_bk_ctx);
|
|
void bmruntime_bmkernel_destroy(bmctx_t ctx);
|
|
void bmruntime_bmkernel_submit(bmctx_t ctx);
|
|
void bmruntime_bmkernel_submit_pio(bmctx_t ctx);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _BM_RUNTIME_BMKERNEL_H_ */
|