Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for GatherNd (0.14 sec)

  1. src/internal/trace/traceviewer/http.go

    var templMain = template.Must(template.New("").Parse(`
    <html>
    <style>` + CommonStyle + `</style>
    <body>
    <h1>cmd/trace: the Go trace event viewer</h1>
    <p>
      This web server provides various visualizations of an event log gathered during
      the execution of a Go program that uses the <a href='https://pkg.go.dev/runtime/trace'>runtime/trace</a> package.
    </p>
    
    <h2>Event timelines for running goroutines</h2>
    {{range $i, $view := $}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tfcompile.bzl

            full set of deps needed by the generated library.
          enable_xla_hlo_profiling: Enable XLA HLO profiling in the generated
            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.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_unix.go

    }
    
    // SendmsgBuffers sends a message on a socket to an address using the sendmsg
    // system call. This function is equivalent to SendmsgN, but the non-control
    // data is gathered from buffers.
    func SendmsgBuffers(fd int, buffers [][]byte, oob []byte, to Sockaddr, flags int) (n int, err error) {
    	iov := make([]Iovec, len(buffers))
    	for i := range buffers {
    		if len(buffers[i]) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/object.go

    	// 2) internally created but not yet type-checked.
    	// For case 1) we can't do anything; the client must know what they are doing.
    	// For case 2) we can use the information gathered by the resolver.
    	return obj.hasPtrRecv_
    }
    
    func (*Func) isDependency() {} // a function may be a dependency of an initialization expression
    
    // A Label represents a declared label.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. src/go/types/object.go

    	// 2) internally created but not yet type-checked.
    	// For case 1) we can't do anything; the client must know what they are doing.
    	// For case 2) we can use the information gathered by the resolver.
    	return obj.hasPtrRecv_
    }
    
    func (*Func) isDependency() {} // a function may be a dependency of an initialization expression
    
    // A Label represents a declared label.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/operand_test.go

    	return NewParser(ctxt, architecture, nil)
    }
    
    // tryParse executes parse func in panicOnError=true context.
    // parse is expected to call any parsing methods that may panic.
    // Returns error gathered from recover; nil if no parse errors occurred.
    //
    // For unexpected panics, calls t.Fatal.
    func tryParse(t *testing.T, parse func()) (err error) {
    	panicOnError = true
    	defer func() {
    		panicOnError = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    ```
    
    where
    
    * `params =
       ragged.from_nested_row_splits(params_dense_values, params_nested_splits)`
       provides the values that should be gathered.
    * `indices` ia a dense tensor with dtype `int32` or `int64`, indicating which
       values should be gathered.
    * `output =
       ragged.from_nested_row_splits(output_dense_values, output_nested_splits)`
       is the output tensor.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. src/cmd/go/internal/cache/cache.go

    //
    // We scan the cache for entries to delete at most once per trimInterval (1 day).
    //
    // When we do scan the cache, we delete entries that have not been used for
    // at least trimLimit (5 days). Statistics gathered from a month of usage by
    // Go developers found that essentially all reuse of cached entries happened
    // within 5 days of the previous reuse. See golang.org/issue/22990.
    const (
    	mtimeInterval = 1 * time.Hour
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

        rhs_remove_idx.insert(v);
      }
    
      // Gather shapes for output.
      for (auto v : ddn.lhs_batch_dimensions()) {
        output_shape.push_back(lhs_shape[v]);
      }
    
      // Batch dimension is gathered from the right side.
      if (output_shape.empty()) {
        for (auto v : ddn.rhs_batch_dimensions()) {
          output_shape.push_back(rhs_shape[v]);
        }
      }
    
      // Gather remaining dimensions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  10. src/runtime/mgcsweep.go

    // bytes of the ultimately allocated span will be available for object
    // allocation.
    //
    // deductSweepCredit is the core of the "proportional sweep" system.
    // It uses statistics gathered by the garbage collector to perform
    // enough sweeping so that all pages are swept during the concurrent
    // sweep phase between GC cycles.
    //
    // mheap_ must NOT be locked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top