Skip to content

Commit

Permalink
fix fft bug in DCU (PaddlePaddle#56340)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuguo-Jack authored and BeingGod committed Sep 9, 2023
1 parent 98e905c commit ad07bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paddle/phi/backends/dynload/dynamic_loader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ void* GetROCFFTDsoHandle() {
#if defined(__APPLE__) || defined(__OSX__)
return GetDsoHandleFromSearchPath(FLAGS_rocm_dir, "librocfft.dylib");
#else
return GetDsoHandleFromSearchPath(FLAGS_rocm_dir, "librocfft.so");
return GetDsoHandleFromSearchPath(FLAGS_rocm_dir, "libhipfft.so");
#endif
}
#endif
Expand Down

0 comments on commit ad07bc8

Please sign in to comment.