Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AddTagged (0.16 sec)

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

    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/platform/test_benchmark.h"
    
    namespace tf {
    namespace libtf {
    
    namespace {
    
    // AddTagged using tagged values
    TaggedValue AddTagged(TaggedValue args, TaggedValue kwargs) {
      return TaggedValue(args.tuple()[0].i64() + args.tuple()[1].i64());
    }
    
    int64_t AddRaw(int64_t a, int64_t b) { return a + b; }
    
    }  // namespace
    
    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