-
Notifications
You must be signed in to change notification settings - Fork 431
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[benchmark] optimize benchmark: counting tokenlizer tokens and error requests #1607
Open
NiuBlibing
wants to merge
15
commits into
InternLM:main
Choose a base branch
from
NiuBlibing:bench-dev2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
f57a621
[benchmark] support https scheme server url
NiuBlibing 8d6b95b
[benchmark] calculate the real output tokens
NiuBlibing 1740b5a
[benchmark] calculate local tokenlizer time
NiuBlibing 3acbf63
[benchmark] fix linting
NiuBlibing b3ee429
[benchmark] fix linting
NiuBlibing 7d719f1
[benchmark] fix linting
NiuBlibing 0cf60fc
[benchmark] counting error requests
NiuBlibing 32ba3ba
[benchmark] support role in prompt
NiuBlibing 6bc0dcf
[benchmark] deal with last empty delta in stream mode
NiuBlibing ef5988c
[benchmark] fix linting
NiuBlibing 52a2e66
[benchmark] fix linting
NiuBlibing 080cb23
[benchmark] fix linting
NiuBlibing fcec460
[benchmark] support openai API
NiuBlibing 9becb97
[benchmark] fix linting
NiuBlibing 2768d82
[benchmark] fix linting
NiuBlibing File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Encoding the text affects the inference performance.
I don't suggest doing that.
If the output seqlen is needed, the server can return it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In stream mode, this statistic is not returned.
In my tests(Qwen-72B-Chat), the tokenlizer takes only 0.027% of the whole benchmark elapsed time(tokenlizer speed: 77402.264 token/s for one concurrency), and the tokenlizer time has been removed in the final stats code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lmdeploy doesn't support
stream_options
to get stats from server in stream mode yet.