5
0

run_server.py 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. import argparse
  2. import configargparse
  3. from hivemind.proto.runtime_pb2 import CompressionType
  4. from hivemind.utils.limits import increase_file_limit
  5. from hivemind.utils.logging import get_logger, use_hivemind_log_handler
  6. from humanfriendly import parse_size
  7. from src.constants import PUBLIC_INITIAL_PEERS
  8. from src.server.server import Server
  9. use_hivemind_log_handler("in_root_logger")
  10. logger = get_logger(__file__)
  11. def main():
  12. # fmt:off
  13. parser = configargparse.ArgParser(default_config_files=["config.yml"],
  14. formatter_class=argparse.ArgumentDefaultsHelpFormatter)
  15. parser.add('-c', '--config', required=False, is_config_file=True, help='config file path')
  16. group = parser.add_mutually_exclusive_group(required=True)
  17. group.add_argument('--converted_model_name_or_path', type=str, default=None,
  18. help="path or name of a pretrained model, converted with cli/convert_model.py")
  19. group.add_argument('model', nargs='?', type=str, help="same as --converted_model_name_or_path")
  20. parser.add_argument('--num_blocks', type=int, default=None, help="The number of blocks to serve")
  21. parser.add_argument('--block_indices', type=str, default=None, help="Specific block indices to serve")
  22. parser.add_argument('--prefix', type=str, default=None, help="Announce all blocks with this prefix. By default,"
  23. "use the same name as in the converted model.")
  24. parser.add_argument('--host_maddrs', nargs='+', default=['/ip4/0.0.0.0/tcp/0', '/ip6/::/tcp/0'], required=False,
  25. help='Multiaddrs to listen for external connections from other peers. Default: all IPv4/IPv6 interfaces, a random free TCP port')
  26. parser.add_argument('--announce_maddrs', nargs='+', default=None, required=False,
  27. help='Visible multiaddrs the host announces for external connections from other peers')
  28. parser.add_argument('--compression', type=str, default='NONE', required=False, help='Tensor compression communication')
  29. parser.add_argument('--num_handlers', type=int, default=8, required=False,
  30. help='server will use this many processes to handle incoming requests')
  31. parser.add_argument('--min_batch_size', type=int, default=1,
  32. help='Minimum required batch size for all operations (in total tokens)')
  33. parser.add_argument('--max_batch_size', type=int, default=2048,
  34. help='The total number of tokens in the same batch will not exceed this value')
  35. parser.add_argument('--prefetch_batches', type=int, default=1, required=False,
  36. help='Pre-form this many subsequent batches while GPU is processing the current one')
  37. parser.add_argument('--sender_threads', type=int, default=1, required=False,
  38. help='Use this many threads to pass results/exceptions from Runtime to Pools')
  39. parser.add_argument('--inference_max_length', type=int, default=2048,
  40. help='Maximum total sequence length permitted per inference, defaults to 16384 tokens')
  41. parser.add_argument('--cache_dir', type=str, default=None,
  42. help='Path to a directory in which a downloaded pretrained model configuration should be cached if the standard cache should not be used.')
  43. parser.add_argument('--device', type=str, default=None, required=False,
  44. help='all blocks will use this device in torch notation; default: cuda if available else cpu')
  45. parser.add_argument("--torch_dtype", type=str, default="auto",
  46. help="Use this dtype to store block weights and do computations. "
  47. "By default, respect the dtypes in the pre-trained state dict.")
  48. parser.add_argument('--attn_cache_size', type=str, default=None,
  49. help='The size of GPU memory allocated for storing past attention keys/values between inference'
  50. ' steps; examples: 500MB or 1.2GB or 1073741824 (bytes); be warned: 1KB != 1KiB')
  51. parser.add_argument('--alloc_timeout', type=float, default=60,
  52. help='If the cache is full, the server will wait for this number of seconds hoping that some memory will be freed '
  53. 'before rejecting the request')
  54. parser.add_argument('--revision', type=str, default='main',
  55. help="The specific model version to use. It can be a branch name, a tag name, or a commit id, since we use a git-based system for storing models"
  56. "and other artifacts on huggingface.co, so `revision` can be any identifier allowed by git.")
  57. parser.add_argument('--throughput',
  58. type=lambda value: value if value in ['auto', 'eval'] else float(value),
  59. default='auto',
  60. help='Expected server throughput (a float measured in RPS). '
  61. 'If set to "auto" (default), the script evaluates network and compute throughput '
  62. 'on the first run and uses these estimates for future runs. '
  63. 'If set to "eval", the script re-evaluates the throughput and overrides the cache.')
  64. parser.add_argument('--update_period', type=float, required=False, default=30,
  65. help='Server will report blocks to DHT once in this many seconds')
  66. parser.add_argument('--expiration', type=float, required=False, default=None,
  67. help='DHT entries will expire after this many seconds')
  68. parser.add_argument('--request_timeout', type=float, required=False, default=3 * 60,
  69. help='Timeout for the whole rpc_forward/rpc_backward/rpc_forward_stream/rpc_backward_stream request')
  70. parser.add_argument('--session_timeout', type=float, required=False, default=30 * 60,
  71. help='Timeout for the whole inference session')
  72. parser.add_argument('--step_timeout', type=float, required=False, default=5 * 60,
  73. help="Timeout for waiting the next step's inputs inside an inference session")
  74. group = parser.add_mutually_exclusive_group()
  75. group.add_argument('--initial_peers', type=str, nargs='*', required=False, default=PUBLIC_INITIAL_PEERS,
  76. help='Multiaddrs of one or more DHT peers from the target swarm. Default: connects to the public swarm')
  77. group.add_argument('--new_swarm', action='store_true',
  78. help='Start a new private swarm (i.e., do not connect to any initial peers)')
  79. parser.add_argument('--increase_file_limit', action='store_true',
  80. help='On *nix, this will increase the max number of processes '
  81. 'a server can spawn before hitting "Too many open files"; Use at your own risk.')
  82. parser.add_argument('--stats_report_interval', type=int, required=False,
  83. help='Interval between two reports of batch processing performance statistics')
  84. parser.add_argument('--custom_module_path', type=str, required=False,
  85. help='Path of a file with custom nn.modules, wrapped into special decorator')
  86. parser.add_argument('--identity_path', type=str, required=False, help='Path to identity file to be used in P2P')
  87. parser.add_argument("--balance_quality", type=float, default=0.75,
  88. help="Rebalance the swarm if its throughput is worse than this share of the optimal "
  89. "throughput. Use 0.0 to disable rebalancing, values > 1.0 to force rebalancing "
  90. "on each check for debugging purposes.")
  91. parser.add_argument("--mean_balance_check_period", type=float, default=60,
  92. help="Check the swarm's balance every N seconds (and rebalance it if necessary)")
  93. parser.add_argument("--use_auth_token", type=str, default=None, help="auth token for from_pretrained")
  94. parser.add_argument('--load_in_8bit', action='store_true', help='Convert the loaded model into mixed-8bit quantized model.')
  95. # fmt:on
  96. args = vars(parser.parse_args())
  97. args.pop("config", None)
  98. args["converted_model_name_or_path"] = args.pop("model") or args["converted_model_name_or_path"]
  99. if args.pop("increase_file_limit"):
  100. increase_file_limit()
  101. compression_type = args.pop("compression").upper()
  102. compression = getattr(CompressionType, compression_type)
  103. attn_cache_size = args.pop("attn_cache_size")
  104. if attn_cache_size is not None:
  105. attn_cache_size = parse_size(attn_cache_size)
  106. assert isinstance(
  107. attn_cache_size, (int, type(None))
  108. ), "unrecognized value for attention_cache_bytes, examples: 1.5GB or 1500MB or 1572864000 (bytes)"
  109. if args.pop("new_swarm"):
  110. args["initial_peers"] = []
  111. use_auth_token = args.pop("use_auth_token")
  112. args["use_auth_token"] = True if use_auth_token in ("True", "true", "") else use_auth_token
  113. server = Server(**args, compression=compression, attn_cache_size=attn_cache_size)
  114. try:
  115. server.run()
  116. except KeyboardInterrupt:
  117. logger.info("Caught KeyboardInterrupt, shutting down")
  118. finally:
  119. server.shutdown()
  120. if __name__ == "__main__":
  121. main()