Remove accelerate/ (#1816)

* remove accelerate

* comments

* neon reduction
This commit is contained in:
Awni Hannun
2025-02-01 07:18:26 -08:00
committed by GitHub
parent f5cc1eea72
commit 80c863b972
12 changed files with 311 additions and 451 deletions

View File

@@ -1691,8 +1691,6 @@ class Reduce : public UnaryPrimitive {
private:
ReduceType reduce_type_;
std::vector<int> axes_;
void eval(const std::vector<array>& inputs, array& out);
};
class Round : public UnaryPrimitive {
@@ -1758,8 +1756,6 @@ class Scan : public UnaryPrimitive {
int axis_;
bool reverse_;
bool inclusive_;
void eval(const std::vector<array>& inputs, array& out);
};
class Scatter : public UnaryPrimitive {