Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 119 for traceme (0.11 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/tracemap.go

    // appear in the table anymore.
    func (tab *traceMap) stealID() uint64 {
    	return tab.seq.Add(1)
    }
    
    // put inserts the data into the table.
    //
    // It's always safe for callers to noescape data because put copies its bytes.
    //
    // Returns a unique ID for the data and whether this is the first time
    // the data has been added to the map.
    func (tab *traceMap) put(data unsafe.Pointer, size uintptr) (uint64, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/trace/trace.go

    // traceKey is the context key for tracing information. It is unexported to prevent collisions with context keys defined in
    // other packages.
    type traceKey struct{}
    
    type traceContext struct {
    	t   *tracer
    	tid uint64
    }
    
    // Start starts a trace which writes to the given file.
    func Start(ctx context.Context, file string) (context.Context, func() error, error) {
    	traceStarted.Store(true)
    	if file == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/runtime/testdata/testprogcgo/trace.go

    // license that can be found in the LICENSE file.
    
    package main
    
    /*
    // Defined in trace_*.c.
    void cCalledFromGo(void);
    */
    import "C"
    import (
    	"context"
    	"fmt"
    	"log"
    	"os"
    	"runtime/trace"
    )
    
    func init() {
    	register("Trace", Trace)
    }
    
    // Trace is used by TestTraceUnwindCGO.
    func Trace() {
    	file, err := os.CreateTemp("", "testprogcgo_trace")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 19:18:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. cmd/http-tracer.go

    		h.ServeHTTP(respRecorder, r)
    		reqEndTime := time.Now().UTC()
    
    		if globalTrace.NumSubscribers(madmin.TraceS3|madmin.TraceInternal) == 0 {
    			// no subscribers nothing to trace.
    			return
    		}
    
    		tt := madmin.TraceInternal
    		if strings.HasPrefix(tc.FuncName, "s3.") {
    			tt = madmin.TraceS3
    		}
    
    		// Calculate input body size with headers
    		reqHeaders := r.Header.Clone()
    		reqHeaders.Set("Host", r.Host)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/net/http/httptrace/trace.go

    	if trace == nil {
    		panic("nil trace")
    	}
    	old := ContextClientTrace(ctx)
    	trace.compose(old)
    
    	ctx = context.WithValue(ctx, clientEventContextKey{}, trace)
    	if trace.hasNetHooks() {
    		nt := &nettrace.Trace{
    			ConnectStart: trace.ConnectStart,
    			ConnectDone:  trace.ConnectDone,
    		}
    		if trace.DNSStart != nil {
    			nt.DNSStart = func(name string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top