mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
trying to address https://github.com/pytorch/pytorch/issues/133377 Pull Request resolved: https://github.com/pytorch/pytorch/pull/133390 Approved by: https://github.com/kit1980, https://github.com/malfet, https://github.com/ezyang
29 lines
557 B
Python
29 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()
|