mirror of
https://github.com/ml-explore/mlx.git
synced 2025-06-24 09:21:16 +08:00
14 lines
264 B
C++
14 lines
264 B
C++
// Copyright © 2023-2024 Apple Inc.
|
|
|
|
#include "mlx/fast_primitives.h"
|
|
|
|
namespace mlx::core::fast {
|
|
|
|
void RoPE::eval_cpu(
|
|
const std::vector<array>& inputs,
|
|
std::vector<array>& outputs) {
|
|
throw std::runtime_error("NYI");
|
|
}
|
|
|
|
} // namespace mlx::core::fast
|