MCPcopy Create free account
hub / github.com/pytorch/pytorch / FetchBlobs

Function FetchBlobs

caffe2/python/workspace.py:367–375  ·  view source on GitHub ↗

Fetches a list of blobs from the workspace. Inputs: names: list of names of blobs - strings or BlobReferences Returns: list of fetched blobs

(names)

Source from the content-addressed store, hash-verified

365
366
367def FetchBlobs(names):
368 """Fetches a list of blobs from the workspace.
369
370 Inputs:
371 names: list of names of blobs - strings or BlobReferences
372 Returns:
373 list of fetched blobs
374 """
375 return [FetchBlob(name) for name in names]
376
377
378def FetchBlob(name):

Callers

nothing calls this directly

Calls 1

FetchBlobFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…