-
Notifications
You must be signed in to change notification settings - Fork 230
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
compiler: Revamp data alignment #2296
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
2c21b09
compiler: Start revamping autopadding
FabioLuporini c7b601e
compiler: Extirpate decrepit loop-rounding optimization
FabioLuporini 060e0de
compiler: Remove useless runtime checks
FabioLuporini e2a1077
compiler: Refactor __padding_setup__
FabioLuporini 9233a88
compiler: Add platform to DataManager
FabioLuporini c5c058c
arch: Add Platform.suggested_alignment
FabioLuporini 1f84038
compiler: Rework __padding_setup__
FabioLuporini 2c6439b
compiler: Unpick suggested_alignment
FabioLuporini 3ba3403
misc: Logging's perf_adv -> hint
FabioLuporini feb1f18
api: Enable halo customization
FabioLuporini 4e53c7a
compiler: Tweak autopadding
FabioLuporini 7268c9c
compiler: Fix autopadding
FabioLuporini a812bb3
compiler: Remove useless is_compact attribute
FabioLuporini 3cb062d
compiler: Fix linearization in presence of autopadding
FabioLuporini f8f1334
pep8 happiness
FabioLuporini cfa5027
tests: Update expected output after tweaking autopadding
FabioLuporini d335eb8
examples: Update expected output
FabioLuporini 6fb992e
compiler: Use is_integer where possible
FabioLuporini 7479238
compiler: Fix mapify_reduce
FabioLuporini d85d402
misc: Homogenize docstrings to use single quotes
FabioLuporini 733d7bc
api: Improve halo setup API and docs
FabioLuporini 3cd6127
examples: Update expected output
FabioLuporini e58dc53
compiler: Skip avoid_denormals upon recursive compilation
FabioLuporini 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 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 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 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 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.
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.
Would it be worth raising an exception with a message here if this assertion is
False
? Not sure how easily a user could bump into this, but could imagine it being quite cryptic to a novice user if they didThere 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.
== 0
?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.
@EdCaunt
No, because we developers write these classes and upon testing a new one we would be thrown the assert exception right away if the case
@mloubout yes, == 0, the memory transaction nbytes is always a multiple of 2, just like a C base type size