Skip to content

Commit 3d986bd

Browse files
authored
Merge pull request #1827 from xumi1993/devel
Replace `deviceOverlap` with `asyncEngineCount` for compatibility of CUDA >= 12.9
2 parents 5b67787 + 2493100 commit 3d986bd

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/gpu/initialize_gpu.cu

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -241,11 +241,7 @@ void initialize_cuda_device(int* myrank_f,int* ncuda_devices) {
241241
}else{
242242
fprintf(fp," canMapHostMemory: FALSE\n");
243243
}
244-
if (deviceProp.deviceOverlap){
245-
fprintf(fp," deviceOverlap: TRUE\n");
246-
}else{
247-
fprintf(fp," deviceOverlap: FALSE\n");
248-
}
244+
fprintf(fp," asyncEngineCount: %d\n", deviceProp.asyncEngineCount);
249245
if (deviceProp.concurrentKernels){
250246
fprintf(fp," concurrentKernels: TRUE\n");
251247
}else{

0 commit comments

Comments
 (0)