Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 595 for effects (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      llvm::SmallDenseSet<Value, 8> processed_values;
      for (const auto& effect : effects) {
        Value value = effect.getValue();
        found_any_effect = true;
    
        // We only collect value-based side effects here for which we can use
        // resource alias analysis. Other side effects are treated as op-based
        // side effects.
        if (!ShouldUseResourceAliasAnalysis(effect)) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

      }
    
      return nullptr;
    }
    
    // Returns true if the op can have side effects.
    bool TensorFlowDialect::CanHaveSideEffects(Operation *op) {
      // If the op has no memory side effects, it has no side effects
      if (isMemoryEffectFree(op)) return false;
    
      // If the op is marked stateless using the `is_stateless` attribute, then
      // it has no side effects.
      if (auto is_stateless = op->getAttrOfType<BoolAttr>("is_stateless"))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

             */
            <R> Value<R> transform(Transformer<? extends R, ? super T> transformer);
    
            /**
             * Returns a value attaching the given side effect.
             * <p>
             * A {@link #isMissing() missing} value never carries a side effect.
             * If the value is present and already has a side effect, then side effects are composed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h

     public:
      static LogicalResult verifyTrait(Operation* op) {
        if (isMemoryEffectFree(op))
          return op->emitError(
              "operations with no side effects cannot have CannotDuplicate trait");
        return success();
      }
    };
    
    // Trait to indicate an operation cannot be constant folded.
    template <typename ConcreteType>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // SideEffects states whether this webhook has side effects.
      // Acceptable values are: Unknown, None, Some, NoneOnDryRun
      // Webhooks with side effects MUST implement a reconciliation system, since a request may be
      // rejected by a future step in the admission chain and the side effects therefore need to be undone.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // appropriate fallback value (12 in this case) in opt mode. If you
    // need to test that a function has appropriate side-effects in opt
    // mode, include assertions against the side-effects.  A general
    // pattern for this is:
    //
    // EXPECT_DEBUG_DEATH({
    //   // Side-effects here will have an effect after this statement in
    //   // opt mode, but none in debug mode.
    //   EXPECT_EQ(12, DieInDebugOr12(&sideeffect));
    // }, "death");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // SideEffects states whether this webhook has side effects.
      // Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown).
      // Webhooks with side effects MUST implement a reconciliation system, since a request may be
      // rejected by a future step in the admission chain and the side effects therefore need to be undone.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server_linux.go

    	if config.Mode == proxyconfigapi.ProxyModeIPTables {
    		logger.Info("Using iptables Proxier")
    
    		if dualStack {
    			ipt, _ := getIPTables(s.PrimaryIPFamily)
    
    			// TODO this has side effects that should only happen when Run() is invoked.
    			proxier, err = iptables.NewDualStackProxier(
    				ctx,
    				ipt,
    				utilsysctl.New(),
    				exec.New(),
    				config.IPTables.SyncPeriod.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/passes.td

      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def PinOpsWithSideEffectsPass : Pass<"tfl-pin-ops-with-side-effects", "mlir::func::FuncOp"> {
      let summary = "Pin operators with side effects";
      let description = [{
          This transformation pass wraps operations that have or depend on side effects in
          TFL::ControlNodeOp, which depend on the control token generated by the most recent
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/staticinit/sched.go

    		return name, offset, true
    	}
    
    	return nil, 0, false
    }
    
    func isSideEffect(n ir.Node) bool {
    	switch n.Op() {
    	// Assume side effects unless we know otherwise.
    	default:
    		return true
    
    	// No side effects here (arguments are checked separately).
    	case ir.ONAME,
    		ir.ONONAME,
    		ir.OTYPE,
    		ir.OLITERAL,
    		ir.ONIL,
    		ir.OADD,
    		ir.OSUB,
    		ir.OOR,
    		ir.OXOR,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top