Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit 0b3a8be

Browse files
Merge pull request #426 from math-fehr/autotuner-tiling-fix
Fixed bug on tiling range in autotuner.
2 parents 9bb6a33 + f965936 commit 0b3a8be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tc/autotuner/autotuner-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ void setupTuningParameters(
396396
auto nTilesDim = largestDim(inputs) + 1;
397397
auto tileRange = range;
398398
tileRange.push_back(0);
399-
configuration.tilingParams.setRange(nTilesDim, range);
399+
configuration.tilingParams.setRange(nTilesDim, tileRange);
400400
configuration.blockParams.setRange(range, "b");
401401
configuration.gridParams.setRange(range, "g");
402402
configuration.unrollFactor = RangeParameter({1, 2, 4, 8, 16, 32}, "unroll");

0 commit comments

Comments
 (0)