Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,497 for input0 (0.08 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/lstm.json

              "is_variable": true,
              "quantization": {
                "min": [-0.5],
                "max": [0.5]
              }
            }
          ],
          "inputs": [0],
          "outputs": [24],
          "operators": [
            {
              "inputs": [
                0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23
              ],
              "outputs": [24],
              "intermediates": [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 06:25:50 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/fallback.mlir

    // RUN: tf-tfrt-opt -tf-to-tfrt %s | FileCheck %s --dump-input=fail --dump-input-filter=all
    // RUN: tf-tfrt-opt -pass-pipeline='builtin.module(tf-to-tfrt{target-tpurt=true tpu-use-core-selector=false})' %s | FileCheck %s --dump-input=fail --dump-input-filter=all
    
    // CHECK-LABEL: func @_tfrt_fallback_init
    // CHECK-SAME: {{.*}} !tfrt.chain
    // CHECK: tfrt_fallback_async.createop(%arg0) key(0) device("/device:CPU:0") "tf.ParseExampleV2"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/RuleSourceBackedRuleActionTest.groovy

            void theRule(List subject, String input1, Integer input2, Set input3) {
                subject.add(input1)
                subject.add(input2)
                subject.addAll(input3)
            }
        }
    
        static class ArrayListRuleSource {
            @Mutate
            void theRule(ArrayList subject, String input1, Integer input2, Set input3) {
                subject.add(input1)
                subject.add(input2)
                subject.addAll(input3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/CalculatedTaskInputFileCollectionTest.groovy

            0 * calculated._
        }
    
        def "notifies each of the inputs of task start and complete"() {
            def input1 = Mock(LifecycleAwareValue)
            def input2 = "other"
            def input3 = Mock(LifecycleAwareValue)
            def fileCollection = new CalculatedTaskInputFileCollection(taskDependencyFactory, ":task", Stub(MinimalFileSet), input1, input2, input3)
    
            when:
            fileCollection.prepareValue()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/kryo/KryoBackedDecoderTest.groovy

        def "can read from stream and then restart to use another stream"() {
            def input1 = encoded("string 1")
            def input2 = encoded("string 2")
    
            given:
            def decoder = new KryoBackedDecoder(input1)
            decoder.readString()
            decoder.restart(input2)
    
            expect:
            decoder.readPosition == 0
            decoder.readString() == "string 2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningTasksIntegrationSpec.groovy

        }
    
        def "out-of-date when input file changes"() {
            given:
            def inputFile = file("input.txt")
            inputFile.text = "foo"
            buildFile << """
                ${keyInfo.addAsPropertiesScript()}
                signing {
                    ${signingConfiguration()}
                }
                task signCustomFile(type: Sign) {
                    sign(file("input.txt"))
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top