-
Notifications
You must be signed in to change notification settings - Fork 14
Merge regions overhaul #201
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
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
55d8ddf
Client/ server for pushing snapshot merge regions
Shillaker ff0aaaf
Reinstate clearing of merge regions
Shillaker 02f7daa
Dist tests and test
Shillaker 5355bf9
Add reserves where possible
Shillaker 2066535
Support more merge ops
Shillaker 2fe3cc0
Tests for more datatypes
Shillaker 832982a
Added long type
Shillaker 19cc7d3
Add trace logging to difsf
Shillaker 95d32b8
Remove register snapshot if exists
Shillaker 1903f42
Formatting
Shillaker 94ed106
More snapshot logging
Shillaker f1e5bf8
Add filling in gaps capacity
Shillaker 1c2ed89
Default to shared
Shillaker 69094d7
Use spans where possible
Shillaker 6dcf8ce
Logging and reinstate MR clearing
Shillaker 0406a3f
Add ignore diffs
Shillaker 8e21f28
Fix bug in overflowing original snap data
Shillaker 4ec33ce
Remove unnecessary merge regions in dist tests
Shillaker 5d6b7bb
More snapshot tests
Shillaker e501035
Merge branch 'master' into mrs-with-snaps
Shillaker 3753ae2
Fix uint mismatch
Shillaker 6f2ed5b
Self review
Shillaker 086359d
Profiling
Shillaker 54b4403
Use spans
Shillaker 58ca527
Use static initialised for resetting dirty pages
Shillaker 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
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
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
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 |
---|---|---|
|
@@ -25,6 +25,8 @@ void FaabricMain::startBackground() | |
// Crash handler | ||
faabric::util::setUpCrashHandler(); | ||
|
||
PROF_BEGIN | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same point made in the Faasm PR re. comitting profiling macros. I would personally remove them, but feel free to ignore. |
||
|
||
// Start basics | ||
startRunner(); | ||
|
||
|
@@ -39,6 +41,8 @@ void FaabricMain::startBackground() | |
|
||
// Work sharing | ||
startFunctionCallServer(); | ||
|
||
PROF_SUMMARY | ||
} | ||
|
||
void FaabricMain::startRunner() | ||
|
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
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.
It's not immediate to tell the difference between
calculateDiffValue
andapplyDiffValue
, could we add a comment explaining what each one does, or how they differ?Also, just to double check, can the
uint8_t
pointers here can't be converted tostd::span
s?