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

Method extend

tools/Polygraphy/polygraphy/common/interface.py:161–164  ·  view source on GitHub ↗
(self, elems)

Source from the content-addressed store, hash-verified

159 return self.lst.append(elem)
160
161 def extend(self, elems):
162 for elem in elems:
163 self._check_type(elem)
164 return self.lst.extend(elems)
165
166 def __iadd__(self, elems):
167 for elem in elems:

Callers 15

constfoldMethod · 0.45
mark_outputsFunction · 0.45
unmark_outputsFunction · 0.45
versionFunction · 0.45
TestTrtConfigArgsClass · 0.45
TestCreateConfigClass · 0.45
yMethod · 0.45
writersMethod · 0.45
readersMethod · 0.45
add_attributesMethod · 0.45

Calls 1

_check_typeMethod · 0.95

Tested by 2

yMethod · 0.36