Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 71 for Summarize (0.19 sec)

  1. 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)
  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. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

    {info}> {normal}resolution 1.
    $STACKTRACE
    $INFO_OR_DEBUG
    $GET_HELP
    """
        }
    
        // region Duplicate Exception Branch Filtering
        def "multi-cause exceptions have branches with identical root causes summarized properly"() {
            def ultimateCause = new RuntimeException("ultimate cause")
            def branch1 = new DefaultMultiCauseException("first failure", ultimateCause)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_activity.proto

    limitations under the License.
    ==============================================================================*/
    
    syntax = "proto3";
    
    package tensorflow;
    
    import "tensorflow/core/protobuf/config.proto";
    
    // Summarizes the results of auto-clustering a TensorFlow graph.
    //
    // Next ID: 5
    message XlaAutoClusteringSummary {
      // Represents a single element in a histogram of ops ("op" as in "TensorFlow
      // operation").
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 15 03:11:33 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/c/eager/immediate_execution_tensor_handle.h

      // the handle loses information, but `SummarizeValue` would be more precise.
      virtual bool PreferCustomSummarizer() const { return false; }
    
      // Returns a string which summarizes the value of this TensorHandle, for
      // debugging. Does not include a shape or dtype.
      //
      // Included in the default implementation of DebugString.
      virtual Status SummarizeValue(std::string& summary) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 10 21:56:24 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. tensorflow/c/eager/parallel_device/parallel_device_test.cc

      ImmediateExecutionTensorHandle* unwrapped_handle =
          tensorflow::unwrap(device_value.get());
      std::string summarized;
      TF_ASSERT_OK(unwrapped_handle->SummarizeValue(summarized));
      EXPECT_THAT(summarized, HasSubstr("\"CPU:0\": 3"));
    }
    
    }  // namespace parallel_device
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 08 23:47:35 UTC 2021
    - 29.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[version-catalog-problems]]
    = Troubleshooting version catalog problems
    
    This page summarizes the different problems that Gradle reports when using version catalogs and provides guidance for fixing them.
    
    [[accessor_name_clash]]
    == Accessor name clash
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_gradle_module_metadata.adoc

    Gradle does its best to map Gradle-specific concepts to Maven or Ivy.
    When a build file uses features that can only be represented in Gradle Module Metadata, Gradle will warn you at publication time.
    The table below summarizes how some Gradle specific features are mapped to Maven and Ivy:
    
    .Mapping of Gradle specific concepts to Maven and Ivy
    |===
    |Gradle|Maven|Ivy|Description
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // -----
    
    // CHECK-LABEL: @assert
    func.func @assert(%arg0: tensor<i1>, %arg1: tensor<*xf32>) {
      // CHECK-NOT: tf.Assert
      "tf.Assert"(%arg0, %arg1) {summarize = 1} : (tensor<i1>, tensor<*xf32>) -> ()
      func.return
    }
    
    //===----------------------------------------------------------------------===//
    // tf.Unpack legalization
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top