forked from OpenPPL/ppl.nn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtime_builder.h
58 lines (45 loc) · 2.03 KB
/
runtime_builder.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#ifndef _ST_HPC_PPL_NN_MODELS_PMX_RUNTIME_BUILDER_H_
#define _ST_HPC_PPL_NN_MODELS_PMX_RUNTIME_BUILDER_H_
#include "ppl/nn/common/common.h"
#include "ppl/nn/engines/engine.h"
#include "ppl/nn/runtime/runtime.h"
#include "ppl/nn/utils/data_stream.h"
namespace ppl { namespace nn { namespace pmx {
class PPLNN_PUBLIC RuntimeBuilder {
public:
struct PPLNN_PUBLIC Resources final {
/** engines are managed by the caller */
Engine** engines = nullptr;
uint32_t engine_num = 0;
};
public:
virtual ~RuntimeBuilder() {}
/** @brief load model from a file */
virtual ppl::common::RetCode LoadModel(const char* model_file, const Resources&) = 0;
/** @brief load model from a buffer */
virtual ppl::common::RetCode LoadModel(const char* model_buf, uint64_t buf_len, const Resources&) = 0;
virtual ppl::common::RetCode Configure(uint32_t, ...) = 0;
/** @note MUST be called before `CreateRuntime()` */
virtual ppl::common::RetCode Preprocess() = 0;
/** @brief creates a `Runtime` instance. This function is thread-safe. */
virtual Runtime* CreateRuntime() const = 0;
virtual ppl::common::RetCode Serialize(const char* fmt, ppl::nn::utils::DataStream*) const = 0;
};
}}} // namespace ppl::nn::pmx
#endif