Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for branch1 (0.15 sec)

  1. src/cmd/compile/internal/ssa/prove.go

    // else branch of the first comparison is executed, we already know that i < len(a).
    // The code for the second panic can be removed.
    //
    // prove works by finding contradictions and trimming branches whose
    // conditions are unsatisfiable given the branches leading up to them.
    // It tracks a "fact table" of branch conditions. For each branching
    // block, it asserts the branch conditions that uniquely dominate that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. staging/publishing/rules.yaml

          branch: release-1.27
        - repository: client-go
          branch: release-1.27
        - repository: apiserver
          branch: release-1.27
        - repository: component-base
          branch: release-1.27
        - repository: kms
          branch: release-1.27
        - repository: code-generator
          branch: release-1.27
        source:
          branch: release-1.27
          dirs:
          - staging/src/k8s.io/kube-aggregator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      // CHECK: %[[CLUSTER:.*]]:2 = "tf_device.cluster"()
      %2 = "tf_device.cluster"() ({
        // CHECK: %[[CASE:.*]]:2 = "tf.Case"(%[[ARG0]], %[[READ0]], %[[READ1]])
        %3:2 = "tf.Case"(%arg0, %0, %1) {branches = [@branch_0, @branch_1, @branch_2], is_stateless = false}
          : (tensor<i32>, tensor<*x!tf_type.resource<tensor<4xf32>>>, tensor<*x!tf_type.resource<tensor<4xf32>>>)
          -> (tensor<*x!tf_type.resource<tensor<4xf32>>>, tensor<4xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = [{
    An n-way switch statement which calls a single branch function.
      }];
    
      let description = [{
    An n-way switch statement, implementing the following:
        ```
        switch (branch_index) {
          case 0:
            output = branches[0](input);
            break;
          case 1:
            output = branches[1](input);
            break;
          ...
          case [[nbranches-1]]:
          default:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                String branch = substitute(attributes.getValue("branch"));
                Map<String, String> extraAttributes = getExtraAttributes(attributes, new String[]{"organisation", "module", "revision", "status", "publication", "branch", "namespace", "default", "resolver"});
                getMd().setModuleRevisionId(createModuleRevisionId(org, module, branch, revision, extraAttributes));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  6. src/html/template/escape_test.go

    		},
    
    		// Error cases.
    		{
    			"{{if .Cond}}<a{{end}}",
    			"z:1:5: {{if}} branches",
    		},
    		{
    			"{{if .Cond}}\n{{else}}\n<a{{end}}",
    			"z:1:5: {{if}} branches",
    		},
    		{
    			// Missing quote in the else branch.
    			`{{if .Cond}}<a href="foo">{{else}}<a href="bar>{{end}}`,
    			"z:1:5: {{if}} branches",
    		},
    		{
    			// Different kind of attribute: href implies a URL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Absorb sign/zero extensions into 32-bit compare-and-branch.
    (CIJ  {c} (MOV(W|WZ)reg x) [y] yes no) => (CIJ  {c} x [y] yes no)
    (CLIJ {c} (MOV(W|WZ)reg x) [y] yes no) => (CLIJ {c} x [y] yes no)
    
    // Bring out-of-range signed immediates into range by varying branch condition.
    (BRC {s390x.Less}           (CMPconst  x [ 128]) yes no) => (CGIJ {s390x.LessOrEqual}    x [ 127] yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      RemoveUnusedResourceArgumentsAndForwardedRetvals(
          resource_arg_uses, branches.front(), /*old_to_new_arg_indices=*/nullptr,
          &remaining_resource_data_types);
      for (auto func : branches.drop_front())
        RemoveUnusedResourceArgumentsAndForwardedRetvals(resource_arg_uses, func);
    
      // Forward resource inputs updated in any branch to the outputs of both
      // branches. First prepare the mapping from arg to new update output.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ppc64/ssa.go

    		p.To.Offset = 0
    
    		p = s.Prog(ppc64.ABNE)
    		p.To.Type = obj.TYPE_BRANCH
    		s.Branches = append(s.Branches, ssagen.Branch{P: p, B: b.Succs[1].Block()})
    		if b.Succs[0].Block() != next {
    			p := s.Prog(obj.AJMP)
    			p.To.Type = obj.TYPE_BRANCH
    			s.Branches = append(s.Branches, ssagen.Branch{P: p, B: b.Succs[0].Block()})
    		}
    
    	case ssa.BlockPlain:
    		if b.Succs[0].Block() != next {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis.cc

                       should_revisit);
          input_preds.pop_back();
          input_preds.push_back(predicate_factory_.MakeNotPredicate(branch_pred));
        }
        // The default (last) branch does not need its own symbol, is simply the
        // nor of all other branches.
        SetPredicate(n, n->num_outputs() - 1,
                     predicate_factory_.MakeAndPredicate(input_preds),
                     should_revisit);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top