Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for comp (0.06 sec)

  1. 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)
  2. CHANGELOG/CHANGELOG-1.23.md

    .google.com/gcr/images/k8s-artifacts-prod/us/kube-scheduler) | [amd64](https://console.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-scheduler-amd64), [arm](https://console.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-scheduler-arm), [arm64](https://console.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-scheduler-arm64), [ppc64le](https://console.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-scheduler-ppc64le), [s390x](https://console.cloud.google.com/gcr/imag...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  3. 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)
  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. src/net/http/h2_bundle.go

    type http2clientConnPool struct {
    	t *http2Transport
    
    	mu sync.Mutex // TODO: maybe switch to RWMutex
    	// TODO: add support for sharing conns based on cert names
    	// (e.g. share conn for googleapis.com and appspot.com)
    	conns        map[string][]*http2ClientConn // key is host:port
    	dialing      map[string]*http2dialCall     // currently in-flight dials
    	keys         map[*http2ClientConn][]string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // subsets according to the IPs they share. A single address with multiple ports,
      // some of which are ready and some of which are not (because they come from
      // different containers) will result in the address being displayed in different
      // subsets for the different ports. No address will appear in both Addresses and
      // NotReadyAddresses in the same subset.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// The set of all endpoints is the union of all subsets. Addresses are placed into
    	// subsets according to the IPs they share. A single address with multiple ports,
    	// some of which are ready and some of which are not (because they come from
    	// different containers) will result in the address being displayed in different
    	// subsets for the different ports. No address will appear in both Addresses and
    	// NotReadyAddresses in the same subset.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top