mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
15 lines
385 B
C
15 lines
385 B
C
|
// Copyright (c) OpenMMLab. All rights reserved.
|
||
|
|
||
|
#ifndef MMDEPLOY_SRC_APIS_C_MODEL_H_
|
||
|
#define MMDEPLOY_SRC_APIS_C_MODEL_H_
|
||
|
|
||
|
#include "common.h"
|
||
|
|
||
|
int mmdeploy_model_create_by_path(const char* path, mm_model_t* model);
|
||
|
|
||
|
int mmdeploy_model_create(const void* buffer, int size, mm_model_t* model);
|
||
|
|
||
|
void mmdeploy_model_destroy(mm_model_t* model);
|
||
|
|
||
|
#endif // MMDEPLOY_SRC_APIS_C_MODEL_H_
|