// // CPUStft.hpp // MNN // // Created by MNN on 2024/11/26. // Copyright © 2018, Alibaba Group Holding Limited // #ifndef CPUStft_hpp #define CPUStft_hpp #include "core/Execution.hpp" namespace MNN { class CPUStft : public Execution { public: CPUStft(Backend *backend, bool abs); virtual ~CPUStft() = default; virtual ErrorCode onResize(const std::vector &inputs, const std::vector &outputs) override; virtual ErrorCode onExecute(const std::vector &inputs, const std::vector &outputs) override; private: bool mAbs; }; } // namespace MNN #endif /* CPUStft.hpp */