Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cmpi (0.04 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	BCLR:           "bclr",
    	BCLRL:          "bclrl",
    	CMPW:           "cmpw",
    	CMPD:           "cmpd",
    	CMP:            "cmp",
    	CMPWI:          "cmpwi",
    	CMPDI:          "cmpdi",
    	CMPI:           "cmpi",
    	CMPLW:          "cmplw",
    	CMPLD:          "cmpld",
    	CMPL:           "cmpl",
    	CMPLWI:         "cmplwi",
    	CMPLDI:         "cmpldi",
    	CMPLI:          "cmpli",
    	CNTLZW:         "cntlzw",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-DAG: [[CMP3:%.+]] = chlo.broadcast_compare %arg1, [[ZEROS2]] {comparison_direction = #chlo<comparison_direction LT>}
      // CHECK-DAG: [[CMP4:%.+]] = chlo.broadcast_compare [[CMP2]], [[CMP3]] {broadcast_dimensions = array<i64: 1>, comparison_direction = #chlo<comparison_direction NE>}
      // CHECK-DAG: [[AND:%.+]] = chlo.broadcast_and [[CMP1]], [[CMP4]]
      // CHECK-DAG: [[ONES:%.+]] = mhlo.constant dense<1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    			kind = ssa.BoundsSlice3CU
    		}
    	}
    
    	var cmp *ssa.Value
    	if kind == ssa.BoundsIndex || kind == ssa.BoundsIndexU {
    		cmp = s.newValue2(ssa.OpIsInBounds, types.Types[types.TBOOL], idx, len)
    	} else {
    		cmp = s.newValue2(ssa.OpIsSliceInBounds, types.Types[types.TBOOL], idx, len)
    	}
    	b := s.endBlock()
    	b.Kind = ssa.BlockIf
    	b.SetControl(cmp)
    	b.Likely = ssa.BranchLikely
    	b.AddEdgeTo(bNext)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top