pytorch/benchmarks/operator_benchmark/benchmark_all_quantized_test.py
Edward Z. Yang dd3a77bc96 Apply UFMT to all files in benchmarks/ (#105928)
Signed-off-by: Edward Z. Yang <ezyang@meta.com>

Pull Request resolved: https://github.com/pytorch/pytorch/pull/105928
Approved by: https://github.com/albanD
2023-07-26 01:18:48 +00:00

28 lines
557 B
Python

from pt import ( # noqa: F401
qactivation_test,
qarithmetic_test,
qatembedding_ops_test,
qbatchnorm_test,
qcat_test,
qcomparators_test,
qconv_test,
qembedding_pack_test,
qembeddingbag_test,
qgroupnorm_test,
qinstancenorm_test,
qinterpolate_test,
qlayernorm_test,
qlinear_test,
qobserver_test,
qpool_test,
qrnn_test,
qtensor_method_test,
quantization_test,
qunary_test,
)
import operator_benchmark as op_bench
if __name__ == "__main__":
op_bench.benchmark_runner.main()