(bytestream)
| 39 | |
| 40 | |
| 41 | def _read32(bytestream): |
| 42 | dt = np.dtype(np.uint32).newbyteorder(">") |
| 43 | return np.frombuffer(bytestream.read(4), dtype=dt)[0] |
| 44 | |
| 45 | |
| 46 | @deprecated(None, "Please use tf.data to implement this functionality.") |
no outgoing calls
no test coverage detected