快捷方式

函数 torch_tensorrt::torchscript::embed_engine_in_new_module

函数文档

TORCHTRT_API torch::jit::Module torch_tensorrt::torchscript::embed_engine_in_new_module(const std::string &engine, Device device, const std::vector<std::string> &input_binding_names = std::vector<std::string>(), const std::vector<std::string> &output_binding_names = std::vector<std::string>())

将先前创建的 TensorRT 引擎嵌入到 TorchScript 模块中。

获取预构建的序列化 TensorRT 引擎,并将其嵌入到 TorchScript 模块中。将引擎的执行注册为模块的 forward 方法。forward 定义如下:forward(Tensor[]) -> Tensor[]

如果未指定绑定名称,则 TensorRT 绑定必须具有以下格式的名称

  • [symbol].[输入/输出数组中的索引] 例如。

  • [x.0, x.1, x.2] -> [y.0]

参数
  • engine, : – std::string - 预构建的序列化 TensorRT 引擎

  • device, : – CompileSepc::Device - 设备 信息

  • input_binding_names, : – std::vector<std::string> - 原 PyTorch 函数按顺序传递的 TensorRT 绑定的名称(默认为假设以下约定)

  • output_binding_names, : – std::vector<std::string> - 原 PyTorch 函数返回的 TensorRT 绑定的名称(默认为假设以下约定)

返回值

: 一个针对 TensorRT 引擎的新模块

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取适合初学者和高级开发人员的深入教程

查看教程

资源

查找开发资源并获得问题的解答

查看资源