Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for contradiction (0.32 sec)

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

    // efficient.
    type factsTable struct {
    	// unsat is true if facts contains a contradiction.
    	//
    	// Note that the factsTable logic is incomplete, so if unsat
    	// is false, the assertions in factsTable could be satisfiable
    	// *or* unsatisfiable.
    	unsat      bool // true if facts contains a contradiction
    	unsatDepth int  // number of unsat checkpoints
    
    	facts map[pair]relation // current known set of relation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. src/math/big/natdiv.go

    arrive at the idea of doing those exact calculations. Nowhere is it mentioned
    that this test extends the 2-by-1 guess into a 3-by-2 guess. The proof of the
    Good Guess Guarantee is only for the 2-by-1 guess and argues by contradiction,
    making it difficult to understand how modifications like adding another digit
    or adjusting the quotient range affects the overall bound.
    
    All that said, Knuth remains the canonical reference. It is dense but packed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

        if (!isa<func::FuncOp, IfOp, WhileOp>(contraction->getParentOp())) {
          return rewriter.notifyMatchFailure(
              contraction,
              "fused operation must be nested inside a function, If or While");
        }
    
        // If the contraction is used in multiple places, fusing it will only create
        // more contraction nodes, which is slower.
        if (!contraction.getResult().hasOneUse())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/fold_broadcast.cc

            const int y_col =
                !matmul_op.getAdjY() ? shape_y.back() : *(shape_y.rbegin() + 1);
    
            // Checks that matrix multiply can perform a valid contraction.
            if (x_col != y_row) {
              result_shape.clear();
              return false;
            }
    
            result_shape.push_back(x_row);
            result_shape.push_back(y_col);
            return true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. ChangeLog.md

    - [`KT-65255`](https://youtrack.jetbrains.com/issue/KT-65255) K2 / KJS: "IllegalArgumentException: Candidate is not successful, but system has no contradiction"
    - [`KT-65195`](https://youtrack.jetbrains.com/issue/KT-65195) K2: Unexpected exception when executing dynamic array element inc/dec
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  6. src/math/big/nat.go

    	//
    	// since all the yi for i > 1 are 0 by choice of k: If any of them
    	// were > 0, then yh >= b^2 and thus y >= b^2. Then k' = k*2 would
    	// be a larger valid threshold contradicting the assumption about k.
    	//
    	if k < n || m != n {
    		tp := getNat(3 * k)
    		t := *tp
    
    		// add x0*y1*b
    		x0 := x0.norm()
    		y1 := y[k:]       // y1 is normalized because y is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let hasVerifier = 1;
    }
    
    def TF_EinsumOp : TF_Op<"Einsum", [Pure]> {
      let summary = [{
    Tensor contraction according to Einstein summation convention.
      }];
    
      let description = [{
    Implements generalized Tensor contraction and reduction. Each input Tensor must
    have a corresponding input subscript appearing in the comma-separated left-hand
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				required("spec", "validation", "openAPIV3Schema", "properties[spanning-defaults-with-missing-typemeta]", "default", "embedded", "kind"),
    			},
    		},
    		{
    			name: "contradicting meta field types",
    			resource: &apiextensions.CustomResourceDefinition{
    				ObjectMeta: metav1.ObjectMeta{Name: "plural.group.com"},
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    					Group:    "group.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  9. RELEASE.md

            `batch_dims` case.
        *   Removing of dtype in the constructor of initializers and partition_info
            in call.
        *   Add `tf.math.nextafter` op.
        *   Turn on MKL-DNN contraction kernels by default. MKL-DNN dynamically
            dispatches the best kernel implementation based on CPU vector
            architecture. To disable them, build with
            `--define=tensorflow_mkldnn_contraction_kernel=0`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top