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.
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
Query by Indexed Component Value #17608
base: main
Are you sure you want to change the base?
Query by Indexed Component Value #17608
Changes from 48 commits
001b227
44408ba
df42b47
8f6069a
9c66cd2
5b10abb
ef82a3d
e372f5d
908fd04
88c9b3b
6fbc6c3
14e189e
44c2a3d
1778616
175c6dc
272c979
3f0c733
6b2fe6e
1d502e0
b18de48
beed9bb
a5e189b
ec64913
9171430
c5dac6f
776e0da
ea98ec8
4e5a6e0
4e4e190
6b03687
bdfd4ab
afa0441
4b158a0
e758a62
4d8f503
69ab442
b362d2d
32884e1
2266934
5a1428b
e2508dc
64df47a
5d67b38
7352492
94567fc
a5b1df2
de65088
b1a322d
a024de0
8a28afb
400412f
d886a82
adf1132
5d6606e
afb3ad2
a003f40
7e6c1f9
beecc59
8c2538e
2f64169
8f92f3b
a5160a4
4264e90
62f5fdb
733fdd3
514aadf
c54bec9
70dd03a
21f6b40
cfcb2ae
d7fe564
37dfdaa
6eed8b7
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
(Nit) The
let _ =
isn't necessary, sinceblack_box()
forces the expression it is passed to be evaluated.black_box()
- How to use thisThere 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 did you choose to add
#[inline(never)]
? It seems counter-intuitive to me, since we're just trying to benchmark the containedrun_system()
.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.
Is there a specific reason you chose these times, which are smaller than the default?
criterion
by default has a warm-up time of 3 seconds and a measurements time of 5 seconds.