Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for correctness (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

                                                    absl::StrCat("_func_", name));
    
      // This preserves the order of the ops that was in the original parent
      // funtion. This is critical for preserving correctness in the presence of
      // resource variables and stateful functions.
      std::vector<Operation*> topological_order;
      for (Operation& op : parent_func.getOps())
        if (ops.contains(&op)) topological_order.push_back(&op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ServiceManager.java

     * mechanism.
     *
     * <p>While it is recommended that service lifecycles be managed via this class, state transitions
     * initiated via other mechanisms do not impact the correctness of its methods. For example, if the
     * services are started by some mechanism besides {@link #startAsync}, the listeners will be invoked
     * when appropriate and {@link #awaitHealthy} will still work as expected.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. src/go/types/infer.go

    	// Substitute type arguments for their respective type parameters in params,
    	// if any. Note that nil targs entries are ignored by check.subst.
    	// We do this for better error messages; it's not needed for correctness.
    	// For instance, given:
    	//
    	//   func f[P, Q any](P, Q) {}
    	//
    	//   func _(s string) {
    	//           f[int](s, s) // ERROR
    	//   }
    	//
    	// With substitution, we get the error:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/infer.go

    	// Substitute type arguments for their respective type parameters in params,
    	// if any. Note that nil targs entries are ignored by check.subst.
    	// We do this for better error messages; it's not needed for correctness.
    	// For instance, given:
    	//
    	//   func f[P, Q any](P, Q) {}
    	//
    	//   func _(s string) {
    	//           f[int](s, s) // ERROR
    	//   }
    	//
    	// With substitution, we get the error:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/module/module.go

    func escapeString(s string) (escaped string, err error) {
    	haveUpper := false
    	for _, r := range s {
    		if r == '!' || r >= utf8.RuneSelf {
    			// This should be disallowed by CheckPath, but diagnose anyway.
    			// The correctness of the escaping loop below depends on it.
    			return "", fmt.Errorf("internal error: inconsistency in EscapePath")
    		}
    		if 'A' <= r && r <= 'Z' {
    			haveUpper = true
    		}
    	}
    
    	if !haveUpper {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

      // Tolerance level from the quantized value for verification. If the tolerance
      // is very small(<0.1), only the stats of the diff is displayed.
      float error_tolerance = 5.0f;
    
      // Whether to verify numerical correctness layer by layer or by whole model
      bool whole_model_verify = false;
    
      // Whether to enable log for failures
      bool log_if_failed_flag = false;
    };
    
    // Used in TFL Quantize Pass
    struct QuantPassSpec {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. src/crypto/internal/mlkem768/mlkem768.go

    //
    // [Kyber version 3.0]: https://pq-crystals.org/kyber/data/kyber-specification-round3-20210804.pdf
    // [NIST FIPS 203 ipd]: https://doi.org/10.6028/NIST.FIPS.203.ipd
    package mlkem768
    
    // This package targets security, correctness, simplicity, readability, and
    // reviewability as its primary goals. All critical operations are performed in
    // constant time.
    //
    // Variable and function names, as well as code layout, are selected to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  8. src/go/types/stmt.go

    		check.simpleStmt(s.Init)
    
    		// A type switch guard must be of the form:
    		//
    		//     TypeSwitchGuard = [ identifier ":=" ] PrimaryExpr "." "(" "type" ")" .
    		//
    		// The parser is checking syntactic correctness;
    		// remaining syntactic errors are considered AST errors here.
    		// TODO(gri) better factoring of error handling (invalid ASTs)
    		//
    		var lhs *ast.Ident // lhs identifier or nil
    		var rhs ast.Expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. cmd/erasure-multipart.go

    			// requests. xl.meta is the authoritative source of truth on which parts constitute
    			// the object. The presence of parts that don't belong in the object doesn't affect correctness.
    			_ = storageDisks[index].Delete(context.TODO(), minioMetaMultipartBucket, curpartPath, DeleteOptions{
    				Recursive: false,
    				Immediate: false,
    			})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. src/math/big/nat.go

    //          which assumes that (nat) slice capacities are never
    //          changed (no 3-operand slice expressions). If that
    //          changes, alias needs to be updated for correctness.
    
    package big
    
    import (
    	"internal/byteorder"
    	"math/bits"
    	"math/rand"
    	"sync"
    )
    
    // An unsigned integer x of the form
    //
    //	x = x[n-1]*_B^(n-1) + x[n-2]*_B^(n-2) + ... + x[1]*_B + x[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
Back to top