xref: /aosp_15_r20/external/pytorch/test/lazy/test_bindings.py (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1# Owner(s): ["oncall: jit"]
2
3import torch._lazy.metrics
4
5
6def test_metrics():
7    names = torch._lazy.metrics.counter_names()
8    assert len(names) == 0, f"Expected no counter names, but got {names}"
9