MCPcopy Index your code
hub / github.com/apache/tvm / summary

Method summary

python/tvm/rpc/client.py:332–338  ·  view source on GitHub ↗

Get the summary dict of the tracker.

(self)

Source from the content-addressed store, hash-verified

330 self._sock = None
331
332 def summary(self):
333 """Get the summary dict of the tracker."""
334 base.sendjson(self._sock, [base.TrackerCode.SUMMARY])
335 value = base.recvjson(self._sock)
336 if value[0] != base.TrackerCode.SUCCESS:
337 raise RuntimeError(f"Invalid return value {value!s}")
338 return value[1]
339
340 def text_summary(self):
341 """Get a text summary of the tracker."""

Callers 1

text_summaryMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected