Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for SYMMETRIC (0.11 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    }
    
    table LeakyReluOptions {
      alpha:float;
    }
    
    table SquaredDifferenceOptions {
    }
    
    enum MirrorPadMode : byte {
      // Doesn't include borders.
      REFLECT = 0,
      // Includes borders.
      SYMMETRIC = 1,
    }
    
    table MirrorPadOptions {
      mode:MirrorPadMode;
    }
    
    table UniqueOptions {
      idx_out_type:TensorType = INT32;
    }
    
    table ReverseV2Options {
    }
    
    table AddNOptions {
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Range.java

       * {@linkplain #intersection intersection} (as a single, possibly-empty range) if and only if this
       * method returns {@code true}.
       *
       * <p>The connectedness relation is both reflexive and symmetric, but does not form an {@linkplain
       * Equivalence equivalence relation} as it is not transitive.
       *
       * <p>Note that certain discrete ranges are not considered connected, even though there are no
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Range.java

       * {@linkplain #intersection intersection} (as a single, possibly-empty range) if and only if this
       * method returns {@code true}.
       *
       * <p>The connectedness relation is both reflexive and symmetric, but does not form an {@linkplain
       * Equivalence equivalence relation} as it is not transitive.
       *
       * <p>Note that certain discrete ranges are not considered connected, even though there are no
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. src/internal/trace/gc.go

    	}
    
    	// Add final 0 utilization event to any remaining series. This
    	// is important to mark the end of the trace. The exact value
    	// shouldn't matter since no window should extend beyond this,
    	// but using 0 is symmetric with the start of the trace.
    	mu := MutatorUtil{int64(lastEv.Time()), 0}
    	for i := range ps {
    		out[ps[i].series] = addUtil(out[ps[i].series], mu)
    	}
    	return out
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. src/go/types/unify.go

    			u.tracef("depth %d >= %d", u.depth, unificationDepthLimit)
    		}
    		if panicAtUnificationDepthLimit {
    			panic("unification reached recursion depth limit")
    		}
    		return false
    	}
    
    	// Unification is symmetric, so we can swap the operands.
    	// Ensure that if we have at least one
    	// - defined type, make sure one is in y
    	// - type parameter recorded with u, make sure one is in x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema.fbs

      alpha:float;
    }
    
    table SquaredDifferenceOptions {
    }
    
    // LINT.IfChange
    enum MirrorPadMode : byte {
      // Doesn't include borders.
      REFLECT = 0,
      // Includes borders.
      SYMMETRIC = 1,
    }
    // LINT.ThenChange(//tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td)
    
    table MirrorPadOptions {
      mode:MirrorPadMode;
    }
    
    table UniqueOptions {
      idx_out_type:TensorType = INT32;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/unify.go

    			u.tracef("depth %d >= %d", u.depth, unificationDepthLimit)
    		}
    		if panicAtUnificationDepthLimit {
    			panic("unification reached recursion depth limit")
    		}
    		return false
    	}
    
    	// Unification is symmetric, so we can swap the operands.
    	// Ensure that if we have at least one
    	// - defined type, make sure one is in y
    	// - type parameter recorded with u, make sure one is in x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

      func.func @mirror_pad(%arg0: tensor<2x3xcomplex<f64>>) -> tensor<4x7xcomplex<f64>> {
        %0 = mhlo.constant dense<[[1, 1], [2, 2]]> : tensor<2x2xi32>
        // CHECK-NOT: tf.MirrorPad
        %1 = "tf.MirrorPad"(%arg0, %0) {mode = "SYMMETRIC"} : (tensor<2x3xcomplex<f64>>, tensor<2x2xi32>) -> tensor<4x7xcomplex<f64>>
        func.return %1 : tensor<4x7xcomplex<f64>>
      }
    
      // CHECK-LABEL: bucketize
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
  9. src/math/big/float.go

    // but using the sign of z for rounding the result.
    // x and y must have a non-empty mantissa and valid exponent.
    func (z *Float) usub(x, y *Float) {
    	// This code is symmetric to uadd.
    	// We have not factored the common code out because
    	// eventually uadd (and usub) should be optimized
    	// by special-casing, and the code will diverge.
    
    	if debugFloat {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top