Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for conservatively (0.37 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

            &effects) {
      effects.reserve(2 * getArgs().size() + 1);
      effects.emplace_back(MemoryEffects::Write::get(),
                           ResourceEffects::TPUExecute::get());
    
      // Conservatively mark resource handles as read and write, as without
      // analyzing TPUCompile, there is not sufficient information to determine
      // effects on resources. For the MLIR bridge, this op will never be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // refines the element shape if all tensors written to the list across all
      // mutations have identical static shape.
      bool InferShapeForTensorListInitOps(Operation* op);
    
      // Conservatively infers shape of output tenorlist and item based on
      // input tensorlist's element shape.
      bool InferShapeForTensorListPopBackOp(TensorListPopBackOp op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        if (tensor_info.has_tensor_shape()) {
          array_info.shape = tensor_info.tensor_shape();
        } else {
          // If there is no tensor shape in the tensor info, conservatively set
          // unknown_rank to true.
          array_info.shape.set_unknown_rank(true);
        }
    
        results.insert(std::pair<std::string, ArrayInfo>(std::move(name),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    //    (note that returning `std::nullopt` here signals exactly that).
    // 3) If `is_stateless` is false and no ordering token is present, then we treat
    //    the op conservatively which means that different op instances need
    //    dependencies. This is realized by always returning the same string ("")
    //    in this case. In fact, we could return any string here, as long as it is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    // Notable members of the hall of shame include:
    //   - gvisor.dev/gvisor
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname wakep
    func wakep() {
    	// Be conservative about spinning threads, only start one if none exist
    	// already.
    	if sched.nmspinning.Load() != 0 || !sched.nmspinning.CompareAndSwap(0, 1) {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    			t.As = ADWORD
    			sz = 8
    		} // else store 32-bit
    	} else if p.As == AMOVD && a.Type != obj.TYPE_MEM || cls == C_ADDR || cls == C_VCON || lit != int64(int32(lit)) || uint64(lit) != uint64(uint32(lit)) {
    		// conservative: don't know if we want signed or unsigned extension.
    		// in case of ambiguity, store 64-bit
    		t.As = ADWORD
    		sz = 8
    	}
    
    	t.To.Type = obj.TYPE_CONST
    	t.To.Offset = lit
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

       */
      static final int MAXIMUM_CAPACITY = 1 << 30;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
      /** Number of (unsynchronized) retries in the containsValue method. */
      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	var argLen int
    	for _, arg := range cmd.Args {
    		argLen += len(arg)
    	}
    
    	// If we're not approaching 32KB of args, just pass args normally.
    	// (use 30KB instead to be conservative; not sure how accounting is done)
    	if !useResponseFile(cmd.Path, argLen) {
    		return
    	}
    
    	tf, err := os.CreateTemp("", "args")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    }
    
    SmallVector<Region*> WhileOp::getLoopRegions() { return {&getBody()}; }
    
    bool WhileOp::isDefinedOutsideOfLoop(Value value) {
      // TODO(jpienaar): This is to overly conservative and disables anything other
      // than constant hoisting initially.
      return false;
    }
    
    //===----------------------------------------------------------------------===//
    // LogisticOp
    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. guava/src/com/google/common/cache/LocalCache.java

       */
      static final int MAXIMUM_CAPACITY = 1 << 30;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
      /** Number of (unsynchronized) retries in the containsValue method. */
      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top