Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for traceme (0.54 sec)

  1. tensorflow/compiler/jit/pjrt_device_context.cc

                                                  Device* device,
                                                  Tensor* cpu_tensor,
                                                  StatusCallback done) {
      tsl::profiler::TraceMe traceme("PjRtDeviceContext::CopyDeviceTensorToCPU");
      if (device_tensor->NumElements() == 0) {
        VLOG(2) << "CopyDeviceTensorToCPU empty tensor";
        done(absl::OkStatus());
        return;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:49:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/kernels/xla_ops.cc

    #include "tensorflow/core/platform/refcount.h"
    #include "tensorflow/core/platform/statusor.h"
    #include "tensorflow/core/platform/stream_executor_no_cuda.h"
    #include "tensorflow/core/profiler/lib/traceme.h"
    #include "tensorflow/core/util/stream_executor_util.h"
    #include "tsl/platform/statusor.h"
    
    // OP_REQUIRES_OK_RETURN is the same as OP_REQUIRES_OK except that
    // in error case, it returns RET instead of void.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device.cc

    #include "tensorflow/core/lib/core/status.h"
    #include "tensorflow/core/platform/logging.h"
    #include "tensorflow/core/platform/stream_executor_no_cuda.h"
    #include "tensorflow/core/profiler/lib/traceme.h"
    #include "tensorflow/core/public/session_options.h"
    #include "tensorflow/core/public/version.h"
    #include "tensorflow/core/tfrt/common/async_value_tensor.h"
    #include "tensorflow/core/util/device_name_utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api.cc

    #include "tensorflow/core/platform/casts.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/platform.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/profiler/lib/traceme.h"
    #include "tensorflow/core/protobuf/error_codes.pb.h"
    #include "tensorflow/core/public/version.h"
    
    #if !defined(IS_MOBILE_PLATFORM)
    #include "tensorflow/core/common_runtime/eager/context_distributed_manager.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tfcompile.bzl

            program, and emit metadata that lets us pretty-print the gathered
            profile counters.
          enable_tracemes: Tell tfcompile to generate calls to
            TraceMe::Activity{Start|End} around HLO instructions that can be used by
            Xprof to construct profiler timelines.
          mlir_components: When the value is "None", no components use MLIR. When
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. src/runtime/traceruntime.go

    	// Perform a traceAcquire/traceRelease on behalf of mp to
    	// synchronize with the tracer trying to flush our buffer
    	// as well.
    	seq := mp.trace.seqlock.Add(1)
    	if debugTraceReentrancy && seq%2 != 1 {
    		throw("bad use of trace.seqlock or tracer is reentrant")
    	}
    	systemstack(func() {
    		lock(&trace.lock)
    		for i := range mp.trace.buf {
    			if mp.trace.buf[i] != nil {
    				// N.B. traceBufFlush accepts a generation, but it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. src/runtime/trace.go

    		}
    		if stopTrace {
    			if !trace.full[1-(gen%2)].empty() {
    				throw("trace: non-empty full trace buffer for next generation")
    			}
    			if trace.reading != nil || trace.reader.Load() != nil {
    				throw("trace: reading after shutdown")
    			}
    			// Free all the empty buffers.
    			for trace.empty != nil {
    				buf := trace.empty
    				trace.empty = buf.link
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrTask.java

        /**
         * Specifies that all rules call {@code traceIn}/{@code traceOut}.
         */
        @Input
        public boolean isTrace() {
            return trace;
        }
    
        public void setTrace(boolean trace) {
            this.trace = trace;
        }
    
        /**
         * Specifies that all lexer rules call {@code traceIn}/{@code traceOut}.
         */
        @Input
        public boolean isTraceLexer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. tools/packaging/common/envoy_bootstrap.json

        "http": {
          "name": "envoy.tracers.lightstep",
          "typed_config": {
            "@type": "type.googleapis.com/envoy.config.trace.v3.LightstepConfig",
            "collector_cluster": "lightstep",
            "access_token_file": "{{ .lightstepToken}}"
          }
        }
      }
      {{- else if .datadog }}
      ,
      "tracing": {
        "http": {
          "name": "envoy.tracers.datadog",
          "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/tracing.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/wellknown"
    )
    
    const (
    	envoyDatadog       = "envoy.tracers.datadog"
    	envoyOpenTelemetry = "envoy.tracers.opentelemetry"
    	envoySkywalking    = "envoy.tracers.skywalking"
    	envoyZipkin        = "envoy.tracers.zipkin"
    )
    
    // this is used for testing. it should not be changed in regular code.
    var clusterLookupFn = model.LookupCluster
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top