Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for isSelect (0.16 sec)

  1. 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)
  2. 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)
  3. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %cst_false = arith.constant dense<false> : tensor<1x2x3x4xi1>
      %0 = "tfl.select"(%cst_true, %arg0, %arg1) : (tensor<1x2x3x4xi1>, tensor<1x2x3x4xf32>, tensor<1x2x3x4xf32>) -> tensor<1x2x3x4xf32>
      %1 = "tfl.select_v2"(%cst_true, %arg0, %arg1) : (tensor<1x2x3x4xi1>, tensor<1x2x3x4xf32>, tensor<1x2x3x4xf32>) -> tensor<1x2x3x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    // file.
    type ClusterTrustBundleProjection struct {
    	// Select a single ClusterTrustBundle by object name.   Mutually-exclusive
    	// with SignerName and LabelSelector.
    	Name *string
    
    	// Select all ClusterTrustBundles for this signer that match LabelSelector.
    	// Mutually-exclusive with Name.
    	SignerName *string
    
    	// Select all ClusterTrustBundles that match this LabelSelecotr.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // ClusterTrustBundleProjection describes how to select a set of
    // ClusterTrustBundle objects and project their contents into the pod
    // filesystem.
    message ClusterTrustBundleProjection {
      // Select a single ClusterTrustBundle by object name.  Mutually-exclusive
      // with signerName and labelSelector.
      // +optional
      optional string name = 1;
    
      // Select all ClusterTrustBundles that match this signer name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":              "ClusterTrustBundleProjection describes how to select a set of ClusterTrustBundle objects and project their contents into the pod filesystem.",
    	"name":          "Select a single ClusterTrustBundle by object name.  Mutually-exclusive with signerName and labelSelector.",
    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/types.go

    	// token into.
    	Path string `json:"path" protobuf:"bytes,3,opt,name=path"`
    }
    
    // ClusterTrustBundleProjection describes how to select a set of
    // ClusterTrustBundle objects and project their contents into the pod
    // filesystem.
    type ClusterTrustBundleProjection struct {
    	// Select a single ClusterTrustBundle by object name.  Mutually-exclusive
    	// with signerName and labelSelector.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. doc/go_spec.html

    	    statement</a>.</li>
    	</ul>
    </li>
    
    <li>
    	A <a href="#Select_statements">"select" statement</a> in which:
    	<ul>
    	<li>there are no "break" statements referring to the "select" statement, and</li>
    	<li>the statement lists in each case, including the default if present,
    	    end in a terminating statement.</li>
    	</ul>
    </li>
    
    <li>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "labelSelector": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      }
    };
    
    using ConvertMaxPool2DOp = ConvertMaxPoolOp<TF::MaxPoolOp, /*num_dims=*/4>;
    using ConvertMaxPool3DOp = ConvertMaxPoolOp<TF::MaxPool3DOp, /*num_dims=*/5>;
    
    // Converts tf.Select (SelectV1) to mhlo.select. It has optional broadcasting on
    // the condition only.
    class ConvertSelectOp : public OpRewritePattern<TF::SelectOp> {
     public:
      using OpRewritePattern::OpRewritePattern;
    
    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