-
Notifications
You must be signed in to change notification settings - Fork 769
Rename piclProgramCreateWithBinary to piProgramCreateWithBinary #1865
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
Rename piclProgramCreateWithBinary to piProgramCreateWithBinary #1865
Conversation
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.
LGTM outside pi_cuda.
A note: there seems to be a lot of unrelated formatting changes in pi_cuda
The |
@kbobrovs I split the commit into two parts, one for the renaming and one for the |
Seeing that #1791 got merged. Will rebase this soon. |
As all PI backends (OpenCL, Level Zero, CUDA) implement the `piclProgramCreateWithBinary` function we rename it to `piProgramCreateWithBinary` as it isn't OpenCL-specifici anymore. Signed-off-by: Bjoern Knafla <[email protected]>
Signed-off-by: Bjoern Knafla <[email protected]>
1f649f9
6b33771
to
1f649f9
Compare
Rebased after #1791 got merged. |
Worried that |
Don't worry. Our internal testing is overloaded, but I don't see any issues and just a few checks are left. |
This change fixes the following issues: Unchecked return value Explicit NULL dereferenced Thanks Signed-off-by: Arvind Sudarsanam <[email protected]> Original commit: KhronosGroup/SPIRV-LLVM-Translator@4355f70
As all PI backends (OpenCL, Level Zero, CUDA) implement the
piclProgramCreateWithBinary
function we rename it topiProgramCreateWithBinary
as it isn't OpenCL-specifici anymore.The first commit applies the naming change.
The second commit applies clang-format and has many changes in
pi_cuda.cpp
.For the changed LIT test to pass the following PR (with an interactive rebase) is required first: #1791