mirror of
https://github.com/ml-explore/mlx.git
synced 2025-07-26 17:22:41 +08:00
13 lines
264 B
C++
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
|