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
Host Implementation of Histogram APIs #1974
base: main
Are you sure you want to change the base?
Host Implementation of Histogram APIs #1974
Changes from 38 commits
a89c292
c2002b6
99de690
9a50c2f
9a35424
40bc904
ba9b609
e3fc3ce
7fc9a5e
022ea44
6ca5a7a
1744e53
569db46
c794d1f
cbf087c
6f0a9cb
8d61609
7c2b127
59d3162
8fdbf15
bda4466
0be0aad
34e9d9f
bae7c6a
7a67c0b
e7d3952
e95689d
6b5019d
95d483f
0942617
ea1f413
d79cd5e
cfcba7e
8fdac77
f9ab0ae
85f6b07
f7e8477
d5585fe
2ce3fd0
907b1a5
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.
Is there a reason
std::move
is needed here?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.
Should we include
<tuple>
in this header?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.
Do we expect in the general case that each thread constructs its own container? If so, would it be possible to add a check like the following before this? :
If I understand correctly, each thread constructing its local storage would mean the ith id would be at index
i
. For a CPU with a large number of threads this may be more performant.