-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathbench_reduce.py
More file actions
274 lines (210 loc) · 8.55 KB
/
Copy pathbench_reduce.py
File metadata and controls
274 lines (210 loc) · 8.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
"""Benchmarks for the 8 basic reduce ops.
Measures latency, TFLOPS, and DRAM bandwidth against PyTorch baselines.
Workload shapes and roofline formulas are loaded from the ops manifest (tileops/manifest/).
"""
import pytest
import torch
from benchmarks.benchmark_base import BenchmarkReport, ManifestBenchmark, workloads_to_params
from tileops.ops.reduction.reduce import (
AmaxFwdOp,
AminFwdOp,
MeanFwdOp,
ProdFwdOp,
StdFwdOp,
SumFwdOp,
VarFwdOp,
VarMeanFwdOp,
)
from workloads.reduce import (
AmaxTest,
AminTest,
MeanTest,
ProdTest,
StdTest,
SumTest,
VarMeanTest,
VarTest,
)
# ===================================================================
# Op name constants
# ===================================================================
_SUM_OP = "SumFwdOp"
_MEAN_OP = "MeanFwdOp"
_AMAX_OP = "AmaxFwdOp"
_AMIN_OP = "AminFwdOp"
_PROD_OP = "ProdFwdOp"
_STD_OP = "StdFwdOp"
_VAR_OP = "VarFwdOp"
_VAR_MEAN_OP = "VarMeanFwdOp"
# ===================================================================
# Sum benchmarks
# ===================================================================
@pytest.mark.parametrize(
"shape, dtype, op_params",
workloads_to_params(_SUM_OP, include_extra=True),
)
def test_sum_bench(
shape: tuple, dtype: torch.dtype, op_params: dict
) -> None:
test = SumTest(shape, dtype)
inputs = test.gen_inputs()
op_params.setdefault("dim", -1) # baseline below reduces dim=-1
op = SumFwdOp(dtype=dtype, **op_params)
bm = ManifestBenchmark(_SUM_OP, op, test)
try:
result = bm.profile(op, *inputs)
except ValueError as exc:
if "No configurations to tune" in str(exc):
pytest.skip(f"Kernel does not support this shape: {exc}")
raise
BenchmarkReport.record(op, locals(), result, tag="tileops")
dim = op_params.get("dim", -1)
keepdim = op_params.get("keepdim", False)
def baseline_fn(x):
return x.float().sum(dim=dim, keepdim=keepdim).to(x.dtype)
result_bl = bm.profile(baseline_fn, *inputs)
BenchmarkReport.record(op, locals(), result_bl, tag="torch")
# ===================================================================
# Mean benchmarks
# ===================================================================
@pytest.mark.parametrize("shape, dtype", workloads_to_params(_MEAN_OP))
def test_mean_bench(shape: tuple, dtype: torch.dtype) -> None:
test = MeanTest(shape, dtype)
inputs = test.gen_inputs()
op = MeanFwdOp(dtype=dtype, dim=-1)
bm = ManifestBenchmark(_MEAN_OP, op, test)
try:
result = bm.profile(op, *inputs)
except ValueError as exc:
if "No configurations to tune" in str(exc):
pytest.skip(f"Kernel does not support this shape: {exc}")
raise
BenchmarkReport.record(op, locals(), result, tag="tileops")
def baseline_fn(x):
return x.float().mean(dim=-1).to(x.dtype)
result_bl = bm.profile(baseline_fn, *inputs)
BenchmarkReport.record(op, locals(), result_bl, tag="torch")
# ===================================================================
# Amax benchmarks
# ===================================================================
@pytest.mark.parametrize("shape, dtype", workloads_to_params(_AMAX_OP))
def test_amax_bench(shape: tuple, dtype: torch.dtype) -> None:
test = AmaxTest(shape, dtype)
inputs = test.gen_inputs()
op = AmaxFwdOp(dtype=dtype, dim=-1)
bm = ManifestBenchmark(_AMAX_OP, op, test)
try:
result = bm.profile(op, *inputs)
except ValueError as exc:
if "No configurations to tune" in str(exc):
pytest.skip(f"Kernel does not support this shape: {exc}")
raise
BenchmarkReport.record(op, locals(), result, tag="tileops")
def baseline_fn(x):
return x.amax(dim=-1)
result_bl = bm.profile(baseline_fn, *inputs)
BenchmarkReport.record(op, locals(), result_bl, tag="torch")
# ===================================================================
# Amin benchmarks
# ===================================================================
@pytest.mark.parametrize("shape, dtype", workloads_to_params(_AMIN_OP))
def test_amin_bench(shape: tuple, dtype: torch.dtype) -> None:
test = AminTest(shape, dtype)
inputs = test.gen_inputs()
op = AminFwdOp(dtype=dtype, dim=-1)
bm = ManifestBenchmark(_AMIN_OP, op, test)
try:
result = bm.profile(op, *inputs)
except ValueError as exc:
if "No configurations to tune" in str(exc):
pytest.skip(f"Kernel does not support this shape: {exc}")
raise
BenchmarkReport.record(op, locals(), result, tag="tileops")
def baseline_fn(x):
return x.amin(dim=-1)
result_bl = bm.profile(baseline_fn, *inputs)
BenchmarkReport.record(op, locals(), result_bl, tag="torch")
# ===================================================================
# Prod benchmarks
# ===================================================================
@pytest.mark.parametrize("shape, dtype", workloads_to_params(_PROD_OP))
def test_prod_bench(shape: tuple, dtype: torch.dtype) -> None:
test = ProdTest(shape, dtype)
inputs = test.gen_inputs()
op = ProdFwdOp(dtype=dtype)
bm = ManifestBenchmark(_PROD_OP, op, test)
try:
result = bm.profile(op, *inputs)
except ValueError as exc:
if "No configurations to tune" in str(exc):
pytest.skip(f"Kernel does not support this shape: {exc}")
raise
BenchmarkReport.record(op, locals(), result, tag="tileops")
def baseline_fn(x):
return x.float().prod(dim=-1).to(x.dtype)
result_bl = bm.profile(baseline_fn, *inputs)
BenchmarkReport.record(op, locals(), result_bl, tag="torch")
# ===================================================================
# Std benchmarks
# ===================================================================
@pytest.mark.parametrize("shape, dtype", workloads_to_params(_STD_OP))
def test_std_bench(shape: tuple, dtype: torch.dtype) -> None:
test = StdTest(shape, dtype)
inputs = test.gen_inputs()
op = StdFwdOp(dtype=dtype, dim=-1, correction=1)
bm = ManifestBenchmark(_STD_OP, op, test)
try:
result = bm.profile(op, *inputs)
except ValueError as exc:
if "No configurations to tune" in str(exc):
pytest.skip(f"Kernel does not support this shape: {exc}")
raise
BenchmarkReport.record(op, locals(), result, tag="tileops")
def baseline_fn(x):
return x.float().std(dim=-1, correction=1).to(x.dtype)
result_bl = bm.profile(baseline_fn, *inputs)
BenchmarkReport.record(op, locals(), result_bl, tag="torch")
# ===================================================================
# Var benchmarks
# ===================================================================
@pytest.mark.parametrize("shape, dtype", workloads_to_params(_VAR_OP))
def test_var_bench(shape: tuple, dtype: torch.dtype) -> None:
test = VarTest(shape, dtype)
inputs = test.gen_inputs()
op = VarFwdOp(dtype=dtype, dim=-1, correction=1)
bm = ManifestBenchmark(_VAR_OP, op, test)
try:
result = bm.profile(op, *inputs)
except ValueError as exc:
if "No configurations to tune" in str(exc):
pytest.skip(f"Kernel does not support this shape: {exc}")
raise
BenchmarkReport.record(op, locals(), result, tag="tileops")
def baseline_fn(x):
return x.float().var(dim=-1, correction=1).to(x.dtype)
result_bl = bm.profile(baseline_fn, *inputs)
BenchmarkReport.record(op, locals(), result_bl, tag="torch")
# ===================================================================
# VarMean benchmarks
# ===================================================================
@pytest.mark.parametrize("shape, dtype", workloads_to_params(_VAR_MEAN_OP))
def test_var_mean_bench(shape: tuple, dtype: torch.dtype) -> None:
test = VarMeanTest(shape, dtype)
inputs = test.gen_inputs()
op = VarMeanFwdOp(dtype=dtype, dim=-1, correction=1)
bm = ManifestBenchmark(_VAR_MEAN_OP, op, test)
try:
result = bm.profile(op, *inputs)
except ValueError as exc:
if "No configurations to tune" in str(exc):
pytest.skip(f"Kernel does not support this shape: {exc}")
raise
BenchmarkReport.record(op, locals(), result, tag="tileops")
def baseline_fn(x):
v = x.float().var(dim=-1, correction=1).to(x.dtype)
m = x.float().mean(dim=-1).to(x.dtype)
return (v, m)
result_bl = bm.profile(baseline_fn, *inputs)
BenchmarkReport.record(op, locals(), result_bl, tag="torch")
if __name__ == "__main__":
pytest.main([__file__, "-vvs"])