Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Summarize (0.12 sec)

  1. tensorflow/compiler/mlir/lite/tests/legalize-tf-assert.mlir

    func.func @preserve_assert(%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: preserve_assert
      // CHECK: tfl.less_equal
      // CHECK: Assert
      // CHECK: return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 14:24:59 UTC 2022
    - 481 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/reorder_assert.mlir

      "tf.Assert"(%cond, %error_message) {device = "/job:localhost/replica:0/task:0/device:CPU:0", summarize = 3 : i64} : (tensor<i1>, tensor<!tf_type.string>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 10:51:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/testprog/cpu-profile.go

    		// than the CPU profiler when filtered to this goroutine via labels.
    		cpuHogger(cpuHog1, &salt1, dur)
    	}()
    
    	trace.Stop()
    	pprof.StopCPUProfile()
    
    	// Summarize the CPU profile to stderr so the test can check against it.
    
    	prof, err := profile.Parse(cpuBuf)
    	if err != nil {
    		log.Fatalf("failed to parse CPU profile: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. docs/batch-jobs/README.md

    USAGE:
      mc batch COMMAND [COMMAND FLAGS | -h] [ARGUMENTS...]
    
    COMMANDS:
      generate  generate a new batch job definition
      start     start a new batch job
      list, ls  list all current batch jobs
      status    summarize job events on MinIO server in real-time
      describe  describe job definition for a job
    ```
    
    ### Generate a job yaml
    ```
    mc batch generate alias/ replicate
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 06 06:00:43 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  5. hack/verify-e2e-test-ownership.sh

        echo "about to  ${results_jq}..."
        cat -n "${results_jq}"
        echo
      fi
      <"${spec_summaries}" jq --slurp --from-file "${results_jq}" > "${results_json}"
    }
    
    # summarize e2e test policy results
    # output to ${summary_json}
    function generate_summary_json() {
      summary_jq=${tmpdir}/summary.jq
      cat >"${summary_jq}" <<EOS
      . as \$results |
      # for each policy category
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    Gradle lets us know the outcome of each task in the console output:
    
    - `FROM-CACHE` - tasks have been fetched from the local build cache.
    - `UP-TO-DATE` - tasks that used incremental build and were not re-run.
    
    To summarize:
    
    1. First, we used the `build` task to populate our local cache with task inputs and outputs -- we can imagine this was done a week ago.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/BuildSummary.java

     */
    package org.apache.maven.execution;
    
    import java.util.Objects;
    
    import org.apache.maven.project.MavenProject;
    
    /**
     * Summarizes the result of a project build in the reactor.
     *
     */
    public abstract class BuildSummary {
    
        /**
         * The project being summarized.
         */
        private final MavenProject project;
    
        /**
         * The build time of the project in milliseconds.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/BuildSuccess.java

    package org.apache.maven.execution;
    
    import org.apache.maven.project.MavenProject;
    
    /**
     * Summarizes the result of a successful project build in the reactor.
     *
     */
    public class BuildSuccess extends BuildSummary {
    
        /**
         * Creates a new build summary for the specified project.
         *
         * @param project The project being summarized, must not be {@code null}.
         * @param time The build time of the project in milliseconds.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/BuildFailure.java

    /**
     * Summarizes the result of a failed project build in the reactor.
     *
     */
    public class BuildFailure extends BuildSummary {
    
        /**
         * The cause of the build failure.
         */
        private final Throwable cause;
    
        /**
         * Creates a new build summary for the specified project.
         *
         * @param project The project being summarized, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. 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)
Back to top