Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,676 for input1 (0.15 sec)

  1. tensorflow/compiler/mlir/lite/tests/end2end/custom_opdef.pbtxt

    # RUN: tf_tfl_translate -tf-input-arrays=input0,input1 -tf-input-shapes=4:4 -tf-input-data-types=DT_INT32,DT_INT32 -tf-output-arrays=output %s -o - --output-mlir -tf-custom-opdefs="name: 'BannaPotatoSaladWithColeslaw' input_arg: { name: 'a' type: DT_INT32 } input_arg: { name: 'b' type: DT_INT32 } output_arg: { name: 'c' type: DT_INT32 }" | FileCheck %s
    
    node {
      name: "output"
      op: "BannaPotatoSaladWithColeslaw"
      input: "input0"
      input: "input1"
      attr {
        key: "T"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 21 11:04:11 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/signature_with_multiple_entry_points.mlir

    // CHECK: func @add(
    // CHECK-SAME: {tf_saved_model.index_path = ["input1"]}
    // CHECK-SAME: {tf_saved_model.index_path = ["input2"]}
    // CHECK-SAME: {tf_saved_model.index_path = ["result"]}
    // CHECK-SAME: tf.entry_function = {inputs = "input1:0,input2:0", outputs = "result:0"}
    // CHECK-SAME: tf_saved_model.exported_names = ["add"]
    
    // CHECK: func @sub(
    // CHECK-SAME: {tf_saved_model.index_path = ["input2"]}
    // CHECK-SAME: {tf_saved_model.index_path = ["input1"]}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:35:24 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/add.pbtxt

    node {
      name: "Add"
      op: "Add"
      input: "input0"
      input: "input1"
      attr {
        key: "T"
        value {
          type: DT_INT32
        }
      }
    }
    node {
      name: "input0"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 17 08:38:39 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/partial-device-name.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-input-arrays=input0,input1 -tf-input-data-types=DT_INT32,DT_INT32 -tf-input-shapes=10:10 -tf-output-arrays=Sub -o - | FileCheck %s
    
    node {
      name: "Add"
      op: "Add"
      input: "input0"
      input: "input1"
      # If device type or id doesn't exist, assign a default one (device:CPU:0).
      device: "/job:localhost/replica:0/task:0"
      attr {
        key: "T"
        value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 26 20:48:36 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/signature_def_with_multiple_entry_points.mlir

      func.func @add(%arg0: tensor<?xf32> {tf_saved_model.index_path = ["input1"]}, %arg1: tensor<?xf32> {tf_saved_model.index_path = ["input2"]}) -> (tensor<?xf32> {tf_saved_model.index_path = ["result"]}) attributes {tf.entry_function = {control_outputs = "", inputs = "input1:0,input2:0", outputs = "result:0"}, tf_saved_model.exported_names = ["add"]} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/end2end/quant_stats.pbtxt

    # RUN: tf_tfl_translate -tf-input-arrays=input0,input1 \
    # RUN:                  -tf-input-shapes=4:4 \
    # RUN:                  -tf-input-data-types=DT_FLOAT,DT_FLOAT \
    # RUN:                  -tf-output-arrays=Add \
    # RUN:                  -tf-inference-type=DT_QUINT8 \
    # RUN:                  -tf-input-min-values='-2,-3' \
    # RUN:                  -tf-input-max-values='2,3' \
    # RUN:                  --quant-stats=%s.stats \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

            connection.queueIncoming(input1)
            connection.queueIncoming(input2)
            connection.queueIncoming(closeInput)
            received.await()
            daemonConnection.stop()
    
            then:
            1 * handler.onInput(input1)
            1 * handler.onInput(input2)
            1 * handler.onEndOfInput() >> { received.countDown() }
            0 * handler._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SignOperationSpec.groovy

            
            input2 = getResourceFile("2.txt")
            output2 = signing.signatureType.fileFor(input2)
            input2Artifact = new DefaultPublishArtifact(input2.name, "Text File", "txt", null, null, input2)
            
            [output1, output2].each { output ->
                assert !output.exists() || output.delete()
            }
            
            assert input1.text && input2.text  // don't care what it is, just need some
        }
        
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/end2end/add.pbtxt

    # RUN: tf_tfl_translate -tf-input-arrays=input0,input1 -tf-input-shapes=4:4 -tf-input-data-types=DT_INT32,DT_INT32 -tf-output-arrays=Add %s -o - | flatbuffer_to_string - | FileCheck %s
    
    # Add two tensor<4xi32> inputs and return the result
    
    node {
      name: "Add"
      op: "Add"
      input: "input0"
      input: "input1"
      attr {
        key: "T"
        value {
          type: DT_INT32
        }
      }
    }
    node {
      name: "input0"
      op: "Placeholder"
      attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top