Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,058 for ProfileR (0.17 sec)

  1. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.cc

    #include "tensorflow/core/platform/mutex.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/profiler/lib/profiler_factory.h"
    #include "tensorflow/core/profiler/lib/profiler_interface.h"
    #include "tsl/profiler/protobuf/profiler_options.pb.h"
    
    namespace tensorflow {
    namespace profiler {
    
    namespace {
    
    Status ValidateTPProfilerRegistrationParams(
        const TF_ProfilerRegistrationParams& params) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.h

    //
    //   /* Plugin code below */
    //   void profiler_start(const TP_Profiler* profiler, TF_Status* status) {
    //     /* Enable profiler */
    //     ...
    //   }
    //
    //  void profiler_stop(const TP_Profiler* profiler, TF_Status* status) {
    //    /* Disable Profiler */
    //    ...
    //  }
    //
    //  void profiler_collect_data_xspace(const TP_Profiler* profiler, uint8_t*
    //  buffer, size_t* size_in_bytes, TF_Status* status) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 14 20:04:34 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_profiler_test.cc

      DeviceCompilationProfiler* profiler = new DeviceCompilationProfiler();
      core::ScopedUnref profiler_ref(profiler);
    
      for (int i = 0; i < 5; ++i) {
        profiler->IncrementOngoingAsyncCompilations();
      }
    
      EXPECT_EQ(profiler->GetNumOngoingAsyncCompilations(), 5);
    
      for (int i = 0; i < 5; ++i) {
        profiler->DecrementOngoingAsyncCompilations();
      }
    
      EXPECT_EQ(profiler->GetNumOngoingAsyncCompilations(), 0);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 22 21:06:33 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/pluggable_profiler/BUILD

            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core/common_runtime/device:device_utils",
            "//tensorflow/core/profiler/lib:profiler_factory",
            "//tensorflow/core/profiler/lib:profiler_interface",
            "//tensorflow/core/profiler/protobuf:xplane_proto_cc",
        ],
    )
    
    cc_library(
        name = "pluggable_profiler_internal",
        hdrs = [
            "pluggable_profiler.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractBuildExperimentRunner.java

    import org.gradle.profiler.BenchmarkResultCollector;
    import org.gradle.profiler.BuildMutator;
    import org.gradle.profiler.InvocationSettings;
    import org.gradle.profiler.Profiler;
    import org.gradle.profiler.ProfilerFactory;
    import org.gradle.profiler.ScenarioDefinition;
    import org.gradle.profiler.report.Format;
    import org.gradle.profiler.result.BuildInvocationResult;
    
    import java.io.File;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler_internal.h

    #include "tensorflow/c/tf_status_helper.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/profiler/lib/profiler_interface.h"
    #include "tensorflow/core/profiler/protobuf/xplane.pb.h"
    #include "tsl/profiler/protobuf/profiler_options.pb.h"
    
    namespace tensorflow {
    namespace profiler {
    
    // Plugin initialization function that a device plugin must define. Returns
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

          }));
    
      TF_RETURN_IF_ERROR(rm->LookupOrCreate<DeviceCompilationProfiler>(
          rm->default_container(), "device_compilation_profiler", profiler,
          [](DeviceCompilationProfiler** profiler) {
            *profiler = new DeviceCompilationProfiler();
            return absl::OkStatus();
          }));
    
      XlaCompiler::Options options = GenerateCompilerOptions(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/GradleProfilerReporter.java

    import com.google.common.collect.ImmutableList;
    import org.gradle.profiler.BenchmarkResultCollector;
    import org.gradle.profiler.InvocationSettings;
    import org.gradle.profiler.report.AbstractGenerator;
    import org.gradle.profiler.report.BenchmarkResult;
    import org.gradle.profiler.report.CsvGenerator;
    import org.gradle.profiler.report.Format;
    import org.gradle.profiler.report.HtmlGenerator;
    
    import java.io.BufferedWriter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

    private
    fun ParametrizedWithType.profilerParam(defaultProfiler: String) {
        text(
            "profiler",
            defaultProfiler,
            display = ParameterDisplay.PROMPT,
            allowEmpty = false,
            description = "Command line option for the performance test task to enable profiling. For example `async-profiler`, `async-profiler-heap`, `async-profiler-all` or `jfr`. Use `none` for benchmarking only."
        )
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenBuildExperimentRunner.java

    import org.gradle.performance.results.OutputDirSelector;
    import org.gradle.profiler.BuildInvoker;
    import org.gradle.profiler.InvocationSettings;
    import org.gradle.profiler.Logging;
    import org.gradle.profiler.maven.MavenScenarioDefinition;
    import org.gradle.profiler.maven.MavenScenarioInvoker;
    import org.gradle.profiler.result.BuildInvocationResult;
    
    import java.io.File;
    import java.io.IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top