Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 65 for output_arg (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/arg-control-dep.pbtxt

    node {
      name: "_tf.foo"
      op: "foo"
      input: "Constant"
    }
    library {
      function {
        signature {
          name: "foo"
          input_arg {
            name: "arg"
            type: DT_INT32
          }
          output_arg {
            name: "return_value"
            type: DT_INT32
          }
        }
        # Drop the control dependency on arg for the node "test"
        # CHECK-LABEL: func private @foo
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/functional-if-ops.pbtxt

          name: "cond_true"
          input_arg {
            name: "cond_true"
            type: DT_FLOAT
          }
          input_arg {
            name: "cond_true1"
            type: DT_FLOAT
          }
          output_arg {
            name: "cond_true2"
            type: DT_FLOAT
          }
        }
        node_def {
          name: "tf.Add"
          op: "Add"
          input: "cond_true"
          input: "cond_true1"
          attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 15 19:42:47 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-gradient-def.pbtxt

        }
      }
      experimental_debug_info {
      }
    }
    library {
      function {
        signature {
          name: "foo"
          input_arg {
            name: "foo"
            type: DT_FLOAT
          }
          output_arg {
            name: "foo1"
            type: DT_FLOAT
          }
        }
        node_def {
          name: "Exp"
          op: "Exp"
          input: "foo"
          attr {
            key: "T"
            value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/force_shared_name_for_resource_ops.pbtxt

          i: 16
        }
      }
      attr: {
        key: "shared_name"
        value: {
          s: ""
        }
      }
    }
    library {
      function {
        signature {
          name: "create_resource"
          output_arg {
            name: "handle"
            type: DT_RESOURCE
          }
        }
        node_def: {
          name: "hash_table_node"
          op: "HashTableV2"
          attr: {
            key: "key_dtype"
            value: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 31 02:37:48 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-custom-operation.pbtxt

    node {
      name: "_tf.foo"
      op: "foo"
      input: "Constant"
    }
    library {
      function {
        signature {
          name: "foo"
          input_arg {
            name: "arg"
            type: DT_INT32
          }
          output_arg {
            name: "return_value"
            type: DT_INT32
          }
        }
        ret {
          key: "return_value"
          value: "arg"
        }
      }
    }
    versions {
      producer: 62
      min_consumer: 12
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/model/op_spec.cc

          }
        } else if (!arg_def.type_list_attr().empty()) {
          inferred_attrs.insert(arg_def.type_list_attr());
        }
      }
      for (const OpDef::ArgDef& arg_def : op_def.output_arg()) {
        ArgSpec arg = ArgSpec::CreateOutput(arg_def, output_args_.size());
        output_args_.push_back(arg);
      }
      // Parse the attributes.
      for (const OpDef::AttrDef& attr_def : op_def.attr()) {
        AttrSpec attr = AttrSpec::Create(attr_def);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 01 21:05:56 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-call.pbtxt

        value {
          s: "cluster"
        }
      }
    }
    library {
      function {
        signature {
          name: "test_func_name"
          input_arg {
            name: "a_0"
            type: DT_INT32
          }
          output_arg {
            name: "a"
            type: DT_INT32
          }
        }
        ret {
          key: "a"
          value: "a_0"
        }
        attr {
          key: "_disable_call_shape_inference"
          value {
            b: true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/empty-value-attr.pbtxt

          }
        }
      }
      attr {
        key: "f"
        value {
          func {
            name: "foo"
          }
        }
      }
    }
    library {
      function {
        signature {
          name: "foo"
          output_arg {
            name: "constant"
            type: DT_FLOAT
          }
        }
        node_def {
          name: "X"
          op: "Const"
          attr {
            key: "dtype"
            value {
              type: DT_FLOAT
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-input-shapes.pbtxt

      }
      experimental_debug_info {
      }
    }
    library {
      function {
        signature {
          name: "identity_function"
          input_arg {
            name: "identity_input"
            type: DT_INT32
          }
          output_arg {
            name: "identity_output"
            type: DT_INT32
          }
        }
        ret {
          key: "identity_output"
          value: "identity_input"
        }
        attr {
          key: "_input_shapes"
          value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/end2end/custom_opdef.pbtxt

    node {
      name: "output"
      op: "BannaPotatoSaladWithColeslaw"
      input: "input0"
      input: "input1"
      attr {
        key: "T"
        value {
          type: DT_INT32
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 21 11:04:11 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top