Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GreaterEqual (0.16 sec)

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

    }
    func rewriteValuePPC64_OpPPC64GreaterEqual(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (GreaterEqual (FlagEQ))
    	// result: (MOVDconst [1])
    	for {
    		if v_0.Op != OpPPC64FlagEQ {
    			break
    		}
    		v.reset(OpPPC64MOVDconst)
    		v.AuxInt = int64ToAuxInt(1)
    		return true
    	}
    	// match: (GreaterEqual (FlagLT))
    	// result: (MOVDconst [0])
    	for {
    		if v_0.Op != OpPPC64FlagLT {
    			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)
  2. src/cmd/compile/internal/ssa/rewriteARM.go

    	v_0 := v.Args[0]
    	// match: (GreaterEqual (FlagConstant [fc]))
    	// result: (MOVWconst [b2i32(fc.ge())])
    	for {
    		if v_0.Op != OpARMFlagConstant {
    			break
    		}
    		fc := auxIntToFlagConstant(v_0.AuxInt)
    		v.reset(OpARMMOVWconst)
    		v.AuxInt = int32ToAuxInt(b2i32(fc.ge()))
    		return true
    	}
    	// match: (GreaterEqual (InvertFlags x))
    	// result: (LessEqual x)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK-SAME:                        %[[VAL_0:.*]]: tensor<2xi32>,
    // CHECK-SAME:                        %[[VAL_1:.*]]: tensor<2xi32>) -> tensor<2xi1> {
    // CHECK:           %[[VAL_2:.*]] = "tf.GreaterEqual"(%[[VAL_0]], %[[VAL_1]]) : (tensor<2xi32>, tensor<2xi32>) -> tensor<2xi1>
    // CHECK:           return %[[VAL_2]] : tensor<2xi1>
    // CHECK:         }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      func.return %0 : tensor<bf16>
    }
    
    func.func private @ge_select(%arg0: tensor<bf16>, %arg1: tensor<bf16>) -> tensor<i1> {
      %0 = "tf.GreaterEqual"(%arg0, %arg1) {device = ""} : (tensor<bf16>, tensor<bf16>) -> tensor<i1>
      func.return %0 : tensor<i1>
    }
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top