-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add some comments for ppyoloe (#324)
* Add some comments for ppyoloe * Update runtime.h
- Loading branch information
1 parent
116265d
commit 12e5a65
Showing
7 changed files
with
132 additions
and
21 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,27 @@ | ||
# FastDeploy C++ API Summary | ||
|
||
## Runtime | ||
|
||
FastDeploy Runtime can be used as an inference engine with the same code, we can deploy Paddle/ONNX model on different device by different backends. | ||
Currently, FastDeploy supported backends listed as below, | ||
|
||
| Backend | Hardware | Support Model Format | Platform | | ||
| :------ | :------- | :------------------- | :------- | | ||
| Paddle Inference | CPU/Nvidia GPU | Paddle | Windows(x64)/Linux(x64) | | ||
| ONNX Runtime | CPU/Nvidia GPU | Paddle/ONNX | Windows(x64)/Linux(x64/aarch64)/Mac(x86/arm64) | | ||
| TensorRT | Nvidia GPU | Paddle/ONNX | Windows(x64)/Linux(x64)/Jetson | | ||
| OpenVINO | CPU | Paddle/ONNX | Windows(x64)/Linux(x64)/Mac(x86) | | ||
|
||
### Example code | ||
- [Python examples](./) | ||
- [C++ examples](./) | ||
|
||
### Related APIs | ||
- [RuntimeOption](./structfastdeploy_1_1RuntimeOption.html) | ||
- [Runtime](./structfastdeploy_1_1Runtime.html) | ||
|
||
## Vision Models | ||
|
||
| Task | Model | API | Example | | ||
| :---- | :---- | :---- | :----- | | ||
| object detection | PaddleDetection/PPYOLOE | [fastdeploy::vision::detection::PPYOLOE](./classfastdeploy_1_1vision_1_1detection_1_1PPYOLOE.html) | [C++](./)/[Python](./) | |
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