Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for addDump (0.09 sec)

  1. tensorflow/compiler/aot/benchmark_test.cc

    namespace benchmark {
    namespace {
    
    // There isn't much we can verify in a stable fashion, so we just run the
    // benchmark with max_iters, and ensure we end up with that many iter stats.
    TEST(Benchmark, Benchmark) {
      AddComp add;
    
      Options options;
      options.max_iters = 1;
      Stats stats1;
      Benchmark(options, [&] { add.Run(); }, &stats1);
      EXPECT_EQ(stats1.per_iter_us.size(), 1);
    
      options.max_iters = 5;
      Stats stats5;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 09 20:26:35 UTC 2017
    - 1.4K bytes
    - Viewed (0)
Back to top