Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 185 for nodedef (0.1 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

    std::string FindFilePrefixTensorName(const GraphDef& graph_def) {
      for (const NodeDef& node_def : graph_def.node()) {
        if (node_def.op() == FunctionLibraryDefinition::kArgOp) {
          // Matches the `tf_saved_model.index_path = ["__tf_file_prefix"]`.
          const auto index_path_attr_itr =
              node_def.attr().find(kTfSavedModelIndexPathAttr.str());
          if (index_path_attr_itr != node_def.attr().end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_util.cc

                                   src->name());
          placeholder_builder.Attr(kOutsideCompilationSrcOutputAttrName,
                                   src_output);
          NodeDef placeholder_def;
          TF_RETURN_IF_ERROR(placeholder_builder.Finalize(&placeholder_def));
          TF_ASSIGN_OR_RETURN(placeholder_node, g->AddNode(placeholder_def));
          placeholders[placeholder_index] = placeholder_node;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/grappler/grappler_test.cc

          TF_NewGraphProperties(reinterpret_cast<TF_GrapplerItem*>(&item));
      TF_InferStatically(graph_properties, true, false, false, false, status);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
      for (const NodeDef& node : item.graph.node()) {
        if (node.op() == "AddN") {
          int num_values = 0;
          TF_GetInputPropertiesListSize(graph_properties, node.name().c_str(),
                                        &num_values, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 22:30:58 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_kernel_creator_test.cc

    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);
    }
    
    // Create a FunctionDef that takes one resource and one regular param
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 01:39:55 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_kernel_creator.cc

      return CanCreateXlaKernel(props->node_def) &&
             !XlaOpRegistry::IsCompilationDevice(flr.device()->device_type());
    }
    
    static Status CreateXlaKernel(FunctionLibraryRuntime* flr,
                                  const NodeDef& node_def,
                                  std::unique_ptr<OpKernel>* kernel) {
      if (!CanCreateXlaKernel(node_def)) {
        return errors::Internal("Invalid node: ", node_def.ShortDebugString());
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 22:24:01 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-prefer-tf2xla.mlir

      // CHECK: %0 = mhlo.constant dense<[32, 12, 12, 64]> : tensor<4xi32>
      // CHECK-NEXT: %1 = "tf.RandomUniform"(%0) : (tensor<4xi32>) -> tensor<32x12x12x64xf32>
      // expected-remark@+1 {{failed to create tf2xla kernel: INVALID_ARGUMENT: NodeDef missing attrs 'seed2', 'seed' from}}
      %cst = "tf.Const"() {value = dense<[32, 12, 12, 64]> : tensor<4xi32>} : () -> tensor<4xi32>
      %0 = "tf.RandomUniform"(%cst) {} : (tensor<4xi32>) -> tensor<32x12x12x64xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. tensorflow/c/kernels_test.cc

        NodeDef node_def;
        node_def.ParseFromArray(node_def_buf->data, node_def_buf->length);
        EXPECT_EQ(node_def.op(), "TestKernelAttrGetNodeDef");
        EXPECT_EQ(node_def.name(), "FakeNode");
        EXPECT_EQ(node_def.device(), "FakeDevice");
        EXPECT_EQ(node_def.attr_size(), 1);
        const ::tensorflow::AttrValue& value = node_def.attr().at("Attr");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_compile_util.cc

    constexpr const char* kPjRtDeviceCompilationProfilerResourceName =
        "pjrt_device_compilation_profiler";
    }  // namespace
    
    absl::StatusOr<std::unique_ptr<Graph>> CreateSingleOpGraph(
        const NodeDef& node_def, absl::Span<const XlaArgument> args,
        absl::Span<const DataType> result_types) {
      // TODO(b/74182462): We implement this by creating a new dummy Graph including
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/build_xla_ops_pass.cc

                                         old_node->out_edges().end());
      for (const Edge* edge : out_edges) {
        // TODO(sanjoy): This does not update NodeDef inputs.  To be able to update
        // NodeDef inputs we first need to fix encapsulate_subgraphs_pass to fix up
        // the NodeDef inputs to the function call nodes.
        g->AddEdge(new_node, edge->src_output(), edge->dst(), edge->dst_input());
        g->RemoveEdge(edge);
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libexport/load.cc

    }
    
    const SavedObjectGraph& TFPackage::GetObjectGraph() {
      return saved_model_proto_.mutable_meta_graphs(0)->object_graph_def();
    }
    
    tensorflow::StatusOr<const tensorflow::NodeDef*> TFPackage::GetGraphDefNode(
        std::string name) {
      const auto& iter = graph_def_nodes_by_name_.find(name);
      if (iter == graph_def_nodes_by_name_.end()) {
        return tensorflow::Status(absl::StatusCode::kInternal,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 15:16:07 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top