More jitting (#1132)

* docs + circle min size build

* jit scan, arange, softmax

* add sort

* jit reductions

* remove print

* fix deps

* clean includes / nits
This commit is contained in:
Awni Hannun
2024-05-23 16:23:44 -07:00
committed by GitHub
parent 9401507336
commit 0189ab6ab6
41 changed files with 2377 additions and 1846 deletions

View File

@@ -1565,8 +1565,9 @@ class Reduce : public UnaryPrimitive {
switch (reduce_type_) {
case And:
os << "And";
break;
case Or:
os << "And";
os << "Or";
break;
case Sum:
os << "Sum";
@@ -1581,7 +1582,6 @@ class Reduce : public UnaryPrimitive {
os << "Max";
break;
}
os << " Reduce";
}
bool is_equivalent(const Primitive& other) const override;
@@ -1647,7 +1647,6 @@ class Scan : public UnaryPrimitive {
os << "Max";
break;
}
os << " Reduce";
}
bool is_equivalent(const Primitive& other) const override;