[CUDA] Use cuda::std::complex in place of cuComplex (#2372)

This commit is contained in:
Cheng
2025-07-15 16:36:13 +09:00
committed by GitHub
parent f0a0b077a0
commit cb349a291c
15 changed files with 169 additions and 460 deletions

View File

@@ -61,7 +61,7 @@ const char* dtype_to_cuda_type(const Dtype& dtype) {
case float64:
return "double";
case complex64:
return "cuComplex";
return "complex64_t";
default:
return "unknown";
}