-
Notifications
You must be signed in to change notification settings - Fork 790
[SYCL][ESIMD][EMU] PI_API debug for esimd_emulator plug-in #5606
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
kbobrovs
merged 29 commits into
intel:sycl
from
dongkyunahn-intel:esimd_emu_pi_api_debug
Mar 29, 2022
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
d47d035
[SYCL][ESIMD][EMU] PI_API debug for esimd_emulator plug-in
dongkyunahn-intel 34f4868
HostSurfaceIndex is generated for surface mapping
dongkyunahn-intel 527762a
Minor changes
dongkyunahn-intel e8be377
Replacing sycl::detail::SpinLock with std::mutex
dongkyunahn-intel 0206b19
ESIMD_EMU generates and manages its own surface index
dongkyunahn-intel 3d163a4
Updating ESIMD Emulator Device interface
dongkyunahn-intel 582d922
Missing renaming
dongkyunahn-intel 31219e9
Share-malloc size adjusting to power-of-2 for piextUSMSharedAlloc()
dongkyunahn-intel 0c2c01d
Using common 'getNextPowerOfTwo' from sycl::detail instead of local
dongkyunahn-intel 5ec625e
Addressing Vlad's comments
dongkyunahn-intel afe99a8
Merge branch 'sycl' of https://github.com/intel/llvm into esimd_emu_p…
dongkyunahn-intel 4ed7177
Preparing pulling origin/sycl branch
dongkyunahn-intel 227358e
Merge branch 'sycl' of https://github.com/intel/llvm into esimd_emu_p…
dongkyunahn-intel 6e3d768
Re-applying changes in header files to relocated files
dongkyunahn-intel c8ee300
Merge branch 'sycl' of https://github.com/intel/llvm into esimd_emu_p…
dongkyunahn-intel 85edf0e
For Host-memory buffer/image, Use CM's UserProvided surface creation
dongkyunahn-intel 5307e74
Function pointer renaming aligned with naming convention
dongkyunahn-intel 72c05c6
clang-format fix
dongkyunahn-intel 9a96610
Applying structured cm_buf type for regular and user-provided memory
dongkyunahn-intel 0ea135c
structure cm_image type
dongkyunahn-intel 10c2e19
Miscellaneous changes
dongkyunahn-intel a9fc46d
Addressing comments
dongkyunahn-intel 829124e
Addressing comments (2)
dongkyunahn-intel 78c5132
Addressing comments (3)
dongkyunahn-intel 0a3da02
Merge branch 'sycl' of https://github.com/intel/llvm into esimd_emu_p…
dongkyunahn-intel a233331
Adding comments regarding CM Runtime function call
dongkyunahn-intel 7e4aa48
Addressing Leonid.S's comments
dongkyunahn-intel 6ad6d2a
Reverting virtual destructor change
dongkyunahn-intel 0bb5d63
Recovering comment removed by mistake
dongkyunahn-intel 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
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.
Why passing by pointer and not reference?
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.
Pointer is more clear & explicit on the caller side.
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.
Plus sycl_get_cm_buffer_params_ptr is a part of C interface, not C++.
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.
If it's C, then ok.