errors.py 260 Bytes
Newer Older
zhangqha's avatar
zhangqha committed
1
2
3
4
5
6
7
8
class GraphTooLargeError(Exception):
    """The graph is too large, exceeding protobuf's hard limit of 2GB."""

class GraphWithoutTensorError(Exception):
    pass

class OutOfMemoryError(Exception):
    """This error is caused by out-of-memory (OOM)."""