Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for Bridge (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

      (TF_ResourceApplyFtrlV2Op $var, $accum, $linear, $grad, $lr, $l1, $l2,
         (TF_ConstOp (GetScalarOfType<0> $lr_power)), $lr_power, $use_locking, $multiply_linear_by_lr)>;
    
    // TODO(kramm): Remove use_locking. The old bridge doesn't use this, either.
    def DecomposeResourceApplyFtrlV2: Pattern<
      (TF_ResourceApplyFtrlV2Op:$src_op $var, $accum, $linear, $grad, $lr, $l1, $l2,
         $l2_shrinkage, $lr_power, $use_locking, $multiply_linear_by_lr),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # This flag forcibly enables experimental MLIR bridge support.
    config_setting(
        name = "enable_mlir_bridge",
        define_values = {"enable_mlir_bridge": "true"},
        visibility = ["//visibility:public"],
    )
    
    # This flag forcibly disables experimental MLIR bridge support.
    config_setting(
        name = "disable_mlir_bridge",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        Extract the islands containing a TPU cluster computation into an outlined
        function in a nested module. This will allow to run the usual bridge on this
        nested module which now exhibits a more friendly "V2-like" structure.
        This is only intended for V1 compatibility mode where the bridge runs without
        feed/fetches on session create/extend.
    
        So given e.g.
    
        ```mlir
          func @test() -> tensor<i32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

            if (ruleMethod.getTypeParameters().length > 0) {
                problems.add(ruleMethod, "Cannot have type variables (i.e. cannot be a generic method)");
            }
    
            // TODO validations on method: synthetic, bridge methods, varargs, abstract, native
            ModelType<?> returnType = ModelType.returnType(ruleMethod);
            if (returnType.isRawClassOfParameterizedType()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

      for (const auto& device : devices.device_names()) {
        if (device.has_type && device.type == "CPU" && device.id == 0) {
          if (!host_device->empty()) {
            // TODO(hanxiongwang): Remove this warning when TF API to bridge
            // interface is understood.
            LOG(WARNING) << "Found multiple CPU:0 host devices";
            if (device.job == "chief")
              *host_device =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // type` with `tf.XlaLaunch` ops.
    std::unique_ptr<OperationPass<ModuleOp>> CreateXlaRewritePass();
    
    // Create a pass that validates the input graph to the CPU/GPU bridge.
    std::unique_ptr<OperationPass<ModuleOp>> CreateXlaValidateInputsPass();
    }  // namespace TFDevice
    
    namespace TFTPU {
    // Creates a pass that converts unified compilation and replication
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

        iptables -w -t nat -I PREROUTING -p tcp ! -i eth0 -d "${METADATA_SERVER_IP}" --dport 8080 -m comment --comment "metadata-concealment: bridge traffic to metadata server goes to metadata proxy" -j DNAT --to-destination 169.254.169.252:987
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

    import org.apache.maven.artifact.InvalidArtifactRTException;
    import org.apache.maven.artifact.InvalidRepositoryException;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.bridge.MavenRepositorySystem;
    import org.apache.maven.internal.impl.InternalSession;
    import org.apache.maven.internal.impl.resolver.DefaultModelCache;
    import org.apache.maven.internal.impl.resolver.DefaultModelRepositoryHolder;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  9. src/crypto/x509/verify.go

    // Rather than doing a direct byte for byte equivalency check, we check if the
    // subject, public key, and SAN, if present, are equal. This prevents loops that
    // are created by mutual cross-signatures, or other cross-signature bridge
    // oddities.
    func alreadyInChain(candidate *Certificate, chain []*Certificate) bool {
    	type pubKeyEqual interface {
    		Equal(crypto.PublicKey) bool
    	}
    
    	var candidateSAN *pkix.Extension
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/preflight/checks.go

    			IPV6Check = true
    		}
    	}
    
    	if !isSecondaryControlPlane {
    		checks = addCommonChecks(execer, cfg.KubernetesVersion, &cfg.NodeRegistration, checks)
    
    		// Check if Bridge-netfilter and IPv6 relevant flags are set
    		if ip := netutils.ParseIPSloppy(cfg.LocalAPIEndpoint.AdvertiseAddress); ip != nil {
    			if !IPV4Check && netutils.IsIPv4(ip) {
    				IPV4Check = true
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top