Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for Summarize (3.44 sec)

  1. src/cmd/trace/regions.go

    )
    
    // UserRegionsHandlerFunc returns a HandlerFunc that reports all regions found in the trace.
    func UserRegionsHandlerFunc(t *parsedTrace) http.HandlerFunc {
    	return func(w http.ResponseWriter, r *http.Request) {
    		// Summarize all the regions.
    		summary := make(map[regionFingerprint]regionStats)
    		for _, g := range t.summary.Goroutines {
    			for _, r := range g.Regions {
    				id := fingerprintRegion(r)
    				stats, ok := summary[id]
    				if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. src/runtime/export_test.go

    func (b *PallocBits) Free(i, n uint)             { (*pallocBits)(b).free(i, n) }
    func (b *PallocBits) Summarize() PallocSum       { return PallocSum((*pallocBits)(b).summarize()) }
    func (b *PallocBits) PopcntRange(i, n uint) uint { return (*pageBits)(b).popcntRange(i, n) }
    
    // SummarizeSlow is a slow but more obviously correct implementation
    // of (*pallocBits).summarize. Used for testing.
    func SummarizeSlow(b *PallocBits) PallocSum {
    	var start, most, end uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v2/testdata/outside_compilation.mlir

          %control_28 = tf_executor.island wraps "tf.Assert"(%outputs_26, %outputs_2, %outputs_4, %outputs_6, %outputs_22) {device = "/device:CPU:0", summarize = 3 : i64} : (tensor<*xi1>, tensor<!tf_type.string>, tensor<!tf_type.string>, tensor<!tf_type.string>, tensor<i32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:19:45 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    Since included builds can be located anywhere on disk, their build path is determined by the name of the containing directory.
    This can sometimes lead to conflicts.
    
    To summarize, the included builds must fulfill these requirements:
    
    * Each included build must have a unique build path.
    * Each included build path must not conflict with any project path of the main build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/build_xla_ops_pass.cc

                                                          old_node->name(), " is "))
                                    .FirstN(1000)
                                    .Summarize(-1));
            new_output = print_op;
          }
    
          if (debugging_opts.check_output_numerics &&
              DataTypeIsFloating(new_output.type())) {
            ops::CheckNumerics check_numerics_op(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    // Assert op pattern.
    //===----------------------------------------------------------------------===//
    
    // HLO and XLA doesn't support Assertions.
    def LowerAssert : Pattern<(TF_AssertOp $condition, $data, $summarize), []>;
    
    //===----------------------------------------------------------------------===//
    // Binary op patterns.
    //===----------------------------------------------------------------------===//
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

        // CHECK: "tf.UnsupportedOp"
        // CHECK-SAME: _xla_outside_compilation
        // CHECK: "tf.Identity"
        // CHECK-NOT: _xla_outside_compilation
        %t = arith.constant dense<true> : tensor<i1>
        "tf.Assert"(%t, %arg0) {summarize = 3} : (tensor<i1>, tensor<!tf_type.string>) -> ()
        %1 = "tf.UnsupportedOp"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
        %2 = "tf.Identity"(%1) : (tensor<i32>) -> tensor<i32>
        tf_device.return %2 : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

      // CHECK: [[tensor:%.*]] = tf_mlrt.await
      // CHECK: tf_mlrt.executeop([[tensor]])
      %0 = "tf.StringFormat"(%arg0) {__op_key = 0: i32, device = "/job:localhost/replica:0/task:0/device:CPU:0", placeholder = "{}", strtemplate = "%s", summarize = 3 : i64, template = "Outside compiled {}"} : (tensor<i32>) -> tensor<!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/math/Stats.java

     * forms of variance -- that were computed from a single set of zero or more floating-point values.
     *
     * <p>There are two ways to obtain a {@code Stats} instance:
     *
     * <ul>
     *   <li>If all the values you want to summarize are already known, use the appropriate {@code
     *       Stats.of} factory method below. Primitive arrays, iterables and iterators of any kind of
     *       {@code Number}, and primitive varargs are supported.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. guava/src/com/google/common/math/Stats.java

     * forms of variance -- that were computed from a single set of zero or more floating-point values.
     *
     * <p>There are two ways to obtain a {@code Stats} instance:
     *
     * <ul>
     *   <li>If all the values you want to summarize are already known, use the appropriate {@code
     *       Stats.of} factory method below. Primitive arrays, iterables and iterators of any kind of
     *       {@code Number}, and primitive varargs are supported.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top