Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 212 for cond_a (0.11 sec)

  1. test/noinit.go

    	// copy_y = y // static init of copied strings defeats link -X; see #34675
    	copy_nilslice = nilslice
    	copy_nilmap   = nilmap
    	copy_nilfunc  = nilfunc
    	copy_nilchan  = nilchan
    	copy_nilptr   = nilptr
    )
    
    var copy_a = a
    var copy_s = s
    var copy_c = c
    
    var copy_aa = aa
    var copy_as = as
    
    var copy_sa = sa
    var copy_ss = ss
    
    var copy_ca = ca
    var copy_cs = cs
    
    var copy_answers = answers
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

        return failure();
      }
      // Cond should not change stacks in the arguments, so use an empty map.
      auto cond = while_op.cond_function();
      ModifyFunctionSignature(cond, nullptr, find_arg_stack_type);
      llvm::SmallDenseMap<Value, Value> empty_map;
      if (failed(DecomposeStackOpsInternal(&cond.front(), module, &empty_map,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-input-func-arg-name-collision.pbtxt

        value {
          b: true
        }
      }
      attr {
        key: "body"
        value {
          func {
            name: "while_body_6"
          }
        }
      }
      attr {
        key: "cond"
        value {
          func {
            name: "while_cond_5"
          }
        }
      }
      attr {
        key: "output_shapes"
        value {
          list {
            shape {
            }
            shape {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/fuse_test.go

    					Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    					Valu("cond", OpArg, c.config.Types.Bool, 0, nil),
    					Valu("x", OpArg, c.config.Types.Int64, 0, nil),
    					Goto("exit")))
    
    			phiArgs := make([]string, 0, 2*n)
    			for i := 0; i < n; i++ {
    				cname := fmt.Sprintf("c%d", i)
    				blocks = append(blocks,
    					Bloc(fmt.Sprintf("b%d", i), If("cond", cname, "merge")),
    					Bloc(cname, Goto("merge")))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/health.go

    		if err != nil {
    			lastError = err
    			klog.V(2).Infof("could not get Job %q in the namespace %q, retrying: %v", jobName, ns, err)
    			return false, nil
    		}
    		for _, cond := range job.Status.Conditions {
    			if cond.Type == batchv1.JobComplete {
    				return true, nil
    			}
    		}
    		lastError = errors.Errorf("no condition of type %v", batchv1.JobComplete)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/printer.go

    		if n.Init == nil && n.Post == nil {
    			if n.Cond != nil {
    				p.print(n.Cond, blank)
    			}
    		} else {
    			if n.Init != nil {
    				p.print(n.Init)
    				// TODO(gri) clean this up
    				if _, ok := n.Init.(*RangeClause); ok {
    					p.print(blank, n.Body)
    					break
    				}
    			}
    			p.print(_Semi, blank)
    			if n.Cond != nil {
    				p.print(n.Cond)
    			}
    			p.print(_Semi, blank)
    			if n.Post != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    (PanicBounds [kind] x y mem) && boundsABI(kind) == 2 => (LoweredPanicBoundsC [kind] x y mem)
    
    (CondSelect <t> x y cond) => (OR (MASKEQZ <t> x cond) (MASKNEZ <t> y cond))
    
    // Optimizations
    
    // Absorb boolean tests into block
    (NE (FPFlagTrue cmp) yes no) => (FPT cmp yes no)
    (NE (FPFlagFalse cmp) yes no) => (FPF cmp yes no)
    (EQ (FPFlagTrue cmp) yes no) => (FPF cmp yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  8. pkg/controller/deployment/util/deployment_util.go

    func ReplicaSetToDeploymentCondition(cond apps.ReplicaSetCondition) apps.DeploymentCondition {
    	return apps.DeploymentCondition{
    		Type:               apps.DeploymentConditionType(cond.Type),
    		Status:             cond.Status,
    		LastTransitionTime: cond.LastTransitionTime,
    		LastUpdateTime:     cond.LastTransitionTime,
    		Reason:             cond.Reason,
    		Message:            cond.Message,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/xla_cluster_formation.mlir

    // performance.
    // CHECK-LABEL: func.func @nested_calls
    func.func @nested_calls(%arg0: tensor<i32>) -> tensor<i32> attributes {tf.entry_function = {}} {
        %0 = "tf.While"(%arg0) {cond = @while_cond_func, body = @while_body_func, is_stateless = true} : (tensor<i32>) -> (tensor<i32>)
        func.return %0 : tensor<i32>
    }
    
    // CHECK-LABEL: func.func @while_cond_func
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 19:09:44 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

        %2:2 = "tf.WhileRegion"(%1, %arg0) ({
          ^bb0(%carg0: tensor<f32>, %carg1: tensor<i32>):
             %limit = arith.constant dense<5> : tensor<i32>
             %cond = "tf.NotEqual"(%carg1, %limit) : (tensor<i32>, tensor<i32>) -> tensor<i1>
             "tf.Yield"(%cond) : (tensor<i1>) -> ()
        },  {
          ^bb0(%barg0: tensor<f32>, %barg1: tensor<i32>):
            %one = arith.constant dense<1> : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top