Skip to content

Commit 11de12e

Browse files
author
Rohan Yadav
committed
taco: adjust windowing benchmark so that names line up
1 parent 0423123 commit 11de12e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

taco/windowing.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ enum WindowConfig {
1818
ConstantFraction,
1919
AlmostWhole,
2020
Whole,
21-
NoWindow,
21+
NoWindowing,
2222
};
2323

2424
#define FOREACH_WINDOW_CONFIG(__func__) \
2525
__func__(Constant, Constant) \
2626
__func__(ConstantFraction, ConstantFraction) \
2727
__func__(AlmostWhole, AlmostWhole) \
2828
__func__(Whole, Whole) \
29-
__func__(NoWindow, NoWindow)
29+
__func__(NoWindowing, NoWindowing)
3030

3131
Tensor<double> windowedTensorOp(Tensor<double> input, int dim, WindowConfig config) {
3232
IndexVar i, j;
@@ -53,7 +53,7 @@ Tensor<double> windowedTensorOp(Tensor<double> input, int dim, WindowConfig conf
5353
result(i, j) = input(i(0, dim), j(0, dim)) + input(i(0, dim), j(0, dim));
5454
return result;
5555
}
56-
case NoWindow: {
56+
case NoWindowing: {
5757
Tensor<double> result("B", {dim, dim}, input.getFormat());
5858
result(i, j) = input(i, j) + input(i, j);
5959
return result;

0 commit comments

Comments
 (0)