File tree 3 files changed +5
-8
lines changed
3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -1923,7 +1923,7 @@ void CodeGen_Hexagon::visit(const Call *op) {
1923
1923
1924
1924
// Cut up the indices into appropriately-sized pieces.
1925
1925
for (int start = 0 ; start < index_lanes; start += intrin_lanes) {
1926
- vector <Value *>args;
1926
+ vector<Value *> args;
1927
1927
Value *new_index = slice_vector (index , start, intrin_lanes);
1928
1928
args.push_back (dst_buffer);
1929
1929
args.push_back (codegen (op->args [1 ] + start));
Original file line number Diff line number Diff line change @@ -2062,9 +2062,9 @@ class ScatterGatherGenerator : public IRMutator2 {
2062
2062
index_span = simplify (index_span);
2063
2063
// We need to downcast the index values to 16 bit signed. So all the
2064
2064
// the indices must be less than 1 << 15.
2065
- // if (!can_prove(index_span < std::numeric_limits<int16_t>::max())) {
2066
- // return Expr();
2067
- // }
2065
+ if (!can_prove (index_span < std::numeric_limits<int16_t >::max ())) {
2066
+ return Expr ();
2067
+ }
2068
2068
}
2069
2069
// Calculate the size of the buffer lut in bytes.
2070
2070
Expr size = ty.bytes ();
@@ -2091,7 +2091,7 @@ class ScatterGatherGenerator : public IRMutator2 {
2091
2091
if (!alloc || alloc->memory_type != MemoryType::VTCM) {
2092
2092
return IRMutator2::visit (op);
2093
2093
}
2094
- // The destination must be a buffer in VTCM.
2094
+ // The source for a gather must also be a buffer in VTCM.
2095
2095
if (op->index .as <Ramp>() && op->value .as <Load>()) {
2096
2096
// Check for vgathers
2097
2097
Expr dst_base = Variable::make (Handle (), op->name );
Original file line number Diff line number Diff line change 1
1
#include " IRMutator.h"
2
- #include " IRPrinter.h"
3
2
4
3
namespace Halide {
5
4
namespace Internal {
6
5
7
- IRPrinter irp (std::cerr);
8
-
9
6
using std::pair;
10
7
using std::vector;
11
8
You can’t perform that action at this time.
0 commit comments