Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for Summarize (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

        private
        val problemsService: InternalProblems,
    
        private
        val failureFactory: FailureFactory
    
    ) : AbstractProblemsListener(), ProblemReporter, AutoCloseable {
    
        private
        val summarizer = ConfigurationCacheProblemsSummary()
    
        private
        val buildNameHandler = BuildNameHandler()
    
        private
        val postBuildHandler = PostBuildProblemsHandler()
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    }
    
    func.func @assert_remove(%arg0: tensor<1xi32>, %arg1: tensor<1xi32>) -> tensor<1xi1> {
      %0 = "tf.LessEqual"(%arg0, %arg1) : (tensor<1xi32>, tensor<1xi32>) -> tensor<1xi1>
      "tf.Assert"(%0, %arg1) {summarize = 3} : (tensor<1xi1>, tensor<1xi32>) -> ()
      func.return %0 : tensor<1xi1>
      // CHECK-LABEL: assert_remove
      // CHECK: tfl.less_equal
      // CHECK-NOT: Assert
      // CHECK: return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  3. src/internal/trace/summary.go

    	lastSyscallTime      Time
    	lastSyscallBlockTime Time
    	lastRangeTime        map[string]Time
    	activeRegions        []*UserRegionSummary // stack of active regions
    }
    
    // Summarizer constructs per-goroutine time statistics for v2 traces.
    type Summarizer struct {
    	// gs contains the map of goroutine summaries we're building up to return to the caller.
    	gs map[GoID]*GoroutineSummary
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    If `condition` evaluates to false, print the list of tensors in `data`.
    `summarize` determines how many entries of the tensors to print.
      }];
    
      let arguments = (ins
        Arg<TF_BoolTensor, [{The condition to evaluate.}]>:$condition,
        Arg<Variadic<TF_Tensor>, [{The tensors to print out when condition is false.}]>:$data,
    
        DefaultValuedOptionalAttr<I64Attr, "3">:$summarize
      );
    
      let results = (outs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	// See tests for examples.
    	cppRegExp                = regexp.MustCompile(`^(?:[_a-zA-Z]\w*::)+(_*[A-Z]\w*::~?[_a-zA-Z]\w*(?:<.*>)?)`)
    	cppAnonymousPrefixRegExp = regexp.MustCompile(`^\(anonymous namespace\)::`)
    )
    
    // Graph summarizes a performance profile into a format that is
    // suitable for visualization.
    type Graph struct {
    	Nodes Nodes
    }
    
    // Options encodes the options for constructing a graph
    type Options struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. src/runtime/netpoll.go

    	fdseq atomic.Uintptr // protects against stale pollDesc
    
    	// atomicInfo holds bits from closing, rd, and wd,
    	// which are only ever written while holding the lock,
    	// summarized for use by netpollcheckerr,
    	// which cannot acquire the lock.
    	// After writing these fields under lock in a way that
    	// might change the summary, code must call publishInfo
    	// before releasing the lock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. src/runtime/traceruntime.go

    	// the P just to get its attention (e.g. STW or sysmon retake) or we're trying to steal a P for
    	// ourselves specifically to keep running. The two contexts look different, but can be summarized
    	// fairly succinctly. In the former, we're a regular running goroutine and proc, if we have either.
    	// In the latter, we're a goroutine in a syscall.
    	goStatus := traceGoRunning
    	procStatus := traceProcRunning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/liveness/plive.go

    // the liveness analysis work on single-word values as well, although
    // there are complications around interface values, slices, and strings,
    // all of which cannot be treated as individual words.
    
    // blockEffects summarizes the liveness effects on an SSA block.
    type blockEffects struct {
    	// Computed during Liveness.prologue using only the content of
    	// individual blocks:
    	//
    	//	uevar: upward exposed variables (used before set in block)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. src/internal/trace/gc.go

    // multiple window sizes.
    type MMUCurve struct {
    	series []mmuSeries
    }
    
    type mmuSeries struct {
    	util []MutatorUtil
    	// sums[j] is the cumulative sum of util[:j].
    	sums []totalUtil
    	// bands summarizes util in non-overlapping bands of duration
    	// bandDur.
    	bands []mmuBand
    	// bandDur is the duration of each band.
    	bandDur int64
    }
    
    type mmuBand struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. docs/en/docs/async.md

    But all this functionality of using asynchronous code with `async` and `await` is many times summarized as using "coroutines". It is comparable to the main key feature of Go, the "Goroutines".
    
    ## Conclusion
    
    Let's see the same phrase from above:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top