Program Listing for File fft_real.h

Return to documentation for file (include/converter/include/ops/fft_real.h)

#ifndef MINDSPORE_CORE_OPS_FFT_REAL_H_
#define MINDSPORE_CORE_OPS_FFT_REAL_H_
#include <memory>
#include <vector>

#include "mindapi/base/types.h"
#include "ops/base_operator.h"

namespace mindspore {
namespace ops {
constexpr auto kNameFftReal = "FftReal";
class MIND_API FftReal : public BaseOperator {
 public:
  MIND_API_BASE_MEMBER(FftReal);
  FftReal() : BaseOperator(kNameFftReal) {}

  void Init() const {}
};

MIND_API abstract::AbstractBasePtr FftRealInfer(const abstract::AnalysisEnginePtr &, const PrimitivePtr &primitive,
                                                const std::vector<abstract::AbstractBasePtr> &input_args);
}  // namespace ops
}  // namespace mindspore

#endif  // MINDSPORE_CORE_OPS_FFT_REAL_H_