Skip to content

Commit 56bdbdb

Browse files
committed
Minor Fixes
1 parent 91f19f9 commit 56bdbdb

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

src/CodeGen_Hexagon.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1923,7 +1923,7 @@ void CodeGen_Hexagon::visit(const Call *op) {
19231923

19241924
// Cut up the indices into appropriately-sized pieces.
19251925
for (int start = 0; start < index_lanes; start += intrin_lanes) {
1926-
vector <Value *>args;
1926+
vector<Value *> args;
19271927
Value *new_index = slice_vector(index, start, intrin_lanes);
19281928
args.push_back(dst_buffer);
19291929
args.push_back(codegen(op->args[1] + start));

src/HexagonOptimize.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -2062,9 +2062,9 @@ class ScatterGatherGenerator : public IRMutator2 {
20622062
index_span = simplify(index_span);
20632063
// We need to downcast the index values to 16 bit signed. So all the
20642064
// 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+
}
20682068
}
20692069
// Calculate the size of the buffer lut in bytes.
20702070
Expr size = ty.bytes();
@@ -2091,7 +2091,7 @@ class ScatterGatherGenerator : public IRMutator2 {
20912091
if (!alloc || alloc->memory_type != MemoryType::VTCM) {
20922092
return IRMutator2::visit(op);
20932093
}
2094-
// The destination must be a buffer in VTCM.
2094+
// The source for a gather must also be a buffer in VTCM.
20952095
if (op->index.as<Ramp>() && op->value.as<Load>()) {
20962096
// Check for vgathers
20972097
Expr dst_base = Variable::make(Handle(), op->name);

src/IRMutator.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
#include "IRMutator.h"
2-
#include "IRPrinter.h"
32

43
namespace Halide {
54
namespace Internal {
65

7-
IRPrinter irp(std::cerr);
8-
96
using std::pair;
107
using std::vector;
118

0 commit comments

Comments
 (0)