File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1197,7 +1197,8 @@ namespace curtn
11971197 unsigned int numExtSems,
11981198 cudaStream_t stream)
11991199 {
1200- static_assert (sizeof (CUDA_EXTERNAL_SEMAPHORE_SIGNAL_PARAMS) == sizeof (cudaExternalSemaphoreSignalParams));
1200+ static_assert (sizeof (CUDA_EXTERNAL_SEMAPHORE_SIGNAL_PARAMS) == sizeof (cudaExternalSemaphoreSignalParams),
1201+ " unexpected size of cudaExternalSemaphoreSignalParams" );
12011202
12021203 CUresult result = cuSignalExternalSemaphoresAsync (
12031204 (CUexternalSemaphore*)extSemArray,
@@ -1212,7 +1213,8 @@ namespace curtn
12121213 unsigned int numExtSems,
12131214 cudaStream_t stream)
12141215 {
1215- static_assert (sizeof (CUDA_EXTERNAL_SEMAPHORE_WAIT_PARAMS) == sizeof (cudaExternalSemaphoreWaitParams));
1216+ static_assert (sizeof (CUDA_EXTERNAL_SEMAPHORE_WAIT_PARAMS) == sizeof (cudaExternalSemaphoreWaitParams),
1217+ " unexpected size of cudaExternalSemaphoreWaitParams" );
12161218
12171219 CUresult result = cuWaitExternalSemaphoresAsync (
12181220 (CUexternalSemaphore*)extSemArray,
You can’t perform that action at this time.
0 commit comments