Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Cmp (0.17 sec)

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

    			cmp := v_0.Args[0]
    			b.resetWithControl(Block386GE, cmp)
    			return true
    		}
    		// match: (If (SETEQ cmp) yes no)
    		// result: (EQ cmp yes no)
    		for b.Controls[0].Op == Op386SETEQ {
    			v_0 := b.Controls[0]
    			cmp := v_0.Args[0]
    			b.resetWithControl(Block386EQ, cmp)
    			return true
    		}
    		// match: (If (SETNE cmp) yes no)
    		// result: (NE cmp yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    	typ := &b.Func.Config.Types
    	// match: (FGreaterEqual cmp)
    	// result: (OR (SETBC [2] cmp) (SETBC [1] cmp))
    	for {
    		cmp := v_0
    		v.reset(OpPPC64OR)
    		v0 := b.NewValue0(v.Pos, OpPPC64SETBC, typ.Int32)
    		v0.AuxInt = int32ToAuxInt(2)
    		v0.AddArg(cmp)
    		v1 := b.NewValue0(v.Pos, OpPPC64SETBC, typ.Int32)
    		v1.AuxInt = int32ToAuxInt(1)
    		v1.AddArg(cmp)
    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteARM.go

    			b.swapSuccessors()
    			return true
    		}
    		// match: (EQ (InvertFlags cmp) yes no)
    		// result: (EQ cmp yes no)
    		for b.Controls[0].Op == OpARMInvertFlags {
    			v_0 := b.Controls[0]
    			cmp := v_0.Args[0]
    			b.resetWithControl(BlockARMEQ, cmp)
    			return true
    		}
    		// match: (EQ (CMP x (RSBconst [0] y)))
    		// result: (EQ (CMN x y))
    		for b.Controls[0].Op == OpARMCMP {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  4. 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)
  5. pkg/apis/core/validation/validation.go

    package validation
    
    import (
    	"encoding/json"
    	"fmt"
    	"math"
    	"net"
    	"path"
    	"path/filepath"
    	"reflect"
    	"regexp"
    	"strings"
    	"sync"
    	"unicode"
    	"unicode/utf8"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/api/resource"
    	apimachineryvalidation "k8s.io/apimachinery/pkg/api/validation"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

        // CHECK-NEXT: %[[LEAKY:.*]] = mhlo.multiply %[[INP:.*]], %[[ALPHA]] : tensor<1x4x4x3xf32>
        // CHECK-NEXT: %[[CMP:.*]] = mhlo.compare GT, %[[INP]], %[[ZERO]], NOTYPE : (tensor<1x4x4x3xf32>, tensor<1x4x4x3xf32>) -> tensor<1x4x4x3xi1>
        // CHECK-NEXT: %[[RES:.*]] = mhlo.select %[[CMP]], %[[INP]], %[[LEAKY]] : tensor<1x4x4x3xi1>, tensor<1x4x4x3xf32>
        // CHECK-NEXT: return %[[RES]] : tensor<1x4x4x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteS390X.go

    	v_0 := v.Args[0]
    	// match: (LOCGR {c} x y (InvertFlags cmp))
    	// result: (LOCGR {c.ReverseComparison()} x y cmp)
    	for {
    		c := auxToS390xCCMask(v.Aux)
    		x := v_0
    		y := v_1
    		if v_2.Op != OpS390XInvertFlags {
    			break
    		}
    		cmp := v_2.Args[0]
    		v.reset(OpS390XLOCGR)
    		v.Aux = s390xCCMaskToAux(c.ReverseComparison())
    		v.AddArg3(x, y, cmp)
    		return true
    	}
    	// match: (LOCGR {c} _ x (FlagEQ))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage_test.go

    limitations under the License.
    */
    
    package storage
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"reflect"
    	stdruntime "runtime"
    	"strings"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // offset is max_diag_len - diag_len_d if we're padding, 0 otherwise.
        Value cmp;
        if (subdiagonal_align == kRight && superdiagonal_align == kRight) {
          cmp = b_true;
        } else if (superdiagonal_align == kRight) {
          // offset = d>=0 ? max_diag_len - diag_len_d : 0
          cmp = rewriter.create<TF::GreaterEqualOp>(loc, d, b_zero);
        } else if (subdiagonal_align == kRight) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	BCLA:           "bcla",
    	BCCTR:          "bcctr",
    	BCCTRL:         "bcctrl",
    	BCLR:           "bclr",
    	BCLRL:          "bclrl",
    	CMPW:           "cmpw",
    	CMPD:           "cmpd",
    	CMP:            "cmp",
    	CMPWI:          "cmpwi",
    	CMPDI:          "cmpdi",
    	CMPI:           "cmpi",
    	CMPLW:          "cmplw",
    	CMPLD:          "cmpld",
    	CMPL:           "cmpl",
    	CMPLWI:         "cmplwi",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
Back to top