Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InitPluginProfiler (0.13 sec)

  1. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler_internal.h

    using TFInitProfilerFn = void (*)(TF_ProfilerRegistrationParams* const,
                                      TF_Status* const);
    
    // Registers plugin's profiler to TensorFlow's profiler registry.
    Status InitPluginProfiler(TFInitProfilerFn init_fn);
    
    }  // namespace profiler
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.cc

      void (*destroy_profiler_)(TP_Profiler*);
      TP_ProfilerFns profiler_fns_{TP_PROFILER_FNS_STRUCT_SIZE};
      void (*destroy_profiler_fns_)(TP_ProfilerFns*);
    };
    
    }  // namespace
    
    Status InitPluginProfiler(TFInitProfilerFn init_fn) {
      TF_ProfilerRegistrationParams params{
          TF_PROFILER_REGISTRATION_PARAMS_STRUCT_SIZE};
      TP_Profiler profiler{TP_PROFILER_STRUCT_SIZE};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top