Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 395 for Cond (0.49 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_outline_island/while_op.mlir

            %2 = "tf.While"(%1) {body = @while_body_with_cluster_attr, cond = @while_cond_with_cluster_attr, is_stateless = false, name = "A", parallel_iterations = 10 : i64} : (tensor<i32>) -> tensor<i32>
            %3 = "tf.While"(%1) {body = @while_body_without_cluster_attr, cond = @while_cond_with_cluster_attr, is_stateless = false, name = "C", parallel_iterations = 10 : i64} : (tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 04 03:54:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/conversion.go

    	out.ObservedGeneration = in.ObservedGeneration
    	for _, cond := range in.Conditions {
    		out.Conditions = append(out.Conditions, apps.ReplicaSetCondition{
    			Type:               apps.ReplicaSetConditionType(cond.Type),
    			Status:             core.ConditionStatus(cond.Status),
    			LastTransitionTime: cond.LastTransitionTime,
    			Reason:             cond.Reason,
    			Message:            cond.Message,
    		})
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/fiat/p256.go

    func (e *P256Element) Square(t *P256Element) *P256Element {
    	p256Square(&e.x, &t.x)
    	return e
    }
    
    // Select sets v to a if cond == 1, and to b if cond == 0.
    func (v *P256Element) Select(a, b *P256Element, cond int) *P256Element {
    	p256Selectznz((*p256UntypedFieldElement)(&v.x), p256Uint1(cond),
    		(*p256UntypedFieldElement)(&b.x), (*p256UntypedFieldElement)(&a.x))
    	return v
    }
    
    func p256InvertEndianness(v []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/field/fe.go

    	return subtle.ConstantTimeCompare(sa, sv)
    }
    
    // mask64Bits returns 0xffffffff if cond is 1, and 0 otherwise.
    func mask64Bits(cond int) uint64 { return ^(uint64(cond) - 1) }
    
    // Select sets v to a if cond == 1, and to b if cond == 0.
    func (v *Element) Select(a, b *Element, cond int) *Element {
    	m := mask64Bits(cond)
    	v.l0 = (m & a.l0) | (^m & b.l0)
    	v.l1 = (m & a.l1) | (^m & b.l1)
    	v.l2 = (m & a.l2) | (^m & b.l2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/functionalize-if-fail.mlir

    // CHECK:       error: FunctionalizeControlFlowForXlaPass: Graph contains node with inputs predicated on incompatible predicates: {s(Cond:0,then)} and {s(Cond:0,else)}
    // CHECK-NEXT:  for node {{[{][{]node Add[}][}]}}
    
    func.func @main() {
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. pkg/util/goroutinemap/goroutinemap.go

    		operations:                make(map[string]operation),
    		exponentialBackOffOnError: exponentialBackOffOnError,
    	}
    
    	g.cond = sync.NewCond(&g.lock)
    	return g
    }
    
    type goRoutineMap struct {
    	operations                map[string]operation
    	exponentialBackOffOnError bool
    	cond                      *sync.Cond
    	lock                      sync.RWMutex
    }
    
    // operation holds the state of a single goroutine.
    type operation struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conditions.go

    		// for more information
    		if cond.error != nil {
    			existingConditions = setter(existingConditions, metav1.Condition{
    				Type:               k,
    				Status:             kstatus.InvertStatus(cond.status),
    				ObservedGeneration: generation,
    				LastTransitionTime: metav1.Now(),
    				Reason:             cond.error.Reason,
    				Message:            cond.error.Message,
    			})
    		} else {
    			status := cond.status
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewritegeneric.go

    	// match: (Ctz8 (Const8 [c]))
    	// cond: config.PtrSize == 4
    	// result: (Const32 [int32(ntz8(c))])
    	for {
    		if v_0.Op != OpConst8 {
    			break
    		}
    		c := auxIntToInt8(v_0.AuxInt)
    		if !(config.PtrSize == 4) {
    			break
    		}
    		v.reset(OpConst32)
    		v.AuxInt = int32ToAuxInt(int32(ntz8(c)))
    		return true
    	}
    	// match: (Ctz8 (Const8 [c]))
    	// cond: config.PtrSize == 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-regions.mlir

      // CHECK: device = "/device:CPU:0"
      func.return
    }
    
    // -----
    
    func.func private @cond() -> tensor<i1>
    func.func private @body() -> ()
    
    // Test tf.While device is preserved.
    // CHECK-LABEL: func @testWhileDevice
    func.func @testWhileDevice() {
      "tf.While"() {cond = @cond, body = @body, is_stateless = false, device = "/device:CPU:0"} : () -> ()
    
      // CHECK: "tf.WhileRegion"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 21:59:28 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/fiat/p224.go

    func (e *P224Element) Square(t *P224Element) *P224Element {
    	p224Square(&e.x, &t.x)
    	return e
    }
    
    // Select sets v to a if cond == 1, and to b if cond == 0.
    func (v *P224Element) Select(a, b *P224Element, cond int) *P224Element {
    	p224Selectznz((*p224UntypedFieldElement)(&v.x), p224Uint1(cond),
    		(*p224UntypedFieldElement)(&b.x), (*p224UntypedFieldElement)(&a.x))
    	return v
    }
    
    func p224InvertEndianness(v []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top