-
Notifications
You must be signed in to change notification settings - Fork 81
feat: remove memory access adapters: CPU Boundary AIR, initialize/finalize memory #2318
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
Maillew
wants to merge
19
commits into
feat/access-adapter-removal
Choose a base branch
from
feat/remove-mem-access2
base: feat/access-adapter-removal
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
19 commits
Select commit
Hold shift + click to select a range
cc7f51a
access adapter boolean flag
Maillew 10a0fc4
finalize memory
Maillew 9f5d2d6
wip
Maillew a2d8b01
rv32im
Maillew 1a0bbec
clean up redundant fn signature
Maillew 14665e0
aot constant fix
Maillew 6abaae0
LINTA
Maillew 37b4112
LINTA
Maillew 9f15491
gpu?
Maillew fff7962
Revert "gpu?"
Maillew d5442fa
LINTA
Maillew 23601a8
revert gitignore
Maillew ec38241
linta + cleanup
Maillew af24ee4
gitignore
Maillew b90af0a
testing rv32 with access_adapters disabled
Maillew 03955e4
clean up, remove assert(false)
Maillew 39d41e0
whitespace
Maillew a5814d4
linta
Maillew 5bd398c
pr comments
Maillew 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
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.
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.
i'm wondering if instead of storing a separate variable, we just have an
access_adapters_enabledfunction that returnstrueif native address space is used andfalseotherwise. just so that there's a single source of truthThere 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.
there is currently a function to check if native address space is used,
is_native_as_used. i kept it as a field, to force it to be true/false for testing purposes. there is an additional function,with_auto_access_adapterswhich automatically sets the field, depending onis_native_as_used