Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for Replacer (0.14 sec)

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

        ```
    
        wll be replaced by `_replication_info="cluster"` and  `_xla_compile_device_type="TPU"`.
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    // .... (values and indices only used for %1 and %2)
    //
    // %1 or %2 can be absent. If values and indices are only used here,
    // this pattern can be replaced with (conceptually)
    //
    // %values, %indices = tfl.topkv2(%inputs, k)
    // replace all use of %1 with values
    // replace all use of %2 with indices
    //
    struct OptimizeTopK : public OpRewritePattern<TFL::TopKV2Op> {
      using OpRewritePattern::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // to -f '{{.String}}'.
    //
    // Note that when a module has been replaced, its Replace field
    // describes the replacement module, and its Dir field is set to
    // the replacement's source code, if present. (That is, if Replace
    // is non-nil, then Dir is set to Replace.Dir, with no access to
    // the replaced source code.)
    //
    // The -u flag adds information about available upgrades.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

      }
    
      @CanIgnoreReturnValue
      @Override
      public boolean replace(K key, @CheckForNull V oldValue, V newValue) {
        checkNotNull(key);
        checkNotNull(newValue);
        if (oldValue == null) {
          return false;
        }
        int hash = hash(key);
        return segmentFor(hash).replace(key, hash, oldValue, newValue);
      }
    
      @CheckForNull
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

      }
    
      @CanIgnoreReturnValue
      @Override
      public boolean replace(K key, @CheckForNull V oldValue, V newValue) {
        checkNotNull(key);
        checkNotNull(newValue);
        if (oldValue == null) {
          return false;
        }
        int hash = hash(key);
        return segmentFor(hash).replace(key, hash, oldValue, newValue);
      }
    
      @CheckForNull
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	}
    	c.claims = replace(c.claims, &v)
    	c.openIDConfig = replace(c.openIDConfig, &v)
    	c.options.JWTAuthenticator.Issuer.URL = replace(c.options.JWTAuthenticator.Issuer.URL, &v)
    	c.options.JWTAuthenticator.Issuer.DiscoveryURL = replace(c.options.JWTAuthenticator.Issuer.DiscoveryURL, &v)
    	for claim, response := range c.claimToResponseMap {
    		c.claimToResponseMap[claim] = replace(response, &v)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      Status EmitErrorWithLocationStr(const Node& node, const Status& error_status);
    
      // Inserts a placeholder node in the graph to replace a feed output tensor,
      // and returns the new placeholder node and a boolean indicating if the
      // original input node was removed from the graph. Uses of the feed output
      // tensor are replaced with this placeholder node. If the feed output tensor
      // is of a single output node, the control dependencies are forwarded to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

      else
        sed -i -e "s@{{ *pillar\.get('etcd_version', '\(.*\)') *}}@\1@g" "${temp_file}"
      fi
      # Replace the volume host path.
      sed -i -e "s@/mnt/master-pd/var/etcd@/mnt/disks/master-pd/var/etcd@g" "${temp_file}"
      # Replace the run as user and run as group
      container_security_context=""
      if [[ -n "${ETCD_RUNASUSER:-}" && -n "${ETCD_RUNASGROUP:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        }
    
        // Replace the pack's output to the unpack's input.
        rewriter.replaceOp(pack_op, input_unpack_op.getOperand());
        // At this point, we don't manually remove the redundant pack op & unpack op
        // (we cannot actually), but trust the PatterRewriter to garbage collect
        // these two ops.
        return success();
      }
    };
    
    // Replace PackOp with a reshape when there is only one operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

            if (splatAttrIsZero) {
              // When `y` is a zero splat constant (i.e., all the elements in `y`
              // are zero, replace the op (tf.divNoNan or tf.MulNoNan) with `y`.
              rewriter.replaceOp(op, y);
            } else {
              // When `y` is a non-zero splat constant, replace tf.DivNoNan with
              // tf.Div and tf.MulNoNan with tf.Mul.
              ReplaceTfOpWithNewOp<RetT>(rewriter, op, op->getResult(0).getType(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top