-
Notifications
You must be signed in to change notification settings - Fork 322
Expand file tree
/
Copy pathapi_cli.py
More file actions
657 lines (641 loc) · 26.1 KB
/
api_cli.py
File metadata and controls
657 lines (641 loc) · 26.1 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
import argparse
def make_argument_parser() -> argparse.ArgumentParser:
parser = argparse.ArgumentParser()
parser.add_argument(
"--run_mode",
type=str,
choices=["normal", "prefill", "decode", "nixl_prefill", "nixl_decode", "pd_master", "config_server"],
default="normal",
help="""set run mode, normal is started for a single server, prefill decode pd_master is for pd split run mode,
config_server is for pd split mode used to register pd_master node, and get pd_master node list,
specifically designed for large-scale, high-concurrency scenarios where `pd_master` encounters
significant CPU bottlenecks.""",
)
parser.add_argument("--host", type=str, default="127.0.0.1")
parser.add_argument("--port", type=int, default=8000)
parser.add_argument("--httpserver_workers", type=int, default=1)
parser.add_argument(
"--zmq_mode",
type=str,
default="ipc:///tmp/",
help="use socket mode or ipc mode, only can be set in ['tcp://', 'ipc:///tmp/']",
)
parser.add_argument(
"--pd_master_ip",
type=str,
default="0.0.0.0",
help="when run_mode set to prefill or decode, you need set this pd_mater_ip",
)
parser.add_argument(
"--pd_master_port",
type=int,
default=1212,
help="when run_mode set to prefill or decode, you need set this pd_mater_port",
)
parser.add_argument(
"--pd_decode_rpyc_port",
type=int,
default=None,
help="p d mode, decode node used for kv move manager rpyc server port",
)
parser.add_argument(
"--select_p_d_node_strategy",
type=str,
default="round_robin",
choices=["random", "round_robin", "adaptive_load"],
help="pd master use this strategy to select p d node, can be round_robin, random or adaptive_load",
)
parser.add_argument(
"--config_server_host",
type=str,
default=None,
help="The host address for the config server in config_server mode.",
)
parser.add_argument(
"--config_server_port",
type=int,
default=None,
help="The port number for the config server in config_server mode.",
)
parser.add_argument(
"--nixl_pd_kv_page_num",
type=int,
default=16,
help="nixl pd mode, kv move page_num",
)
parser.add_argument(
"--nixl_pd_kv_page_size",
type=int,
default=1024,
help="nixl pd mode, kv page size.",
)
parser.add_argument(
"--model_name",
type=str,
default="default_model_name",
help="just help to distinguish internal model name, use 'host:port/get_model_name' to get",
)
parser.add_argument(
"--model_dir",
type=str,
default=None,
help="the model weight dir path, the app will load config, weights and tokenizer from this dir",
)
parser.add_argument(
"--tokenizer_mode",
type=str,
default="fast",
help="""tokenizer load mode, can be slow, fast or auto, slow mode load fast but run slow,
slow mode is good for debug and test, fast mode get best performance, auto mode will
try to use fast mode, if failed will use slow mode""",
)
parser.add_argument(
"--load_way",
type=str,
default="HF",
help="""the way of loading model weights, the default is HF(Huggingface format), llama also supports
DS(Deepspeed)""",
)
parser.add_argument(
"--max_total_token_num",
type=int,
default=None,
help="the total token nums the gpu and model can support, equals = max_batch * (input_len + output_len)",
)
parser.add_argument(
"--mem_fraction",
type=float,
default=0.9,
help="""Memory usage ratio, default is 0.9, you can specify a smaller value if OOM occurs at runtime.
If max_total_token_num is not specified, it will be calculated automatically based on this value.""",
)
parser.add_argument(
"--batch_max_tokens",
type=int,
default=None,
help="max tokens num for new cat batch, it control prefill batch size to Preventing OOM",
)
parser.add_argument(
"--eos_id", nargs="+", type=int, default=None, help="eos stop token id, if None, will load from config.json"
)
parser.add_argument(
"--tool_call_parser",
type=str,
choices=["qwen25", "llama3", "mistral", "deepseekv3", "qwen", "deepseekv31", "glm47", "kimi_k2"],
default=None,
help="tool call parser type",
)
parser.add_argument(
"--reasoning_parser",
type=str,
choices=[
"deepseek-r1",
"deepseek-v3",
"glm45",
"gpt-oss",
"kimi",
"kimi_k2",
"qwen3",
"qwen3-thinking",
"minimax",
"minimax-append-think",
"step3",
"nano_v3",
"interns1",
],
default=None,
help="reasoning parser type",
)
parser.add_argument(
"--chat_template",
type=str,
default=None,
help=(
"chat template jinja file path. For example:\n"
"- /test/chat_template/tool_chat_template_deepseekv31.jinja\n"
"- /test/chat_template/tool_chat_template_deepseekv32.jinja\n"
"- /test/chat_template/tool_chat_template_qwen.jinja\n"
"- /test/chat_template/tool_chat_template_deepseekr1.jinja"
),
)
parser.add_argument(
"--running_max_req_size", type=int, default=1000, help="the max size for forward requests in the same time"
)
parser.add_argument("--nnodes", type=int, default=1, help="the number of nodes")
parser.add_argument("--node_rank", type=int, default=0, help="the rank of the current node")
parser.add_argument(
"--multinode_httpmanager_port",
type=int,
default=12345,
help="the port for multinode http manager, default is 20000",
)
parser.add_argument(
"--multinode_router_gloo_port",
type=int,
default=20001,
help="the gloo port for multinode router, default is 20001",
)
parser.add_argument("--tp", type=int, default=1, help="model tp parral size, the default is 1")
parser.add_argument(
"--dp",
type=int,
default=1,
help="""This is just a useful parameter for deepseekv2. When
using the deepseekv2 model, set dp to be equal to the tp parameter. In other cases, please
do not set it and keep the default value as 1.""",
)
parser.add_argument(
"--dp_balancer",
type=str,
default="bs_balancer",
choices=["round_robin", "bs_balancer"],
help="the dp balancer type, default is bs_balancer",
)
parser.add_argument(
"--max_req_total_len", type=int, default=16384, help="the max value for req_input_len + req_output_len"
)
parser.add_argument(
"--nccl_host",
type=str,
default="127.0.0.1",
help="""The nccl_host to build a distributed environment for PyTorch.
When deploying in multi-node manner, the value should be set to the IP of the master node""",
)
parser.add_argument(
"--nccl_port", type=int, default=None, help="the nccl_port to build a distributed environment for PyTorch"
)
parser.add_argument(
"--use_config_server_to_init_nccl",
action="store_true",
help="""use tcp store server started by config_server to init nccl, default is False, when set to True,
the --nccl_host must equal to the config_server_host, and the --nccl_port must be unique for a config_server,
dont use same nccl_port for different inference node, it will be critical error""",
)
parser.add_argument(
"--trust_remote_code",
action="store_true",
help="Whether or not to allow for custom models defined on the Hub in their own modeling files.",
)
parser.add_argument("--disable_log_stats", action="store_true", help="disable logging throughput stats.")
parser.add_argument("--log_stats_interval", type=int, default=10, help="log stats interval in second.")
parser.add_argument(
"--disable_shm_warning",
action="store_true",
default=False,
help="""Disable periodic shared memory (/dev/shm) warning logs.
Our system requires sufficient available shared memory in /dev/shm,
so a monitoring thread is enabled to check if the capacity is adequate.
This setting allows you to turn off these warning checks.""",
)
parser.add_argument("--router_token_ratio", type=float, default=0.0, help="token ratio to control router dispatch")
parser.add_argument(
"--router_max_new_token_len", type=int, default=1024, help="the request max new token len for router"
)
parser.add_argument(
"--router_max_wait_tokens",
type=int,
default=1,
help="schedule new requests after every router_max_wait_tokens decode steps.",
)
parser.add_argument(
"--disable_aggressive_schedule",
action="store_true",
help="""aggressive schedule can lead to frequent prefill interruptions during decode.
disabling it allows the router_max_wait_tokens parameter to work more effectively.""",
)
parser.add_argument(
"--use_dynamic_prompt_cache", action="store_true", help="This argument is deprecated and no longer in use."
)
parser.add_argument("--disable_dynamic_prompt_cache", action="store_true", help="disable dynamic prompt cache")
parser.add_argument("--chunked_prefill_size", type=int, default=8192, help="chunked prefill size")
parser.add_argument("--disable_chunked_prefill", action="store_true", help="whether to disable chunked prefill")
parser.add_argument("--diverse_mode", action="store_true", help="diversity generation mode")
parser.add_argument("--token_healing_mode", action="store_true", help="code model infer mode")
parser.add_argument(
"--output_constraint_mode",
type=str,
choices=["outlines", "xgrammar", "none"],
default="none",
help="set the output constraint backend, none means no output constraint",
)
parser.add_argument(
"--first_token_constraint_mode",
action="store_true",
help="""constraint the first token allowed range,
use env FIRST_ALLOWED_TOKENS to set the range, like FIRST_ALLOWED_TOKENS=1,2 ..""",
)
parser.add_argument(
"--enable_multimodal", action="store_true", help="Whether or not to allow to load additional visual models."
)
parser.add_argument(
"--enable_multimodal_audio",
action="store_true",
help="Whether or not to allow to load additional audio models (requird --enable_multimodal).",
)
parser.add_argument(
"--enable_mps", action="store_true", help="Whether to enable nvidia mps for multimodal service."
)
parser.add_argument("--disable_custom_allreduce", action="store_true", help="Whether to disable cutom allreduce.")
parser.add_argument("--enable_custom_allgather", action="store_true", help="Whether to enable cutom allgather.")
parser.add_argument(
"--enable_tpsp_mix_mode",
action="store_true",
help="""inference backend will use TP SP Mixed running mode.
only llama and deepseek v3 model supported now.""",
)
parser.add_argument(
"--enable_dp_prefill_balance",
action="store_true",
help="inference backend will use dp balance, need set --enable_tpsp_mix_mode first",
)
parser.add_argument(
"--enable_prefill_microbatch_overlap",
action="store_true",
help="""inference backend will use microbatch overlap mode for prefill.
only deepseekv3 model supported now.""",
)
parser.add_argument(
"--enable_decode_microbatch_overlap",
action="store_true",
help="""inference backend will use microbatch overlap mode for decode.
only deepseekv3 model supported now.""",
)
parser.add_argument(
"--llm_prefill_att_backend",
type=str,
nargs="+",
choices=["auto", "triton", "fa3", "flashinfer"],
default=["auto"],
help="""prefill attention kernel used in llm.
auto: automatically select best backend based on GPU and available packages
(priority: fa3 > flashinfer > triton)""",
)
parser.add_argument(
"--llm_decode_att_backend",
type=str,
nargs="+",
choices=["auto", "triton", "fa3", "flashinfer"],
default=["auto"],
help="""decode attention kernel used in llm.
auto: automatically select best backend based on GPU and available packages
(priority: fa3 > flashinfer > triton)""",
)
parser.add_argument(
"--vit_att_backend",
type=str,
nargs="+",
choices=["auto", "triton", "fa3", "sdpa", "xformers"],
default=["auto"],
help="""vit attention kernel used in vlm.
auto: automatically select best backend based on GPU and available packages
(priority: fa3 > xformers > sdpa > triton)""",
)
parser.add_argument(
"--llm_kv_type",
type=str,
choices=["None", "int8kv", "int4kv"],
default="None",
help="""kv type used in llm, None for dtype that llm used in config.json.
fp8kv: not fully supported yet, will support in future""",
)
parser.add_argument(
"--llm_kv_quant_group_size",
type=int,
default=8,
help="""kv quant group size used in llm kv, when llm_kv_type is quanted type,such as int8kv,
this params will be effective.
""",
)
parser.add_argument(
"--cache_capacity", type=int, default=200, help="cache server capacity for multimodal resources"
)
parser.add_argument(
"--embed_cache_storage_size",
type=float,
default=4,
help="embed cache for swap multimodal data in llm and vit, whisper. 4G is default",
)
parser.add_argument(
"--data_type",
type=str,
choices=["fp16", "float16", "bf16", "bfloat16", "fp32", "float32"],
default=None,
help="the data type of the model weight",
)
parser.add_argument("--return_all_prompt_logprobs", action="store_true", help="return all prompt tokens logprobs")
parser.add_argument("--use_reward_model", action="store_true", help="use reward model")
parser.add_argument(
"--long_truncation_mode",
type=str,
choices=[None, "head", "center"],
default=None,
help="""use to select the handle way when input_token_len + max_new_tokens > max_req_total_len.
None : raise Exception
head : remove some head tokens to make input_token_len + max_new_tokens <= max_req_total_len
center : remove some tokens in center loc to make input_token_len + max_new_tokens <= max_req_total_len""",
)
parser.add_argument("--use_tgi_api", action="store_true", help="use tgi input and ouput format")
parser.add_argument(
"--health_monitor", action="store_true", help="check the health of service and restart when error"
)
parser.add_argument("--metric_gateway", type=str, default=None, help="address for collecting monitoring metrics")
parser.add_argument("--job_name", type=str, default="lightllm", help="job name for monitor")
parser.add_argument(
"--grouping_key", action="append", default=[], help="grouping_key for the monitor in the form key=value"
)
parser.add_argument("--push_interval", type=int, default=10, help="interval of pushing monitoring metrics")
parser.add_argument(
"--visual_infer_batch_size", type=int, default=None, help="number of images to process in each inference batch"
)
parser.add_argument(
"--visual_send_batch_size",
type=int,
default=1,
help="""
number of images embedding to send to llm process in each batch,
bigger size can improve throughput but increase latency possibly in some cases
""",
)
parser.add_argument(
"--visual_gpu_ids", nargs="+", type=int, default=None, help="List of GPU IDs to use, e.g., 0 1 2"
)
parser.add_argument("--visual_tp", type=int, default=1, help="number of tensort parallel instances for ViT")
parser.add_argument("--visual_dp", type=int, default=1, help="number of data parallel instances for ViT")
parser.add_argument(
"--visual_nccl_ports",
nargs="+",
type=int,
default=None,
help="List of NCCL ports to build a distributed environment for Vit, e.g., 29500 29501 29502",
)
parser.add_argument(
"--enable_monitor_auth", action="store_true", help="Whether to open authentication for push_gateway"
)
parser.add_argument("--disable_cudagraph", action="store_true", help="Disable the cudagraph of the decoding stage")
parser.add_argument(
"--enable_prefill_cudagraph",
action="store_true",
help="Enable the cudagraph of the prefill stage,"
" currently only for llama and qwen model, not support ep moe model",
)
parser.add_argument(
"--prefll_cudagraph_max_handle_token", type=int, default=512, help="max handle token num for prefill cudagraph"
)
parser.add_argument(
"--graph_max_batch_size",
type=int,
default=256,
help="""Maximum batch size that can be captured by the cuda graph for decodign stage.""",
)
parser.add_argument(
"--graph_split_batch_size",
type=int,
default=32,
help="""
Controls the interval for generating CUDA graphs during decoding.
CUDA graphs will be generated continuously for values ranging from 1 up to the specified
graph_split_batch_size. For values from graph_split_batch_size to graph_max_batch_size,
a new CUDA graph will be generated for every increment of graph_grow_step_size.
Properly configuring this parameter can help optimize the performance of CUDA graph execution.
""",
)
parser.add_argument(
"--graph_grow_step_size",
type=int,
default=16,
help="""
For batch_size values from graph_split_batch_size to graph_max_batch_size,
a new CUDA graph will be generated for every increment of graph_grow_step_size.
""",
)
parser.add_argument(
"--graph_max_len_in_batch",
type=int,
default=0,
help="""Maximum sequence length that can be captured by the cuda graph for decodign stage.
The default value is 8192. It will turn into eagar mode if encounters a larger value. """,
)
parser.add_argument(
"--quant_type",
type=str,
default="none",
help="""Quantization method: vllm-w8a8 | vllm-fp8w8a8 | vllm-fp8w8a8-b128
| deepgemm-fp8w8a8-b128 | triton-fp8w8a8-block128 | awq | awq_marlin |
| triton-fp8w8a8g128 (weight perchannel quant and act per group quant) |
triton-fp8w8a8g64 (weight perchannel quantization with group size 64)""",
)
parser.add_argument(
"--quant_cfg",
type=str,
default=None,
help="""Path of quantization config. It can be used for mixed quantization.
Examples can be found in test/advanced_config/mixed_quantization/llamacls-mix-down.yaml.""",
)
parser.add_argument(
"--vit_quant_type",
type=str,
default="none",
help="""Quantization method for ViT: vllm-w8a8 | vllm-fp8w8a8""",
)
parser.add_argument(
"--vit_quant_cfg",
type=str,
default=None,
help="""Path of quantization config. It can be used for mixed quantization.
Examples can be found in lightllm/common/quantization/configs.""",
)
parser.add_argument(
"--sampling_backend",
type=str,
choices=["triton", "sglang_kernel"],
default="triton",
help="""sampling used impl. 'triton' is use torch and triton kernel,
sglang_kernel use sglang_kernel impl""",
)
parser.add_argument(
"--penalty_counter_mode",
type=str,
choices=["cpu_counter", "pin_mem_counter", "gpu_counter"],
default="gpu_counter",
help=(
"During inference with large models, it is necessary to track the frequency of input token_ids."
" Three recording modes are currently supported:\n"
"- **cpu_counter**: This mode does not consume GPU memory"
" and is suitable for short outputs and low concurrency scenarios."
" However, for long outputs or high concurrency, it may introduce"
" significant CPU overhead, leading to severe performance degradation.\n"
"- **pin_mem_counter**: This mode allocates a large batch of pinned memory"
" to manage the counter and interacts with some CUDA kernels."
" While it does not consume GPU memory, it may introduce a certain performance bottleneck.\n"
"- **gpu_counter**: This mode achieves operations by allocating a large GPU buffer, providing"
" the highest performance but consuming a significant amount of GPU memory."
" Therefore, it is recommended to set this parameter according to actual needs."
),
)
parser.add_argument(
"--enable_ep_moe",
action="store_true",
help="""Whether to enable ep moe for deepseekv3 model.""",
)
parser.add_argument(
"--ep_redundancy_expert_config_path",
type=str,
default=None,
help="""Path of the redundant expert config. It can be used for deepseekv3 model.""",
)
parser.add_argument(
"--auto_update_redundancy_expert",
action="store_true",
help="""Whether to update the redundant expert for deepseekv3 model by online expert used counter.""",
)
parser.add_argument(
"--enable_fused_shared_experts",
action="store_true",
help="""Whether to enable fused shared experts for deepseekv3 model. only work when tensor parallelism""",
)
parser.add_argument(
"--mtp_mode",
choices=["vanilla_with_att", "eagle_with_att", "vanilla_no_att", "eagle_no_att", None],
default=None,
help="""Supported MTP modes.
None: Disables MTP.
*_with_att: Uses the MTP model with an attention mechanism to predict the next draft token.
*_no_att: Uses the MTP model without an attention module to predict the next draft token.""",
)
parser.add_argument(
"--mtp_draft_model_dir",
type=str,
nargs="+",
default=None,
help="""Path to the draft model for the MTP multi-prediction feature,
used for loading the MTP multi-output token model.""",
)
parser.add_argument(
"--mtp_step",
type=int,
default=0,
help="""Specifies the number of additional tokens to predict using the draft model.
Currently, this feature supports only the DeepSeekV3 model.
Increasing this value allows for more predictions,
but ensure that the model is compatible with the specified step count.
currently, deepseekv3 model only support 1 step""",
)
parser.add_argument(
"--kv_quant_calibration_config_path",
type=str,
default=None,
help="""Path of the kv quant calibration config. It can be used for llama and qwen model.""",
)
parser.add_argument(
"--schedule_time_interval",
type=float,
default=0.03,
help="""The interval of the schedule time, default is 30ms.""",
)
parser.add_argument(
"--enable_cpu_cache",
action="store_true",
help="""enable cpu cache to store kv cache. prefer to use hugepages for better performance.""",
)
parser.add_argument(
"--cpu_cache_storage_size",
type=float,
default=2,
help="""The capacity of cpu cache. GB used.""",
)
parser.add_argument(
"--cpu_cache_token_page_size",
type=int,
default=256,
help="""The token page size of cpu cache""",
)
parser.add_argument("--enable_disk_cache", action="store_true", help="""enable disk cache to store kv cache.""")
parser.add_argument(
"--disk_cache_storage_size", type=float, default=10, help="""The capacity of disk cache. GB used."""
)
parser.add_argument(
"--disk_cache_dir",
type=str,
default=None,
help="""Directory used to persist disk cache data. Defaults to a temp directory when not set.""",
)
parser.add_argument(
"--redis_endpoint",
type=str,
default="",
help="""Redis endpoint used by disk cache index service (LightMem).""",
)
parser.add_argument(
"--num_node_in_disk_cache",
type=int,
default=1,
help="""Number of nodes participating in disk cache index sharding.
Only used when --redis_endpoint is set. All nodes must use the same value.""",
)
parser.add_argument(
"--enable_dp_prompt_cache_fetch",
action="store_true",
default=False,
help="""Enable prefix prompt cache fetch for data parallel inference, disabled by default.""",
)
parser.add_argument(
"--hardware_platform",
type=str,
default="cuda",
choices=["cuda", "musa"],
help="""Hardware platform: cuda | musa""",
)
parser.add_argument(
"--enable_torch_fallback",
action="store_true",
help="""Whether to enable torch naive implementation for the op.
If the op is not implemented for the platform, it will use torch naive implementation.""",
)
parser.add_argument(
"--enable_triton_fallback",
action="store_true",
help="""Whether to enable triton implementation for the op.
If the op is not implemented for the platform and the hardware support triton,
it will use triton implementation.""",
)
return parser