Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 163 for input_ (0.1 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInvocationTest.groovy

        def setup() {
            INVOCATION_COUNT.set(0)
        }
    
        def "input artifact selection is restored when using the in-memory cache"() {
            def transform = registerTransform(IdentityTransform)
    
            def inputArtifact1 = file("input1/input.txt")
            inputArtifact1.text = "Hello"
    
            def inputArtifact2 = file("input2/input.txt")
            inputArtifact2.text = "Hello"
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

        }
    
        private static String customTaskCode(String input1, String input2) {
            """
                ${customTaskImpl()}
                task customTask(type: CustomTask){
                    input1 = '$input1'
                    input2 = '$input2'
                }
            """
        }
    
        private static String customTaskImpl() {
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/DirectNodeInputUsingModelAction.java

            return new AbstractModelAction<T>(reference, descriptor, input1, input2) {
                @Override
                public void execute(MutableModelNode modelNode, List<ModelView<?>> inputs) {
                    action.execute(modelNode,
                        Cast.<I>uncheckedCast(inputs.get(0).getInstance()),
                        Cast.<J>uncheckedCast(inputs.get(1).getInstance())
                    );
                }
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

          (BinaryOp (TFL_ReshapeOp:$lhs $input1, (Arith_ConstantOp:$shape1 $s1)),
                    (TFL_ReshapeOp:$rhs $input2, (Arith_ConstantOp:$shape2 $s2))),
          (TFL_ReshapeOp (BinaryOp $input1, $input2), $shape1),
          [(IsTailOfShape $rhs, $lhs),
           (IsTailOfShape $lhs, $rhs),
           (IsTailOfShape $input1, $input2),
           (IsTailOfShape $input2, $input1),
           (SameElementType $input1, $input2)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/DefaultRuleActionAdapterTest.groovy

            then:
            ruleAction.inputTypes == []
            closureCalled == "it"
    
            when:
            ruleAction = ruleActionAdapter.createFromClosure(String, { String s, String input1, Integer input2 -> closureCalled = input1 + input2 })
            ruleAction.execute("", ["foo", 3])
    
            then:
            ruleAction.inputTypes == [String, Integer]
            closureCalled == "foo3"
        }
    
        def "can adapt from action" () {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/optimize_functional_ops.mlir

      // CHECK: %[[INPUT0:.*]] = "tf.Placeholder.input"
      %0 = "tf.Placeholder.input"(%arg0) : (tensor<f32>) -> tensor<f32>
      // CHECK: %[[INPUT1:.*]] = "tf.Placeholder.input"
      %1 = "tf.Placeholder.input"(%arg1) : (tensor<f32>) -> tensor<f32>
      %2 = arith.constant dense<true> : tensor<i1>
    
      // CHECK: "tf.Multiply"(%[[INPUT1]], %[[INPUT0]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 10:34:48 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/tests/pick-subgraphs.mlir

        %0 = func.call @func_0_CPU_QUANTIZED_INT8(%arg0, %arg1, %arg2) {tac.device = "CPU", tac.inference_type = "QUANTIZED_INT8", tac.interface_name = "func_0"} : (tensor<100x!quant.uniform<i8:f32, 2.000000e-01:-3>>,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_device_ops_invalid.mlir

    }
    
    // -----
    
    // Check number of replicated inputs is evenly divisible by 'n'.
    func.func @verifier_replicate_bad_operandSegmentSizes(%arg0: tensor<*xi32>) {
      "tf_device.replicate" (%arg0, %arg0, %arg0, %arg0) ({
    // expected-error@-1 {{'tf_device.replicate' op expects number of replicated inputs (4) to be evenly divisible by 'n' (3)}}
      ^entry(%input0: tensor<*xi32>, %input1: tensor<*xi32>):
        tf_device.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/signature_def_output_override.mlir

    // CHECK-NEXT:    name: "min_runtime_version",
    // CHECK-NEXT:    buffer: 6
    // CHECK-NEXT:  } ],
    // CHECK-NEXT:  signature_defs: [ {
    // CHECK-NEXT:    inputs: [ {
    // CHECK-NEXT:      name: "input1",
    // CHECK-NEXT:      tensor_index: 1
    // CHECK-NEXT:    }, {
    // CHECK-NEXT:      name: "input2"
    // CHECK-NEXT:    } ],
    // CHECK-NEXT:    outputs: [ {
    // CHECK-NEXT:      name: "end_logits",
    // CHECK-NEXT:      tensor_index: 4
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/signature_def.mlir

    // CHECK-NEXT:    } ],
    // CHECK-NEXT:    inputs: [ 0, 1 ],
    // CHECK-NEXT:    outputs: [ 6, 5 ],
    // CHECK-NEXT:    operators: [ {
    // CHECK-NEXT:      inputs: [ 0, 3, 2 ],
    // CHECK-NEXT:      outputs: [ 5 ],
    // CHECK-NEXT:      builtin_options_type: FullyConnectedOptions,
    // CHECK-NEXT:      builtin_options: {
    // CHECK-EMPTY:
    // CHECK-NEXT:      }
    // CHECK-NEXT:    }, {
    // CHECK-NEXT:      inputs: [ 0, 4, 2 ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:55:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top