FastDeploy  latest
Fast & Easy to Deploy!
All Classes Namespaces Files Functions Variables Enumerations Enumerator Pages
option.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 #pragma once
15 
16 namespace fastdeploy {
17 namespace rknpu2 {
18 typedef enum _rknpu2_cpu_name {
19  RK356X = 0, /* run on RK356X. */
20  RK3588 = 1, /* default,run on RK3588. */
21  UNDEFINED,
22 } CpuName;
23 
25 typedef enum _rknpu2_core_mask {
26  RKNN_NPU_CORE_AUTO = 0, //< default, run on NPU core randomly.
27  RKNN_NPU_CORE_0 = 1, //< run on NPU core 0.
28  RKNN_NPU_CORE_1 = 2, //< run on NPU core 1.
29  RKNN_NPU_CORE_2 = 4, //< run on NPU core 2.
30  RKNN_NPU_CORE_0_1 =
31  RKNN_NPU_CORE_0 | RKNN_NPU_CORE_1, //< run on NPU core 1 and core 2.
32  RKNN_NPU_CORE_0_1_2 =
33  RKNN_NPU_CORE_0_1 | RKNN_NPU_CORE_2, //< run on NPU core 1 and core 2.
34  RKNN_NPU_CORE_UNDEFINED,
35 } CoreMask;
36 } // namespace rknpu2
37 
38 struct RKNPU2BackendOption {
39  rknpu2::CpuName cpu_name = rknpu2::CpuName::RK3588;
40 
41  // The specification of NPU core setting.It has the following choices :
42  // RKNN_NPU_CORE_AUTO : Referring to automatic mode, meaning that it will
43  // select the idle core inside the NPU.
44  // RKNN_NPU_CORE_0 : Running on the NPU0 core
45  // RKNN_NPU_CORE_1: Runing on the NPU1 core
46  // RKNN_NPU_CORE_2: Runing on the NPU2 core
47  // RKNN_NPU_CORE_0_1: Running on both NPU0 and NPU1 core simultaneously.
48  // RKNN_NPU_CORE_0_1_2: Running on both NPU0, NPU1 and NPU2 simultaneously.
49  rknpu2::CoreMask core_mask = rknpu2::CoreMask::RKNN_NPU_CORE_AUTO;
50 };
51 
52 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16