Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
xdb4_94051
vllm
Commits
05ff90b6
Unverified
Commit
05ff90b6
authored
Dec 05, 2023
by
Antoni Baum
Committed by
GitHub
Dec 05, 2023
Browse files
Save pytorch profiler output for latency benchmark (#1871)
* Save profiler output * Apply feedback from code review
parent
1d9b737e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
9 deletions
+25
-9
benchmarks/benchmark_latency.py
benchmarks/benchmark_latency.py
+25
-9
No files found.
benchmarks/benchmark_latency.py
View file @
05ff90b6
"""Benchmark the latency of processing a single batch of requests."""
import
argparse
import
time
from
pathlib
import
Path
from
typing
import
Optional
import
numpy
as
np
import
torch
...
...
@@ -34,12 +36,15 @@ def main(args: argparse.Namespace):
print
(
sampling_params
)
dummy_prompt_token_ids
=
[[
0
]
*
args
.
input_len
]
*
args
.
batch_size
def
run_to_completion
(
profile
:
bool
=
False
):
if
profile
:
with
torch
.
profiler
.
profile
(
activities
=
[
torch
.
profiler
.
ProfilerActivity
.
CPU
,
torch
.
profiler
.
ProfilerActivity
.
CUDA
,
])
as
p
:
def
run_to_completion
(
profile_dir
:
Optional
[
str
]
=
None
):
if
profile_dir
:
with
torch
.
profiler
.
profile
(
activities
=
[
torch
.
profiler
.
ProfilerActivity
.
CPU
,
torch
.
profiler
.
ProfilerActivity
.
CUDA
,
],
on_trace_ready
=
torch
.
profiler
.
tensorboard_trace_handler
(
str
(
profile_dir
)))
as
p
:
llm
.
generate
(
prompt_token_ids
=
dummy_prompt_token_ids
,
sampling_params
=
sampling_params
,
use_tqdm
=
False
)
...
...
@@ -54,11 +59,14 @@ def main(args: argparse.Namespace):
return
latency
print
(
"Warming up..."
)
run_to_completion
(
profile
=
Fals
e
)
run_to_completion
(
profile
_dir
=
Non
e
)
if
args
.
profile
:
print
(
"Profiling..."
)
run_to_completion
(
profile
=
True
)
profile_dir
=
args
.
profile_result_dir
if
not
profile_dir
:
profile_dir
=
Path
(
"."
)
/
"vllm_benchmark_result"
/
f
"latency_result_
{
time
.
time
()
}
"
print
(
f
"Profiling (results will be saved to '
{
profile_dir
}
')..."
)
run_to_completion
(
profile_dir
=
args
.
profile_result_dir
)
return
# Benchmark.
...
...
@@ -107,5 +115,13 @@ if __name__ == '__main__':
'--profile'
,
action
=
'store_true'
,
help
=
'profile the generation process of a single batch'
)
parser
.
add_argument
(
'--profile-result-dir'
,
type
=
str
,
default
=
None
,
help
=
(
'path to save the pytorch profiler output. Can be visualized '
'with ui.perfetto.dev or Tensorboard.'
))
args
=
parser
.
parse_args
()
main
(
args
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment