Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for conservative (0.41 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                  TensorListLengthOp, TensorListGetItemOp>(use.getOwner()))
            continue;
    
          // For any other unknown users of the TensorList, we are conservative and
          // stop element shape inference.
          DCOMMENT("TensorListType infer, unknown op " << *use.getOwner());
          return false;
        }
      }
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        ++i;
      }
      if (i >= kMaxIterationCount) {
        LOG(WARNING) << "Graph shapes did not converge to a fixpoint within "
                     << kMaxIterationCount
                     << " iterations. Graph shapes may be conservative.";
      }
      VLOG(1) << "Graph shapes were inferred with " << (i - 1)
              << " extra rounds of analysis to reach a fixpoint.";
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/net/http/server.go

    	srv.nextProtoOnce.Do(srv.onceSetNextProtoDefaults)
    	return srv.nextProtoErr
    }
    
    // setupHTTP2_Serve is called from (*Server).Serve and conditionally
    // configures HTTP/2 on srv using a more conservative policy than
    // setupHTTP2_ServeTLS because Serve is called after tls.Listen,
    // and may be called concurrently. See shouldConfigureHTTP2ForServe.
    //
    // The tests named TestTransportAutomaticHTTP2* and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    // Obviously args beginning with - are not safe (they look like flags).
    // Less obviously, args beginning with @ are not safe (they look like
    // GNU binutils flagfile specifiers, sometimes called "response files").
    // To be conservative, we reject almost any arg beginning with non-alphanumeric ASCII.
    // We accept leading . _ and / as likely in file system paths.
    // There is a copy of this function in cmd/compile/internal/gc/noder.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top