-
Notifications
You must be signed in to change notification settings - Fork 234
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: Unified Memory Allocator #2023
Open
guaacoelho
wants to merge
23
commits into
devitocodes:master
Choose a base branch
from
guaacoelho:gpu-alloc
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.
+113
−31
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
0befd4e
dsl: Creates CupyAllocator class
db87362
misc: Fix indentation
ef1f368
dsl: Fix del method allowing the dealocation of the Cupy data
ca806b3
dsl: Changes that exclude copyin and copyout pragmas from source code…
50cd534
dsl: Remove the part of the code that makes the source code be genera…
539254c
dsl: Change from CUPY_ALLOC to ALLOC_CUPY
ddb5991
dsl: Update CupyAllocator's mem_free_args as a tuple, allowing remova…
d337ac8
misc: Fix indentation and comments
6511b06
dsl: Update free method inside CupyAllocator
ce12f56
tests: Add test to unified memory allocator
3ce03ba
dsl: Add conditional import for Cupy module
f4231e2
test: Update tests adding a class responsible for test external and …
c4444a1
dsl: Changing import cupy from init() to initialize()
f3f90c1
dsl: Update to fix the problem when ALLOC_CUPY tries to alloc data w…
41838ae
dsl: Update CupyAllocator to run at multiples nodes using MPI
241e444
dsl: Fix CupyAllocator to properly support MPI execution.
e724ffb
misc: Fix indentation
9379b31
misc: Removes unwanted leftover comments.
7814a46
dsl: Update the way MPI is imported at CupyAllocator
6df7a06
misc: Add explanatory comment
76dcdb1
dsl: Update "except" to "except ImportError". Other errors should be …
6ad6611
tests: Update memory allocator test to use skipif('nodevice')
92ba35c
dsl: Update of the way data type allocation is defined
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
test: Update tests adding a class responsible for test external and u…
…ma allocators
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
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.
move to
test_gpu_common
asTestCupyAllocator
with an nividia device skip so it's added to GPU CI