pytorch/benchmarks/operator_benchmark/benchmark_all_test.py
Zafar Takhirov d545e4f155 qrelu benchmarking
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/29174

Test Plan: Imported from OSS

Differential Revision: D18319345

Pulled By: z-a-f

fbshipit-source-id: b64f0131296771ed201d85664930cceb7be185bd
2019-11-05 17:20:40 -08:00

17 lines
560 B
Python

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
import operator_benchmark as op_bench
from pt import ( # noqa
add_test, batchnorm_test, cat_test, chunk_test, conv_test, # noqa
gather_test, linear_test, matmul_test, pool_test, # noqa
softmax_test, split_test, unary_test, fill_test, as_strided_test, # noqa
# Quantized tests
qactivation_test, qconv_test, qlinear_test,
)
if __name__ == "__main__":
op_bench.benchmark_runner.main()