Home
last modified time | relevance | path

Searched refs:time_to_readable_str (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/python/debug/cli/
Dcli_shared_test.py76 self.assertEqual("0", cli_shared.time_to_readable_str(None))
79 self.assertEqual("40us", cli_shared.time_to_readable_str(40))
82 self.assertEqual("40ms", cli_shared.time_to_readable_str(40e3))
85 self.assertEqual("40s", cli_shared.time_to_readable_str(40e6))
89 cli_shared.time_to_readable_str(
92 cli_shared.time_to_readable_str(
95 cli_shared.time_to_readable_str(
98 cli_shared.time_to_readable_str(
101 cli_shared.time_to_readable_str(
105 cli_shared.time_to_readable_str(100, force_time_unit="ks")
Dprofile_analyzer_cli.py62 cli_shared.time_to_readable_str(datum.op_time,
66 cli_shared.time_to_readable_str(
512 cli_shared.time_to_readable_str(total_op_time,
514 cli_shared.time_to_readable_str(total_exec_time,
691 total_cost = RL(cli_shared.time_to_readable_str(
Dcli_shared.py85 def time_to_readable_str(value_us, force_time_unit=None): function