Rename LoopNestBuilder to AffineLoopNestBuilder - NFC

PiperOrigin-RevId: 275310747
This commit is contained in:
Nicolas Vasilache
2019-10-17 12:13:25 -07:00
committed by A. Unique TensorFlower
parent 6ebc7318b0
commit 10039d04e2
8 changed files with 33 additions and 33 deletions

View File

@@ -348,7 +348,7 @@ struct PythonLoopNestContext {
handlePtrs.reserve(steps.size());
for (auto &h : handles)
handlePtrs.push_back(&h.value);
builder = new LoopNestBuilder(
builder = new AffineLoopNestBuilder(
handlePtrs, std::vector<ValueHandle>(lbs.begin(), lbs.end()),
std::vector<ValueHandle>(ubs.begin(), ubs.end()), steps);
return handles;
@@ -363,7 +363,7 @@ struct PythonLoopNestContext {
std::vector<PythonValueHandle> lbs;
std::vector<PythonValueHandle> ubs;
std::vector<int64_t> steps;
LoopNestBuilder *builder = nullptr;
AffineLoopNestBuilder *builder = nullptr;
};
struct PythonBlockAppender {