Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for DataTypeVector (0.21 sec)

  1. tensorflow/compiler/jit/encapsulate_xla_computations_pass_test.cc

        InstantiationResultForTest result;
        TF_EXPECT_OK(InstantiateFunctionForTest(function, flib_def, &result));
    
        EXPECT_EQ((DataTypeVector{DT_INT32, DT_FLOAT, DT_INT32, DT_FLOAT,
                                  DT_RESOURCE, DT_RESOURCE, DT_RESOURCE}),
                  result.arg_types);
        EXPECT_EQ((DataTypeVector{DT_FLOAT, DT_INT32, DT_FLOAT, DT_FLOAT}),
                  result.ret_types);
        TF_EXPECT_GRAPH_EQ(expected_body_def, result.gdef);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

        // Data and control inputs to the new XlaLaunch node.
        std::vector<std::pair<Node*, int>> data_inputs(num_inputs);
        absl::flat_hash_set<Node*> control_inputs;
        DataTypeVector arg_types(num_args);
    
        AddControlInputs(*launch, &control_inputs);
    
        for (int i = 0; i < num_args; ++i) {
          const Edge* edge = in_edges[i];
          data_inputs[i] = {edge->src(), edge->src_output()};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_kernel_creator_test.cc

    #include "tensorflow/core/public/session_options.h"
    #include "tensorflow/core/public/version.h"
    
    namespace tensorflow {
    
    std::shared_ptr<NodeProperties> ToNodeProperties(const string& text) {
      NodeDef node_def;
      DataTypeVector dummy;
      EXPECT_TRUE(protobuf::TextFormat::MergeFromString(text, &node_def));
      return std::make_shared<NodeProperties>(nullptr, std::move(node_def), dummy,
                                              dummy);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 01:39:55 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/kernels/xla_ops.cc

      return constants;
    }
    
    std::vector<int> ResourcesVector(OpKernelConstruction* ctx) {
      DataTypeVector constant_types;
      OP_REQUIRES_OK_RETURN(ctx, std::vector<int>(),
                            ctx->GetAttr("Tconstants", &constant_types));
    
      DataTypeVector arg_types;
      OP_REQUIRES_OK_RETURN(ctx, std::vector<int>(),
                            ctx->GetAttr("Targs", &arg_types));
    
      int num_resources;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

    absl::StatusOr<FunctionDef> TFRDecomposeContext::ExpandNode(
        const NodeDef& node_def, StringPiece func_name) {
      const OpDef* op_def;
      TF_RETURN_IF_ERROR(OpRegistry::Global()->LookUpOpDef(node_def.op(), &op_def));
      DataTypeVector input_dtys, output_dtys;
      TF_RETURN_IF_ERROR(InputTypesForNode(node_def, *op_def, &input_dtys));
      TF_RETURN_IF_ERROR(OutputTypesForNode(node_def, *op_def, &output_dtys));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      *graph_out = std::move(out);
      return absl::OkStatus();
    }
    
    // Finds the types of the _Arg nodes, indexed by position.
    static Status GetArgTypes(const Graph& graph, DataTypeVector* types) {
      for (Node* n : graph.op_nodes()) {
        if (n->type_string() == kArgOp) {
          int index;
          TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), "index", &index));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/compilability_check_util.cc

      TF_RETURN_IF_ERROR(
          flr->Instantiate(function.name(), AttrSlice(&function.attr()), &handle));
      *fbody = flr->GetFunctionBody(handle);
      CHECK(*fbody);  // Can't be nullptr since we just instantiated it.
      const DataTypeVector& arg_types = (*fbody)->arg_types;
      std::vector<bool> const_args(arg_types.size());
      // If we can't analyze the const args. Bail out.
      TF_RETURN_IF_ERROR(
          BackwardsConstAnalysis(*((*fbody)->graph), &const_args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top