Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CallFunctionsIndirect (0.12 sec)

  1. tensorflow/cc/experimental/libtf/tests/perf_test.cc

      for (auto dummy : state) {
        sum = *callable.Call<Integer>(sum, Integer(i));
        i++;
      }
    }
    
    // Add numbers in a loop by calling a callable, looking up method every
    // time by tokenized string.
    void CallFunctionsIndirect(::testing::benchmark::State& state) {
      Integer sum(0);
      Callable callable((impl::TaggedValue(impl::Func(AddTagged))));
      Object o;
      String name("f");
      o.Set(name, callable);
      size_t i = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top