Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for output_arg (2.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-as-function.pbtxt

          name: "function"
          input_arg {
            name: "inputs"
            type: DT_FLOAT
          }
          input_arg {
            name: "statefulpartitionedcall_args_1"
            type: DT_RESOURCE
          }
          output_arg {
            name: "identity"
            type: DT_FLOAT
          }
          is_stateful: true
        }
        node_def {
          name: "Identity"
          op: "Identity"
          input: "inputs"
          attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 24 00:18:34 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          op_name = name.qn[1]
          op_def, _ = self._op_defs.lookup(op_name)
          if len(op_def.output_arg) == 1:
            return {_get_type_from_proto(op_def.output_arg[0])}, None
          return ({tuple(_get_type_from_proto(arg) for arg in op_def.output_arg)},
                  None)
    
        elif f_type == (TFRTypes.PY_BUILTIN_FUNC,):
          assert name.is_simple()
          if name == QN('range'):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/cc_op_gen_test.cc

    op {
      name: "Foo"
      input_arg {
        name: "images"
        description: "Images to process."
      }
      input_arg {
        name: "dim"
        description: "Description for dim."
        type: DT_FLOAT
      }
      output_arg {
        name: "output"
        description: "Description for output."
        type: DT_FLOAT
      }
      attr {
        name: "T"
        type: "type"
        description: "Type for images"
        allowed_values {
          list {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 29 20:04:30 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/tests/keras_imagenet_main.pbtxt

      }
      attr {
        key: "index"
        value {
          i: 0
        }
      }
    }
    library {
      function {
        signature {
          name: "bn2c_branch2a_cond_1_false_1067"
          output_arg {
            name: "const"
            type: DT_FLOAT
          }
        }
        node_def {
          name: "Const"
          op: "Const"
          attr {
            key: "dtype"
            value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 02:52:54 UTC 2019
    - 1.3M bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_remote_test_util.cc

                       "      }"
                       "      input_arg {"
                       "        name: 'b'"
                       "        type: DT_FLOAT"
                       "      }"
                       "      output_arg {"
                       "        name: 'm'"
                       "        type: DT_FLOAT"
                       "      }"
                       "    }"
                       "    node_def {"
                       "      name: 'matmul'"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 11 22:56:03 UTC 2020
    - 9.1K bytes
    - Viewed (0)
  6. tensorflow/cc/tools/freeze_saved_model_test.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/rearrange_function_argument_pass_test.cc

      EXPECT_EQ(f1_rewritten->signature().input_arg(1).type(), DT_RESOURCE);
      ASSERT_EQ(f1_rewritten->signature().output_arg_size(), 1);
      EXPECT_EQ(f1_rewritten->signature().output_arg(0).type(), DT_BOOL);
    
      // Check node "if" input and output edges.
      auto node_name_index = g->BuildNodeNameIndex();
      const Node *if_node = node_name_index.at("if");
      ASSERT_NE(if_node, nullptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_distributed_test.cc

          "    signature {"
          "      name: 'AddVariablesFunction'"
          "      input_arg {"
          "        name: 'var'"
          "        type: DT_RESOURCE"
          "      }"
          "      output_arg {"
          "        name: 'sum'"
          "        type: DT_FLOAT"
          "      }"
          "    }"
          "    node_def {"
          "      name: 'read0'"
          "      op: 'ReadVariableOp'"
          "      input: 'var'"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

            // Add derived "result_segment_sizes" attr to the created operation.
            // TODO(b/146937733): Don't use <void> here.
            set_segment_sizes_attr(output_ranges, op_def->output_arg(),
                                   mlir::OpTrait::AttrSizedResultSegments<
                                       void>::getResultSegmentSizeAttr());
          }
        }
    
        return success();
      }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

            auto cf_consider_fn = [disable_constant_folding](const Node* n) {
              if (disable_constant_folding) return false;
              for (const auto& output_arg : n->op_def().output_arg()) {
                if (output_arg.type() == DT_VARIANT) {
                  return false;
                }
              }
              return true;
            };
            GraphOptimizer::Options graph_optimizer_options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top