| 55 | // Get FFT direction in hipFFT based on FFT type. |
| 56 | int GetFftDirection() const; |
| 57 | hipfftHandle GetPlan() const { |
| 58 | if (IsInitialized()) { |
| 59 | return plan_; |
| 60 | } else { |
| 61 | LOG(FATAL) << "Try to get hipfftHandle value before initialization."; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | // Initialize function for batched plan |
| 66 | port::Status Initialize(GpuExecutor *parent, Stream *stream, int rank, |
no outgoing calls
no test coverage detected