mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 05:34:18 +08:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/44735 Reviewed By: mruberry Differential Revision: D23731306 Pulled By: ezyang fbshipit-source-id: 0ba009a99e475ddbe22981be8ac636f8a1c8b02f
26 lines
498 B
Python
26 lines
498 B
Python
import operator_benchmark as op_bench
|
|
from pt import ( # noqa
|
|
qactivation_test,
|
|
qarithmetic_test,
|
|
qbatchnorm_test,
|
|
qcat_test,
|
|
qcomparators_test,
|
|
qconv_test,
|
|
qgroupnorm_test,
|
|
qinstancenorm_test,
|
|
qinterpolate_test,
|
|
qlayernorm_test,
|
|
qlinear_test,
|
|
qobserver_test,
|
|
qpool_test,
|
|
qrnn_test,
|
|
qtensor_method_test,
|
|
quantization_test,
|
|
qunary_test,
|
|
qembedding_pack_test,
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
op_bench.benchmark_runner.main()
|