-
Notifications
You must be signed in to change notification settings - Fork 112
Add initial unit tests for jit gpu kernels #4278
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
49 commits
Select commit
Hold shift + click to select a range
7aa727d
Add gpu kernel unit testing infra
pfultz2 c20742f
Format
pfultz2 b0d7a46
Add algorithm tests
pfultz2 ea12168
Format
pfultz2 ab3e73a
Apply fixits
pfultz2 99250c3
Format
pfultz2 bfd58be
Exclude test.hpp header
pfultz2 35fcec7
Report failures and stop on expect but not on check
pfultz2 e824891
Format
pfultz2 0fd319c
Add parallel compilation
pfultz2 be87e05
Add array tests
pfultz2 25b9bc0
Format
pfultz2 83729a7
Add shape tests
pfultz2 d943b73
Merge branch 'develop' into gpu-kernel-unit-tests
pfultz2 8995591
Update standard shape calculation
pfultz2 c9c886c
Format
pfultz2 f23916e
Merge branch 'develop' into gpu-kernel-unit-tests
pfultz2 57d61b5
Fix null
pfultz2 fdbad61
Fix tidy warnings
pfultz2 7884aaa
format
pfultz2 fe9d7d0
Merge
pfultz2 f89a512
Format
pfultz2 7a2584d
Add interface keyword
pfultz2 40ac7ff
Fix tidy issues
pfultz2 0f55819
Format
pfultz2 33103c8
Fix not lint line
pfultz2 8f4c407
Format
pfultz2 83c0df7
Fix cppcheck
pfultz2 5fa3b10
Merge branch 'develop' into gpu-kernel-unit-tests
pfultz2 f3e41c0
Revert non gpu changes
pfultz2 8ba30d8
Format
pfultz2 ade219d
Revert "Format"
pfultz2 82afa17
Remove basic tests
pfultz2 c3e5c2d
Add missing license
pfultz2 f9755c2
Format
pfultz2 d011eb5
Format
pfultz2 9b720e8
Fix errors with default constructor shared memory
pfultz2 64b797d
Format
pfultz2 2e2a0ea
Fix assertion
pfultz2 705777d
Add license
pfultz2 340d534
Format
pfultz2 53d1fe4
Format
pfultz2 06dc59f
Merge branch 'develop' into gpu-kernel-unit-tests
pfultz2 9a9aab1
Fix hiprtc error
pfultz2 99333f9
Add missing array header for windows
pfultz2 03e9075
Add missing array header for windows
pfultz2 7eb3bbe
Add more array headers
pfultz2 0fe0d44
Add array header
pfultz2 0951892
Add array header for windows
pfultz2 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
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.
The explicit cast to
value_typein the variadic constructor could cause silent truncation or precision loss. Consider using a concept or SFINAE to ensure safe conversions, or document the potential for data loss in conversions.