Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for gather (0.15 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:            %[[VAL_0:.*]] = "tf.GatherNd"(%[[ARG_0]], %[[ARG_1]]) <{bad_indices_policy = ""}> : {{.*}} -> tensor<192x256xf16>
    // CHECK:            return %[[VAL_0]]
    // CHECK:         }
    func.func @convert_gather(%arg0: tensor<147456xf16>, %arg1: tensor<192x256x1xi32>) -> tensor<192x256xf16> {
      %0 = "mhlo.gather"(%arg0, %arg1) {
        dimension_numbers = #mhlo.gather<
          collapsed_slice_dims = [0],
    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. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            /*collapsedSliceDims=*/collapsed_dims,
            /*operandBatchingDims=*/{},
            /*startIndicesBatchingDims=*/{}, start_index_map,
            /*indexVectorDim=*/0);
        Value gather = rewriter.create<mhlo::GatherOp>(
            loc, op.getInput(), start_indices, dims_attr,
            GetI64ElementsAttr(slice_sizes, &rewriter));
    
        // We now need to broadcast the "in_bounds" boolean expression, as well as
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-DAG: %[[V42:.*]] = "mhlo.concatenate"(%[[V33]], %[[V32]]) <{dimension = 0 : i64}> : (tensor<1x22x128xi32>, tensor<1x22x128xi32>) -> tensor<2x22x128xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// This might be in conflict with other options that affect the file
    	// mode, like fsGroup, and the result can be other mode bits set.
    	// +optional
    	Mode *int32
    }
    
    // LocalVolumeSource represents directly-attached storage with node affinity (Beta feature)
    type LocalVolumeSource struct {
    	// The full path to the volume on the node.
    	// It can be either a directory or block device (disk, partition, ...).
    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/types_swagger_doc_generated.go

    	"readinessGates":                "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - Remove GAed feature gates OpenAPIV3 ([#121255](https://github.com/kubernetes/kubernetes/pull/121255), [@tukwila](https://github.com/tukwila)) [SIG API Machinery and Testing]
    - Remove GAed feature gates SeccompDefault ([#121246](https://github.com/kubernetes/kubernetes/pull/121246), [@tukwila](https://github.com/tukwila)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    ### Other (Cleanup or Flake)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// This might be in conflict with other options that affect the file
    	// mode, like fsGroup, and the result can be other mode bits set.
    	// +optional
    	DefaultMode *int32 `json:"defaultMode,omitempty" protobuf:"varint,2,opt,name=defaultMode"`
    }
    
    // Projection that may be projected along with other supported volume types
    type VolumeProjection struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      optional PodDNSConfig dnsConfig = 26;
    
      // If specified, all readiness gates will be evaluated for pod readiness.
      // A pod is ready when all its containers are ready AND
      // all conditions specified in the readiness gates have status equal to "True"
      // More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates
      // +optional
      // +listType=atomic
      repeated PodReadinessGate readinessGates = 28;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    func (sc *http2serverConn) readFrames() {
    	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
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top