Returns a blob reference with scope prefixed.
(name, *args, **kwargs)
| 323 | |
| 324 | |
| 325 | def ScopedBlobReference(name, *args, **kwargs): |
| 326 | """Returns a blob reference with scope prefixed.""" |
| 327 | return BlobReference(ScopedName(name), *args, **kwargs) |
| 328 | |
| 329 | |
| 330 | def _RectifyInputOutput(blobs, net=None): |
no test coverage detected
searching dependent graphs…