forked from kstppd/hashinator
-
Notifications
You must be signed in to change notification settings - Fork 0
Better allocator support #2
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
Open
kstppd
wants to merge
42
commits into
fmihpc:master
Choose a base branch
from
kstppd:better_allocator_support
base: master
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
42 commits
Select commit
Hold shift + click to select a range
08d0052
changes to enable better allocator support. this has been tested with…
kstppd 22133a4
Merge branch 'master' of github.com:kstppd/hashinator into better_all…
kstppd 6a5d4bc
use std allocator to demonstrate last commit's functionallity
kstppd ad05504
remove split host allocator since there is no need for it anymore
kstppd f2be8b3
fix hashinator ctpr
kstppd 1ababbc
Add some more ctors for splitvectors and a host unit test with umpire
kstppd 754aae0
more umpire tests
kstppd a53b4e9
update allocators in splittools
kstppd 5b1e7e6
unit tests update
kstppd c2a0e96
Meson update to only build and test Umpire unit tests if Umpire is in…
kstppd 3e09873
Implement some first changes at 38000ft
kstppd 9cb9486
And update README
kstppd ff4d157
do not use offset of in non POD stuff
kstppd 27789a6
Use optional to fix compiler warning us for no return in function
kstppd 714d57d
Update README.md
kstppd 12c58fa
Add memtest unit
kstppd 8170005
Change splitvector's swap so that is it does not check for swapping w…
kstppd 06e7013
finally an update
kstppd 12f1a67
comment added
kstppd 85a61a7
revert back to previous behavior for device buckets
kstppd 3130b6b
some fixes and less restrictiv split vector contructors
kstppd 60d65cc
some fixes and less restrictiv split vector contructors
kstppd 3e69d91
fix
kstppd a2409ed
Revert "fix"
kstppd a108a65
tRevert "some fixes and less restrictiv split vector contructors"
kstppd aa9922b
Revert "some fixes and less restrictiv split vector contructors"
kstppd 2361d04
fix
kstppd 93653e9
relax is_trivial
kstppd 2cdd964
Revert "Use optional to fix compiler warning us for no return in func…
kstppd b13a279
remove duplicate include
kstppd 65d3dfa
comment update
kstppd 1448978
Merge remote-tracking branch 'fmihpc/master' into better_allocator_su…
kstppd 1a24b37
avoid a small git wreck
kstppd 4290365
memcpy fix
kstppd fd4c004
use library in meson for umpire detection
kstppd c6d374c
update tests for Umpire compatibillity
kstppd 6d63fcf
off with device buckets and the offset of thingy
kstppd 60b87c6
test coarse mem
kstppd 218dcc7
update bench script
kstppd b25c150
update bench script and allow coarse grain memory when running on AMD hw
kstppd a3d3d7f
Oops missing main type
kstppd dfd59c5
Oops missing main type
kstppd 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 hidden or 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -76,6 +76,7 @@ inline bool isDeviceAccessible(void* ptr){ | |
| } | ||
| return true; | ||
| #endif | ||
| return false; | ||
| } | ||
|
|
||
| /** | ||
|
|
||
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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.
<3