We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b999b9 commit 3383d43Copy full SHA for 3383d43
hipamd/src/hip_device_runtime.cpp
@@ -614,6 +614,11 @@ hipError_t hipDeviceSetSharedMemConfig(hipSharedMemConfig config) {
614
config != hipSharedMemBankSizeEightByte) {
615
HIP_RETURN(hipErrorInvalidValue);
616
}
617
+
618
+ if (!hip::tls.capture_streams_.empty() || !g_captureStreams.empty()) {
619
+ HIP_RETURN(hipErrorStreamCaptureUnsupported);
620
+ }
621
622
// No way to set cache config yet.
623
624
HIP_RETURN(hipSuccess);
0 commit comments