mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 00:21:07 +01:00
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
17 lines
560 B
Python
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()
|