Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for selectA (0.18 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-NEXT: %[[SELECT:.*]] = mhlo.select %[[BCAST]], %arg1, %arg2 : tensor<?x?x8xi1>, tensor<?x?x8xi32>
      // CHECK-NEXT: shape.assuming_yield %[[SELECT]] : tensor<?x?x8xi32>
      %0 = "tf.Select"(%arg0, %arg1, %arg2) : (tensor<?xi1>, tensor<?x?x8xi32>, tensor<?x?x8xi32>) -> tensor<?x?x8xi32>
      func.return %0: tensor<?x?x8xi32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:           %[[VAL_3:.*]] = "tf.Select"(%[[VAL_0]], %[[VAL_1]], %[[VAL_2]]) : (tensor<2xi1>, tensor<2xi32>, tensor<2xi32>) -> tensor<2xi32>
    // CHECK:           return %[[VAL_3]] : tensor<2xi32>
    // CHECK:         }
    func.func @select(%arg0: tensor<2xi1>, %arg1: tensor<2xi32>, %arg2: tensor<2xi32>) -> tensor<2xi32> {
      %0 = "mhlo.select"(%arg0, %arg1, %arg2) : (tensor<2xi1>, tensor<2xi32>, tensor<2xi32>) -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	Divisor resource.Quantity
    }
    
    // ConfigMapKeySelector selects a key from a ConfigMap.
    type ConfigMapKeySelector struct {
    	// The ConfigMap to select from.
    	LocalObjectReference
    	// The key to select.
    	Key string
    	// Specify whether the ConfigMap or its key must be defined
    	// +optional
    	Optional *bool
    }
    
    // SecretKeySelector selects a key of a Secret.
    type SecretKeySelector struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// Select all ClusterTrustBundles that match this signer name.
    	// Mutually-exclusive with name.  The contents of all selected
    	// ClusterTrustBundles will be unified and deduplicated.
    	// +optional
    	SignerName *string `json:"signerName,omitempty" protobuf:"bytes,2,rep,name=signerName"`
    
    	// Select all ClusterTrustBundles that match this label selector.  Only has
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewritePPC64.go

    	typ := &b.Func.Config.Types
    	// match: (Select0 (Mul64uhilo x y))
    	// result: (MULHDU x y)
    	for {
    		if v_0.Op != OpMul64uhilo {
    			break
    		}
    		y := v_0.Args[1]
    		x := v_0.Args[0]
    		v.reset(OpPPC64MULHDU)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (Select0 (Add64carry x y c))
    	// result: (Select0 <typ.UInt64> (ADDE x y (Select1 <typ.UInt64> (ADDCconst c [-1]))))
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"name":          "Select a single ClusterTrustBundle by object name.  Mutually-exclusive with signerName and labelSelector.",
    	"signerName":    "Select all ClusterTrustBundles that match this signer name. Mutually-exclusive with name.  The contents of all selected ClusterTrustBundles will be unified and deduplicated.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // A topology selector requirement is a selector that matches given label.
    // This is an alpha feature and may change in the future.
    message TopologySelectorLabelRequirement {
      // The label key that the selector applies to.
      optional string key = 1;
    
      // An array of string values. One value must match the label to be selected.
      // Each entry in Values is ORed.
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

    }
    
    // A scope selector represents the AND of the selectors represented
    // by the scoped-resource selector requirements.
    // +structType=atomic
    message ScopeSelector {
      // A list of scope selector requirements by scope of the resources.
      // +optional
      repeated ScopedResourceSelectorRequirement matchExpressions = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	sc.srv.markNewGoroutine()
    	gate := make(chan struct{})
    	gateDone := func() { gate <- struct{}{} }
    	for {
    		f, err := sc.framer.ReadFrame()
    		select {
    		case sc.readFrameCh <- http2readFrameResult{f, err, gateDone}:
    		case <-sc.doneServing:
    			return
    		}
    		select {
    		case <-gate:
    		case <-sc.doneServing:
    			return
    		}
    		if http2terminalReadFrameError(err) {
    			return
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %166 = "tf.Identity"(%165) {device = ""} : (tensor<i1>) -> tensor<i1>
      %167 = "tf.Equal"(%103, %13) {device = "", incompatible_shape_error = true} : (tensor<i64>, tensor<i64>) -> tensor<i1>
      %168 = "tf.Select"(%167, %13, %103) {device = ""} : (tensor<i1>, tensor<i64>, tensor<i64>) -> tensor<i64>
      %169 = "tf.Equal"(%168, %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)
Back to top