-
Notifications
You must be signed in to change notification settings - Fork 475
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[C API] Refactor code structure (#1449)
* refactor code * move files * fix doc * fix
- Loading branch information
Showing
34 changed files
with
158 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved. | ||
// | ||
// Licensed 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. | ||
#pragma once | ||
|
||
#ifndef ENABLE_VISION | ||
#define ENABLE_VISION | ||
#endif | ||
|
||
#ifndef ENABLE_TEXT | ||
#define ENABLE_TEXT | ||
#endif |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
// Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved. | ||
// | ||
// Licensed 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. | ||
|
||
#pragma once | ||
|
||
#define FD_ENUM(type) \ | ||
typedef int32_t type; \ | ||
enum | ||
|
||
FD_ENUM(FD_C_ModelFormat){ | ||
FD_C_ModelFormat_AUTOREC, ///< Auto recognize the model format by model file name | ||
FD_C_ModelFormat_PADDLE, ///< Model with paddlepaddle format | ||
FD_C_ModelFormat_ONNX, ///< Model with ONNX format | ||
FD_C_ModelFormat_RKNN, ///< Model with RKNN format | ||
FD_C_ModelFormat_TORCHSCRIPT, ///< Model with TorchScript format | ||
FD_C_ModelFormat_SOPHGO, ///< Model with SOPHGO format | ||
}; | ||
|
||
FD_ENUM(FD_C_rknpu2_CpuName){ | ||
FD_C_ModelFormat_RK356X = 0, /* run on RK356X. */ | ||
FD_C_ModelFormat_RK3588 = 1, /* default,run on RK3588. */ | ||
FD_C_ModelFormat_UNDEFINED, | ||
}; | ||
|
||
FD_ENUM(FD_C_rknpu2_CoreMask){ | ||
FD_C_ModelFormat_RKNN_NPU_CORE_AUTO = 0, //< default, run on NPU core randomly. | ||
FD_C_ModelFormat_RKNN_NPU_CORE_0 = 1, //< run on NPU core 0. | ||
FD_C_ModelFormat_RKNN_NPU_CORE_1 = 2, //< run on NPU core 1. | ||
FD_C_ModelFormat_RKNN_NPU_CORE_2 = 4, //< run on NPU core 2. | ||
FD_C_ModelFormat_RKNN_NPU_CORE_0_1 = FD_C_ModelFormat_RKNN_NPU_CORE_0 | | ||
FD_C_ModelFormat_RKNN_NPU_CORE_1, //< run on NPU core 1 and core 2. | ||
FD_C_ModelFormat_RKNN_NPU_CORE_0_1_2 = FD_C_ModelFormat_RKNN_NPU_CORE_0_1 | | ||
FD_C_ModelFormat_RKNN_NPU_CORE_2, //< run on NPU core 1 and core 2. | ||
FD_C_ModelFormat_RKNN_NPU_CORE_UNDEFINED, | ||
}; | ||
|
||
FD_ENUM(FD_C_LitePowerMode){ | ||
FD_C_ModelFormat_LITE_POWER_HIGH = 0, ///< Use Lite Backend with high power mode | ||
FD_C_ModelFormat_LITE_POWER_LOW = 1, ///< Use Lite Backend with low power mode | ||
FD_C_ModelFormat_LITE_POWER_FULL = 2, ///< Use Lite Backend with full power mode | ||
FD_C_ModelFormat_LITE_POWER_NO_BIND = 3, ///< Use Lite Backend with no bind power mode | ||
FD_C_ModelFormat_LITE_POWER_RAND_HIGH = 4, ///< Use Lite Backend with rand high mode | ||
FD_C_ModelFormat_LITE_POWER_RAND_LOW = 5 ///< Use Lite Backend with rand low power mode | ||
}; | ||
|
||
FD_ENUM(FD_C_ResultType){ | ||
FD_C_ModelFormat_UNKNOWN_RESULT, | ||
FD_C_ModelFormat_CLASSIFY, | ||
FD_C_ModelFormat_DETECTION, | ||
FD_C_ModelFormat_SEGMENTATION, | ||
FD_C_ModelFormat_OCR, | ||
FD_C_ModelFormat_MOT, | ||
FD_C_ModelFormat_FACE_DETECTION, | ||
FD_C_ModelFormat_FACE_ALIGNMENT, | ||
FD_C_ModelFormat_FACE_RECOGNITION, | ||
FD_C_ModelFormat_MATTING, | ||
FD_C_ModelFormat_MASK, | ||
FD_C_ModelFormat_KEYPOINT_DETECTION, | ||
FD_C_ModelFormat_HEADPOSE, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.