-
Notifications
You must be signed in to change notification settings - Fork 1
/
dist_inference_hybrid_runner.py
62 lines (54 loc) · 2.66 KB
/
dist_inference_hybrid_runner.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import argparse
import torch.autograd.profiler as profiler
from utils.dist_args_utils import *
from utils.dist_inference_utils import *
from comm.hybrid_comm_utils import init_hybrid_communicators
from task_datasets.inference_data import get_request_processor
from pipeline_parallel.dist_pp_utils import *
from transformers import AutoTokenizer
def main():
parser = argparse.ArgumentParser(description='Inference Runner')
add_device_arguments(parser)
add_torch_distributed_arguments(parser)
add_hybrid_inference_arguments(parser)
add_inference_details_arguments(parser)
parser.add_argument('--seed', type=int, default=1, metavar='S',
help='random seed (default: 1)')
parser.add_argument('--overwrite-request-args', type=lambda x: (str(x).lower() == 'true'),
default=False, metavar='S',
help='whether overwrite_request_args')
parser.add_argument('--profiling', type=str, default='tidy_profiling', metavar='S',
help='enable which profiling? default: tidy mode')
parser.add_argument('--trace-postfix', type=str, default='default', metavar='S',
help='postfix of the tracing file name.')
args = parser.parse_args()
torch.manual_seed(args.seed)
if args.use_cuda:
assert (torch.cuda.is_available())
device = torch.device('cuda', args.cuda_id)
else:
device = torch.device('cpu')
init_hybrid_communicators(args)
request_processor = get_request_processor(args)
request_processor.set_arguments(args)
pipe = get_pp_inference_module(args, device)
if args.profiling == 'no-profiling':
distributed_hybrid_inference_foo_iter(args, pipe, device, request_processor)
else:
prefix = './trace_json/inference'
trace_file = prefix + get_hybrid_inference_arguments_str(args) + '_' + args.profiling + '_' + \
args.trace_postfix + '.json'
if args.profiling == 'tidy_profiling':
# distributed_inference_mask_iter(args, pipe, device, request_processor)
distributed_hybrid_inference_foo_iter(args, pipe, device, request_processor)
pipe.export_profiling_result(filename=trace_file)
elif args.profiling == 'pytorch_profiling':
with profiler.profile(profile_memory=True, use_cuda=args.use_cuda) as prof:
distributed_hybrid_inference_foo_iter(args, pipe, device, request_processor)
print(prof.key_averages().table())
prof.export_chrome_trace(trace_file)
else:
print("No recognized profiler?")
assert False
if __name__ == '__main__':
main()