mirror of
https://github.com/ml-explore/mlx.git
synced 2025-06-24 01:17:26 +08:00
19 lines
367 B
C++
19 lines
367 B
C++
#include <cassert>
|
|
|
|
#include <simd/vector.h>
|
|
#include <vecLib/vDSP.h>
|
|
|
|
#include "mlx/backend/common/copy.h"
|
|
#include "mlx/primitives.h"
|
|
#include "mlx/utils.h"
|
|
|
|
namespace mlx::core {
|
|
|
|
void Convolution::eval_cpu(const std::vector<array>& inputs, array& out) {
|
|
eval(inputs, out);
|
|
|
|
// TODO: Add accelerate based optimizations for CPU conv
|
|
}
|
|
|
|
} // namespace mlx::core
|