-
Notifications
You must be signed in to change notification settings - Fork 117
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
[CommandBuffer] Make double finalizing fail #2327
Open
hdelan
wants to merge
5
commits into
oneapi-src:main
Choose a base branch
from
hdelan:double-finalize
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+25
−2
Conversation
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
github-actions
bot
added
conformance
Conformance test suite issues.
level-zero
L0 adapter specific issues
cuda
CUDA adapter specific issues
hip
HIP adapter specific issues
command-buffer
Command Buffer feature addition/changes/specification
labels
Nov 14, 2024
EwanC
reviewed
Nov 14, 2024
github-actions
bot
added
specification
Changes or additions to the specification
experimental
Experimental feature additions/changes/specification
labels
Nov 14, 2024
EwanC
reviewed
Nov 14, 2024
hdelan
force-pushed
the
double-finalize
branch
from
November 14, 2024 17:06
5268870
to
0a75eef
Compare
EwanC
reviewed
Nov 14, 2024
aarongreig
approved these changes
Nov 15, 2024
hdelan
force-pushed
the
double-finalize
branch
from
November 15, 2024 11:47
df0961e
to
d474590
Compare
EwanC
approved these changes
Nov 15, 2024
A command buffer should fail if finalize is called multiple times on the same command buffer. This matches openCL behaviour.
urCommandBufferFinalizeExp will return UR_RESULT_ERROR_INVALID_OPERATION if the command buffer has already been finalized.
Don't need extra flag for IsInitialized if checking if cudaGraphExec is no longer its initial value of nullptr.
hdelan
force-pushed
the
double-finalize
branch
from
November 15, 2024 13:29
d474590
to
7be4528
Compare
Can you whack a link to the DPC++ PR for this in the description, ta |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
command-buffer
Command Buffer feature addition/changes/specification
conformance
Conformance test suite issues.
cuda
CUDA adapter specific issues
experimental
Experimental feature additions/changes/specification
hip
HIP adapter specific issues
level-zero
L0 adapter specific issues
loader
Loader related feature/bug
specification
Changes or additions to the specification
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.
A command buffer should fail if finalize is called multiple times on the same command buffer. This matches openCL behaviour.
DPC++ PR: intel/llvm#16097