Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for node_builder1 (0.16 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

        Node* s1 = Sequencer(
            b2.opts().WithName("F1_sequencer").WithControlInputs({recv1, send1}),
            "F1");
    
        NodeBuilder node_builder1("F1", "F1", lib_def.get());
        node_builder1.Input(a).Input(b);
        Node* call1 =
            b2.opts().WithControlInputs({s1, b}).FinalizeBuilder(&node_builder1);
    
        Node* key_constant2 =
            KeyPlaceholder("F2", b2.opts().WithName("F2_key_placeholder"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

      Node* ret = nullptr;
    
      if (desc->graph->name_map.count(desc->node_builder.node_name())) {
        status->status = InvalidArgument("Duplicate node name in graph: '",
                                         desc->node_builder.node_name(), "'");
      } else {
        if (!desc->colocation_constraints.empty()) {
          desc->node_builder.Attr(
              tensorflow::kColocationAttrName,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      return absl::OkStatus();
    }
    
    void SetMaximalSharding(NodeDefBuilder& node_builder) {
      xla::OpSharding sharding;
      sharding.set_type(xla::OpSharding::MAXIMAL);
      sharding.add_tile_assignment_dimensions(1);
      sharding.add_tile_assignment_devices(0);
      node_builder.Attr("_XlaSharding", sharding.SerializeAsString());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    #include "tensorflow/core/framework/versions.pb.h"
    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/graph/graph.h"
    #include "tensorflow/core/graph/graph_debug_info_builder.h"
    #include "tensorflow/core/graph/node_builder.h"
    #include "tensorflow/core/graph/tensor_id.h"
    #include "tensorflow/core/grappler/utils/transitive_fanin.h"
    #include "tensorflow/core/lib/core/errors.h"
    #include "tensorflow/core/lib/strings/str_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top