-
Notifications
You must be signed in to change notification settings - Fork 621
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
GPU MultiPaste #2681
Merged
Merged
GPU MultiPaste #2681
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
67772b3
First version for multipaste
TheTimemaster 7c12a8e
Actually run the copy
TheTimemaster 6e2843f
Implementation is now working. Fixed documentation comments
TheTimemaster 111993c
Merge branch 'master' of github.com:NVIDIA/DALI
TheTimemaster cd6d288
Removed BatchIndex operator, Multipaste out_idx is now optional. Fixe…
TheTimemaster c2e67d1
Added python tests
TheTimemaster 9a3b3f4
Most inputs are now named arguments. Output_width+height changed into…
TheTimemaster 3ba0a5f
Removed redundant 'input_out_ids' argument
TheTimemaster 6b3574e
Merge branch 'master' of github.com:NVIDIA/DALI
TheTimemaster 6ba81d0
Merge branch 'master' of github.com:NVIDIA/DALI
TheTimemaster 58419ff
Shapes and anchors are now optional. Output is now zero-ed before pas…
TheTimemaster fc16cc6
In python tests, validation is no longer done pixel by pixel
TheTimemaster 73b048a
Fixed issues with optional parameters
TheTimemaster 84031c1
Fixed issues from review
TheTimemaster 6ac9b57
Merge branch 'master' of github.com:NVIDIA/DALI
TheTimemaster 16231c6
Changed syntax for setting the output size
TheTimemaster ce70740
Extracted large code blocks from TYPE_SWITCH to separate functions. R…
TheTimemaster 8fea944
Changed tab size in RunImplExplicitlyTyped
TheTimemaster 02f8ebf
Tab fix
TheTimemaster c1b3bce
Tab fix
TheTimemaster c7d0fde
First version
TheTimemaster 28a90a1
Python test fix
TheTimemaster 1640dfc
Test parenthesis fix
TheTimemaster 7c23f0a
Merge branch 'master' into gpu-multipaste
TheTimemaster e183ab5
WIP
TheTimemaster 1ed27b9
Merge branch 'master' of github.com:NVIDIA/DALI
TheTimemaster c03f1b0
Merge
TheTimemaster 70ba2f2
First semi-working version
TheTimemaster c9a1b4d
Fixed kernel glitch and test file
TheTimemaster 43b423c
Improved kernel performance
TheTimemaster 1d33ba3
Patches are now generated inside kernel
TheTimemaster 1491833
Changed SampleInput structure
TheTimemaster 2c05e16
Operatror now throws if pastes are out of bounds
TheTimemaster 9e04585
Fixed signed/unsigned comparisons
TheTimemaster 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
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.
Nose has
assert_raises
for this kind of test. Maybe it would be good to split it.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 checked the
assert_raises
method, but it only asserts the type (RuntimeError
) of the exception, and anyDALI_FAIL
results in this type