Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SetDefaultTracingEngine (0.23 sec)

  1. tensorflow/c/eager/c_api_unified_experimental.cc

    using tensorflow::tracing::CreateTracingExecutionContext;
    using tensorflow::tracing::SetDefaultTracingEngine;
    using tensorflow::tracing::TracingContext;
    using tensorflow::tracing::TracingOperation;
    using tensorflow::tracing::TracingTensorHandle;
    
    void TF_SetTracingImplementation(const char* name, TF_Status* s) {
      tsl::Set_TF_Status_from_Status(s, SetDefaultTracingEngine(name));
    }
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 09:49:45 GMT 2024
    - 9K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_unified_experimental_internal.h

      static bool classof(const AbstractContext* ptr) {
        return ptr->getKind() == kGraph || ptr->getKind() == kMlir;
      }
    };
    
    typedef TracingContext* (*FactoryFunction)(const char* fn_name, TF_Status*);
    Status SetDefaultTracingEngine(const char* name);
    void RegisterTracingEngineFactory(const ::tensorflow::string& name,
                                      FactoryFunction factory);
    }  // namespace tracing
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Nov 13 22:20:40 GMT 2020
    - 5.2K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_unified_experimental_graph.cc

    }
    
    // Register the tracing implemented in this file as the default tracing engine.
    static bool register_tracing = [] {
      RegisterTracingEngineFactory("graphdef", GraphTracingFactory);
      SetDefaultTracingEngine("graphdef").IgnoreError();
      return true;
    }();
    
    }  // namespace graph
    }  // namespace tracing
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 12 20:00:09 GMT 2024
    - 15.4K bytes
    - Viewed (1)
Back to top