-
Notifications
You must be signed in to change notification settings - Fork 272
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
Create benchmarks for System.Threading.Tasks.Dataflow #951
Open
manandre
wants to merge
18
commits into
dotnet:main
Choose a base branch
from
manandre:add-dataflow-tests
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 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
aaca250
Create BufferBlock Dataflow perf tests
manandre c529438
Add ActionBlock Dataflow perf tests
manandre c5a4d94
Add Parallel and Unordered ActionBlock perf tests
manandre 9c1b400
Add TransformBlock Dataflow perf tests
manandre d1a5180
Add BroadcastBlock Dataflow perf tests
manandre c8a7c09
Add Batch & Join Dataflow perf tests
manandre 432afcf
Add Reactive Dataflow perf tests
manandre 36c8cd5
Refactor Dataflow perf tests
manandre a12eb17
Fix BroadcastBlock benchmark hang up
manandre bc69b86
Use full name instead of the SPC abbreviation
manandre 11eb153
Reduce the inheritance hierarchy depth
manandre 8ee7a19
Intoduce the classes in order they are referenced
manandre 9b92331
Devide the #regions into separate C# files
manandre e43520b
Add TryReceive perf tests and refactor
manandre 93640b3
Add Batched/JoinBlock3 perf tests
manandre f6e97aa
Update according to first review
manandre d18d87a
Create a new block when complete must be called
manandre 5df8fbb
Update according to second review
manandre 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
Add ActionBlock Dataflow perf tests
- Loading branch information
commit c52943847fb3555c90bf09d8470123983e646151
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
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.
Why is this GlobalSetup still needed when we're calling BlockSetup on each benchmark invocation?
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.
We only call
BlockSetup
from the benchmark code when we are forced to callComplete
on the tested block to have a valid test case. This concerns only two benchmarks.