dmlc--dgl
39987bc599
* [Feature] enable graph partition book support canonical etypes * fix lint * fix lint * add todo * refine according to review comments * fix lint * refine naming * revert PartitionPolicy __init__ * refine docstring * fix doc string
11 行
268 B
Python
11 行
268 B
Python
"""Define all the constants used by DGL rpc"""
|
|
|
|
# Maximum size of message queue in bytes
|
|
MAX_QUEUE_SIZE = 20*1024*1024*1024
|
|
|
|
SERVER_EXIT = "server_exit"
|
|
SERVER_KEEP_ALIVE = "server_keep_alive"
|
|
|
|
DEFAULT_NTYPE = '_N'
|
|
DEFAULT_ETYPE = (DEFAULT_NTYPE, '_E', DEFAULT_NTYPE)
|