MCPcopy Create free account
hub / github.com/NVIDIA/TensorRT / update

Method update

tools/Polygraphy/polygraphy/common/interface.py:72–75  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

70 return self.dct.items()
71
72 def update(self, other):
73 for key, val in other.items():
74 self._check_types(key, val)
75 return self.dct.update(other)
76
77 def __contains__(self, key):
78 return key in self.dct

Callers 15

evaluate_onnxFunction · 0.45
_local_tensorsMethod · 0.45
_foreign_tensorsMethod · 0.45
partition_and_inferMethod · 0.45
fold_constantsMethod · 0.45
copyMethod · 0.45
combine_dictsFunction · 0.45
__init__Method · 0.45
add_importMethod · 0.45
override_input_shapesFunction · 0.45
update_inputsMethod · 0.45

Calls 2

_check_typesMethod · 0.95
itemsMethod · 0.45

Tested by 3

check_modelMethod · 0.36