Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 794 for mean_t (0.1 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.h

                                    PatternRewriter& rewriter) const override;
    };
    
    // Convert reduce mean 4d to avg pool.
    struct ReduceMeanToAvgPool : public OpRewritePattern<TFL::MeanOp> {
      using OpRewritePattern<TFL::MeanOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TFL::MeanOp mean_op,
                                    PatternRewriter& rewriter) const override;
    };
    
    // Insert Requant ops for reduce_mean.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 03 16:37:16 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. cmd/typed-errors.go

    package cmd
    
    import (
    	"errors"
    )
    
    // errInvalidArgument means that input argument is invalid.
    var errInvalidArgument = errors.New("Invalid arguments specified")
    
    // errMethodNotAllowed means that method is not allowed.
    var errMethodNotAllowed = errors.New("Method not allowed")
    
    // errSignatureMismatch means signature did not match.
    var errSignatureMismatch = errors.New("Signature does not match")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. architecture/networking/controllers.md

    Unfortunately, writing controllers is very error prone, even for seemingly simple cases.
    To work around this, Istio has a variety of abstractions meant to make writing controllers easier.
    
    ## Clients
    
    Istio offers a variety of increasingly high level abstractions on top of the common Kubernetes [`client-go`](https://github.com/kubernetes/client-go).
    
    ```mermaid
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/artifact/MavenArtifactProperties.java

        public static final String INCLUDES_DEPENDENCIES = "includesDependencies";
    
        /**
         * A boolean flag indicating whether the artifact is meant to be used for the compile/runtime/test build path of a
         * consumer project.
         * <p>
         * Note: This property is about "build path", whatever it means in the scope of the consumer project. It is NOT
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/artifact/MavenArtifactProperties.java

        public static final String INCLUDES_DEPENDENCIES = "includesDependencies";
    
        /**
         * A boolean flag indicating whether the artifact is meant to be used for the compile/runtime/test build path of a
         * consumer project.
         * <p>
         * Note: This property is about "build path", whatever it means in the scope of the consumer project. It is NOT
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/bcache/cache.go

    // Instead, at the start of each GC, the cache is cleared entirely. That
    // is, the cache is lossy, and the loss happens at the start of each GC.
    // This means that clients need to be able to cope with cache entries
    // disappearing, but it also means that clients don't need to worry about
    // cache entries keeping the keys from being collected.
    type Cache[K, V any] struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/RunNotifierWrapper.java

            // Not meant to be called by a client
            throw new UnsupportedOperationException();
        }
    
        @Override
        public void fireTestRunFinished(Result result) {
            // Not meant to be called by a client
            throw new UnsupportedOperationException();
        }
    
        @Override
        public void addFirstListener(RunListener listener) {
            // Not meant to be called by a client
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. LICENSES/third_party/forked/shell2junit/LICENSE

    http://www.apache.org/licenses/ 
    
    1. Definitions.
    
    "License" shall mean the terms and conditions for use, reproduction, and 
    distribution as defined by Sections 1 through 9 of this document. 
    
    "Licensor" shall mean the copyright owner or entity authorized by the 
    copyright owner that is granting the License. 
    
    "Legal Entity" shall mean the union of the acting entity and all other 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 11:48:19 UTC 2021
    - 9.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRoles.java

        public static final ConfigurationRole LEGACY = createNonDeprecatedRole("Legacy", true, true, true);
    
        /**
         * Meant to be used only for consumption by other projects.
         */
        public static final ConfigurationRole CONSUMABLE = createNonDeprecatedRole("Consumable", true, false, false);
    
        /**
         * Meant to be used only for resolving dependencies.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla_passes.h

     public:
      Tf2XlaTypeConverter();
    };
    
    /// Adds the TF to XLA via TF2XLA rewrite patterns to the pattern list.
    /// `prefer_tf2xla` means an op will be included iff it is not in
    /// `MlirLegalizedUnderPreferTf2XlaSet`. `!prefer_tf2xla` mean an op will be
    /// included if there is no native MLIR legalization for the op.
    void PopulateLegalizeTfWithTf2XlaPatterns(llvm::StringRef device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top