mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-06 17:17:14 +08:00
[Model] Add Paddle3D smoke model (#1766)
* add smoke model * add 3d vis * update code * update doc * mv paddle3d from detection to perception * update result for velocity * update code for CI * add set input data for TRT backend * add serving support for smoke model * update code * update code * update code --------- Co-authored-by: DefTruth <31974251+DefTruth@users.noreply.github.com>
This commit is contained in:
3
fastdeploy/runtime/backends/tensorrt/option_pybind.cc
Normal file → Executable file
3
fastdeploy/runtime/backends/tensorrt/option_pybind.cc
Normal file → Executable file
@@ -26,7 +26,8 @@ void BindTrtOption(pybind11::module& m) {
|
||||
.def_readwrite("max_workspace_size",
|
||||
&TrtBackendOption::max_workspace_size)
|
||||
.def_readwrite("serialize_file", &TrtBackendOption::serialize_file)
|
||||
.def("set_shape", &TrtBackendOption::SetShape);
|
||||
.def("set_shape", &TrtBackendOption::SetShape)
|
||||
.def("set_input_data", &TrtBackendOption::SetInputData);
|
||||
}
|
||||
|
||||
} // namespace fastdeploy
|
||||
|
Reference in New Issue
Block a user