-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[SYCL][LLVM] Adding property set I/O library for SYCL #110771
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
Closed
Closed
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
7350a52
[SYCL][LLVM] Adding property set I/O library for SYCL
asudarsa 526633f
Move from union to variant
asudarsa 944841a
Add missing implementation of encode/decode functions
asudarsa f528b64
More changes due to shift from Union to std::variant
asudarsa 0b4ad71
Address review comments
asudarsa cd9874a
Fix clang format issue
asudarsa de19806
Remove changes to Base64 implementation and use existing implementation
asudarsa 20a7d75
Add SYCL prefix to PropertySet etc.
asudarsa 025503a
Add tests expected to fail and make sure errors are caught
asudarsa 6550bf5
Update test to pass when assertions are turned on
asudarsa 4de3158
Replace simple llvm_unreachable with asserts
asudarsa b15e201
Addressed the following comments:
asudarsa 50de423
Avoid memory leak for byte array
asudarsa 0d5af17
Use unique_ptr for Byte Array
asudarsa 269d661
Minor change to use switch-case instead of if-then-else
asudarsa 60526f4
Fix formatting issue
asudarsa 498eaf0
Add more tests for PropertySetIO usage
asudarsa dec58b4
Remove redundant print statements
asudarsa 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
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.
Please just use unique_ptr
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.
Hi @arsenm
I will give it another shot. I had a bit of an issue in getting unique_ptr to work with remainder of the code. I must be missing something. I will put up a change soon. Thanks again for looking into this.
Sincerely
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.
Hi @arsenm
I added use of unique_ptr in 0d5af17
It was a good learning curve for me.
Thanks
Sincerely