mlx/mlx/backend/metal/fft.cpp
2023-11-30 11:12:53 -08:00

13 lines
264 B
C++

// Copyright © 2023 Apple Inc.
#include "mlx/primitives.h"
namespace mlx::core {
void FFT::eval_gpu(const std::vector<array>& inputs, array& out) {
auto& in = inputs[0];
throw std::runtime_error("[FFT] NYI for Metal backend.");
}
} // namespace mlx::core