-
Notifications
You must be signed in to change notification settings - Fork 91
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
[SYCLomatic] Enable migration of cudaStreamCaptureStatus enum and SYCL graphs exp option #1908
base: SYCLomatic
Are you sure you want to change the base?
[SYCLomatic] Enable migration of cudaStreamCaptureStatus enum and SYCL graphs exp option #1908
Conversation
…L graphs exp option Signed-off-by: Ahmed, Daiyaan <[email protected]>
Signed-off-by: Ahmed, Daiyaan <[email protected]>
3b99638
to
ad5ede2
Compare
Signed-off-by: Ahmed, Daiyaan <[email protected]>
Signed-off-by: Ahmed, Daiyaan <[email protected]>
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
Signed-off-by: Ahmed, Daiyaan <[email protected]>
Signed-off-by: Ahmed, Daiyaan <[email protected]>
@@ -758,6 +758,10 @@ DPCT_ENUM_OPTION( | |||
"bindless_images", int(ExperimentalFeatures::Exp_BindlessImages), | |||
"Experimental extension that allows use of bindless images APIs.\n", | |||
false), | |||
DPCT_OPTION_ENUM_VALUE( | |||
"graphs", int(ExperimentalFeatures::Exp_Graphs), |
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.
"graphs", int(ExperimentalFeatures::Exp_Graphs), | |
"graph", int(ExperimentalFeatures::Exp_Graphs), |
// CHECK-NEXT: DPCT1027:{{[0-9]+}}: The call to cudaStreamIsCapturing was replaced with 0 because SYCL currently does not support capture operations on queues. | ||
// CHECK-NEXT: */ | ||
// CHECK: MY_ERROR_CHECKER(0); | ||
MY_ERROR_CHECKER(cudaStreamIsCapturing(s0, &captureStatus)); |
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.
from queue_state, can it know the a queue is in Capturing status?
Signed-off-by: Daiyaan Ahmed [email protected]