Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 216 for branch1 (0.13 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

            def branch6 = new DefaultMultiCauseException("sixth failure", intermediateFailure2)
    
            Throwable exception = new ContextAwareException(new TypedResolveException("task dependencies", "org:example:1.0", [branch1, branch2, branch3, branch4, branch5, branch6]))
    
            when:
            reporter.buildFinished(result(exception))
            print(output.value)
    
            then:
            output.value == """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/control_flow.mlir

      // CHECK-NEXT: [[idx:%.*]] = corert.tensorhandle_to_int32 [[th_idx]]
      // CHECK-NEXT: [[out:%.*]] = tfrt.case [[idx]] [@branch0, @branch1]([[chain]], [[branch_arg0]], [[branch_arg1]])
      %0 = "tf.Case"(%arg0, %arg1, %arg2) {_lower_using_switch_merge = true, branches = [@branch0, @branch1], is_stateless = true} : (tensor<i32>, tensor<f32>, tensor<f32>) -> tensor<f32>
      func.return %0 : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      //
      // Two ops with the same groups and different branches are considered
      // parallel so are not made dependent. For example if `OpA` has parallel_ids
      //   `{group0:branch0, group1:branch0}`
      // and `OpB` has parallel_ids
      //   `{group0:branch1, graph1:branch0}`
      // then `OpA` and `OpB` are executed in parallel because `group0` is common
      // with a different branch.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

      // CHECK: [[idx:%.*]] = tf_mlrt.tensor_to_int32 [[tf_idx]]
      // CHECK-NEXT: [[out:%.*]] = mlrt.case [[idx]] [@branch0, @branch1]([[branch_arg0]], [[branch_arg1]])
      %0 = "tf.Case"(%arg0, %arg1, %arg2) {_lower_using_switch_merge = true, branches = [@branch0, @branch1], is_stateless = true} : (tensor<i32>, tensor<f32>, tensor<f32>) -> tensor<f32>
      func.return %0 : tensor<f32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

      }
    
      func.func private @branch0(tensor<2xf32>) -> tensor<2xf32>
      func.func private @branch1(tensor<2xf32>) -> tensor<2xf32>
    
      func.func @case_with_symbol_ref(%arg0: tensor<i32>, %arg1: tensor<2xf32>) -> tensor<2xf32> {
        // CHECK: tf.Case
        // expected-remark@+1 {{ops with symbol references are not supported}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
  6. src/cmd/compile/internal/syntax/branches.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syntax
    
    import "fmt"
    
    // checkBranches checks correct use of labels and branch
    // statements (break, continue, fallthrough, goto) in a function body.
    // It catches:
    //   - misplaced breaks, continues, and fallthroughs
    //   - bad labeled breaks and continues
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-regions.mlir

      %0 = "tf.Case"(%arg0, %arg1) {branches = [@branch_0, @branch_1], is_stateless = false} : (tensor<i32>, tensor<!tf_type.resource<tensor<1x2x3xf32>>>) -> tensor<1x2x3xf32>
    
      // CHECK: [[Result0:%.*]] = "tf.CaseRegion"
      // CHECK: [[Result1:%.*]] = func.call @branch_0
      // CHECK: "tf.Yield"([[Result1]])
      // CHECK: [[Result2:%.*]] = func.call @branch_1
      // CHECK: "tf.Yield"([[Result2]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 21:59:28 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

    // branch functions to (a) drop the ununsed return values, and (b) as a result
    // if some argument becomes unused in all branches, drop that argument and the
    // corresponding if/case input operand.
    void EliminateUnusedResultsForIfCase(Operation *op,
                                         ArrayRef<func::FuncOp> branches) {
      // Clone branch functions if needed since we will be mutating them.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

      // Rewrite the branches.
      RegionRange branches = case_op.getRegions();
    
      for (Region* branch : branches) {
        if (failed(DecomposeTensorListOpsInternal(
                &branch->front(), module, buffer_to_size,
                decomposed_partitioned_call_callees)))
          return failure();
      }
    
      // Get the output buffer index to size index mapping one of the branches. It
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

                                    branch11 = selection.getDescriptor(IvyModuleDescriptor).branch
                                } else {
                                    selection.reject('not 1.1')
                                }
                            }
                        }
                    }
                }
            """
    
            when:
            buildFile.text = """
                $commonBuildFile
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
Back to top