Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for _Equal (0.15 sec)

  1. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %103 = "tf.Sub"(%102, %13) {device = ""} : (tensor<i64>, tensor<i64>) -> tensor<i64>
      %104 = "tf.Equal"(%103, %13) {device = "", incompatible_shape_error = true} : (tensor<i64>, tensor<i64>) -> tensor<i1>
      %105 = "tf.LogicalOr"(%104, %2) {device = ""} : (tensor<i1>, tensor<i1>) -> tensor<i1>
      %106 = "tf.Equal"(%103, %13) {device = "", incompatible_shape_error = true} : (tensor<i64>, tensor<i64>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    		// cond: x == y && c&s390x.Equal != 0
    		// result: (First yes no)
    		for {
    			x := b.Controls[0]
    			y := b.Controls[1]
    			c := auxToS390xCCMask(b.Aux)
    			if !(x == y && c&s390x.Equal != 0) {
    				break
    			}
    			b.Reset(BlockFirst)
    			return true
    		}
    		// match: (CGRJ {c} x y yes no)
    		// cond: x == y && c&s390x.Equal == 0
    		// result: (First no yes)
    		for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    		[6]*argField{ap_VecReg_6_10, ap_VecReg_11_15, ap_VecReg_16_20}},
    	{VCMPNEHCC, 0xfc0007ff00000000, 0x1000044700000000, 0x0, // Vector Compare Not Equal Halfword VC-form (vcmpneh. VRT,VRA,VRB)
    		[6]*argField{ap_VecReg_6_10, ap_VecReg_11_15, ap_VecReg_16_20}},
    	{VCMPNEW, 0xfc0007ff00000000, 0x1000008700000000, 0x0, // Vector Compare Not Equal Word VC-form (vcmpnew VRT,VRA,VRB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %1 = "tfl.equal"(%arg0, %cst) : (tensor<?xi32>, tensor<10xi32>) -> tensor<?x10xi1>
      %2 = "tfl.cast"(%1) : (tensor<?x10xi1>) -> tensor<?x10xf32>
      func.return %2 : tensor<?x10xf32>
    
      // CHECK-DAG: %[[CST:.*]] = arith.constant dense<[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]> : tensor<10xi32>
      // CHECK: %[[EQUAL:.*]] = "tfl.equal"(%arg0, %[[CST]]) : (tensor<?xi32>, tensor<10xi32>) -> tensor<?x10xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  5. doc/go_spec.html

    <p>
    Comparison operators compare two operands and yield an untyped boolean value.
    </p>
    
    <pre class="grammar">
    ==    equal
    !=    not equal
    &lt;     less
    &lt;=    less or equal
    &gt;     greater
    &gt;=    greater or equal
    </pre>
    
    <p>
    In any comparison, the first operand
    must be <a href="#Assignability">assignable</a>
    to the type of the second operand, or vice versa.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    // 1. The old pvc's StorageClassAnnotation is set
    // 2. The old pvc's StorageClassName is not set
    // 3. The new pvc's StorageClassName is set and equal to the old value in annotation
    // 4. If the new pvc's StorageClassAnnotation is set,it must be equal to the old pv/pvc's StorageClassAnnotation
    func validateStorageClassUpgradeFromAnnotation(oldAnnotations, newAnnotations map[string]string, oldScName, newScName *string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier_test.go

    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    			out, err := parseIPTablesData(tc.input)
    			if err == nil {
    				if tc.error != "" {
    					t.Errorf("unexpectedly did not get error")
    				} else {
    					assert.Equal(t, tc.output, out)
    				}
    			} else {
    				if tc.error == "" {
    					t.Errorf("got unexpected error: %v", err)
    				} else if !strings.HasPrefix(err.Error(), tc.error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewritePPC64.go

    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    	// match: (Equal (FlagGT))
    	// result: (MOVDconst [0])
    	for {
    		if v_0.Op != OpPPC64FlagGT {
    			break
    		}
    		v.reset(OpPPC64MOVDconst)
    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    	// match: (Equal (InvertFlags x))
    	// result: (Equal x)
    	for {
    		if v_0.Op != OpPPC64InvertFlags {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

      %2 = "mhlo.floor"(%1) : (tensor<2x3xf16>) -> tensor<2x3xf16>
      func.return %2 : tensor<2x3xf16>
    }
    
    // CHECK-LABEL:   func @equal(
    // CHECK-SAME:                %[[VAL_0:.*]]: tensor<2xi32>,
    // CHECK-SAME:                %[[VAL_1:.*]]: tensor<2xi32>) -> tensor<2xi1> {
    // CHECK:           %[[VAL_2:.*]] = "tf.Equal"(%[[VAL_0]], %[[VAL_1]]) <{incompatible_shape_error = true}> : (tensor<2xi32>, tensor<2xi32>) -> tensor<2xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // for the cases where a 1D tensor must be broadcast along a specific feature
    // dimension, which can vary based on data layout, etc.
    //
    // The extent of `broadcast_from` dim0 must be equal to the extent of the
    // feature_dim of `broadcast_to`.
    //
    // Example:
    //   [1x2x3x4], [2], 1 -> [1x2x3x4]
    // TODO(laurenzo): Swap the order of broadcast_to and broadcast_from for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top