Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 159 for conservative (0.25 sec)

  1. src/cmd/compile/internal/ssa/debug_test.go

    	return s
    }
    
    // escape inserts escapes appropriate for use in a shell command line
    func escape(s string) string {
    	s = strings.Replace(s, "\\", "\\\\", -1)
    	s = strings.Replace(s, "'", "\\'", -1)
    	// Conservative guess at characters that will force quoting
    	if strings.ContainsAny(s, "\\ ;#*&$~?!|[]()<>{}`") {
    		s = " '" + s + "'"
    	} else {
    		s = " " + s
    	}
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. src/go/types/decl.go

    	var mset objset
    
    	// spec: "If the base type is a struct type, the non-blank method
    	// and field names must be distinct."
    	base := asNamed(obj.typ) // shouldn't fail but be conservative
    	if base != nil {
    		assert(base.TypeArgs().Len() == 0) // collectMethods should not be called on an instantiated type
    
    		// See go.dev/issue/52529: we must delay the expansion of underlying here, as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/compile/internal/types2/decl.go

    	var mset objset
    
    	// spec: "If the base type is a struct type, the non-blank method
    	// and field names must be distinct."
    	base := asNamed(obj.typ) // shouldn't fail but be conservative
    	if base != nil {
    		assert(base.TypeArgs().Len() == 0) // collectMethods should not be called on an instantiated type
    
    		// See go.dev/issue/52529: we must delay the expansion of underlying here, as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. src/runtime/asm_s390x.s

    	// Stores are already ordered on s390x, so this is just a
    	// compile barrier.
    	RET
    
    // This is called from .init_array and follows the platform, not Go, ABI.
    // We are overly conservative. We could only save the registers we use.
    // However, since this function is only called once per loaded module
    // performance is unimportant.
    TEXT runtime·addmoduledata(SB),NOSPLIT|NOFRAME,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. src/go/types/unify.go

    					// the more general interface. But if one of them is a defined
    					// type, it's not clear how to choose and whether we introduce
    					// an order dependency or not. Requiring the same method set
    					// is conservative.
    					if len(xi.typeSet().methods) != len(yi.typeSet().methods) {
    						return false
    					}
    				} else if xi != nil || yi != nil {
    					// One but not both of them are interfaces.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/compile/internal/types2/unify.go

    					// the more general interface. But if one of them is a defined
    					// type, it's not clear how to choose and whether we introduce
    					// an order dependency or not. Requiring the same method set
    					// is conservative.
    					if len(xi.typeSet().methods) != len(yi.typeSet().methods) {
    						return false
    					}
    				} else if xi != nil || yi != nil {
    					// One but not both of them are interfaces.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

            // XLA does not support Const nodes of Variant type since it needs
            // to know the original ops to be able to compile them to the relevant
            // XLA form.
            // TODO(srbs): This filter is a little conservative. E.g. a subgraph of
            // the form:
            //                          Const
            //                            |
            // EmptyTensorList -> TensorListPushBack -> TensorListPopBack -> Op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/plive.go

    		//  3. GC occurs within F itself.  This has to be from preemption, and thus GC is conservative.
    		//     a. X is in a register -- then X is seen, and the spill slot is also scanned conservatively.
    		//     b. X is spilled -- the spill slot is initialized, and scanned conservatively
    		//     c. X is not live -- the spill slot is scanned conservatively, and it may contain X from an earlier spill.
    		//  4. GC within G, transitively called from F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top