Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for max_micros (0.1 sec)

  1. tensorflow/compiler/aot/benchmark.cc

      // If neither max_seconds or max_iters is set, stop at kDefaultMicros.
      const int64_t max_us = (options.max_micros <= 0 && options.max_iters <= 0)
                                 ? Options::kDefaultMicros
                                 : options.max_micros;
      // NOLINTNEXTLINE
      printf("Running benchmark for %lld us\n", static_cast<long long>(max_us));
      const int64_t start_us = NowMicros();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 19:45:29 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top