MCPcopy Index your code
hub / github.com/NVIDIA/TensorRT-LLM / named_network_outputs

Method named_network_outputs

tensorrt_llm/module.py:195–198  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

193 self._network_outputs[name] = value
194
195 def named_network_outputs(self):
196 for name, module in self.named_modules():
197 for n, output in module._network_outputs.items():
198 yield name + ("." if name else "") + n, output
199
200 def update_parameters(self, torch_module):
201 m = {k: v for k, v in self.named_parameters()}

Callers 5

create_trt_sessionMethod · 0.80
test_debugging_apiMethod · 0.80
test_moduleMethod · 0.80
test_module_listMethod · 0.80
buildFunction · 0.80

Calls 1

named_modulesMethod · 0.95

Tested by 4

create_trt_sessionMethod · 0.64
test_debugging_apiMethod · 0.64
test_moduleMethod · 0.64
test_module_listMethod · 0.64