mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-08-02 03:42:50 +08:00
Summary: Address black + isort fbsource linter warnings from D20558374 (previous diff) Reviewed By: nikhilaravi Differential Revision: D20558373 fbshipit-source-id: d3607de4a01fb24c0d5269634563a7914bddf1c8
16 lines
460 B
Python
16 lines
460 B
Python
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
|
|
|
|
from fvcore.common.benchmark import benchmark
|
|
from test_so3 import TestSO3
|
|
|
|
|
|
def bm_so3() -> None:
|
|
kwargs_list = [
|
|
{"batch_size": 1},
|
|
{"batch_size": 10},
|
|
{"batch_size": 100},
|
|
{"batch_size": 1000},
|
|
]
|
|
benchmark(TestSO3.so3_expmap, "SO3_EXP", kwargs_list, warmup_iters=1)
|
|
benchmark(TestSO3.so3_logmap, "SO3_LOG", kwargs_list, warmup_iters=1)
|