Skip to content

Commit 2493100

Browse files
authored
replace deviceOverlap with asyncEngineCount
`deviceOverlap` has been removed after CUDA 12.9
1 parent a53177b commit 2493100

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

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)