Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for debugString (0.39 sec)

  1. tensorflow/compiler/jit/build_xla_ops_pass.cc

      TF_RET_CHECK(func_def) << "Could not find " << function_name;
    
      jit::DeviceSet device_set;
    
      for (const NodeDef& ndef : func_def->node_def()) {
        VLOG(3) << ndef.DebugString();
        if (!ndef.device().empty()) {
          TF_ASSIGN_OR_RETURN(jit::DeviceId device_id,
                              device_info_cache->GetIdFor(ndef.device()));
          device_set.Insert(device_id);
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

      opt_options.flib_def = &flib_def;
    
      BuildXlaOpsPass pass(/*enable_lazy_compilation=*/true);
      TF_RETURN_IF_ERROR(pass.Run(opt_options));
      VLOG(3) << graph->ToGraphDefDebug().DebugString();
      *result = std::move(graph);
      return absl::OkStatus();
    }
    
    Status MakeXlaCompiledKernel(Graph* graph, const string& callee_name,
                                 const string& node_name, int num_constant_args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_util.cc

            *src_outside_compilation != *dst_outside_compilation) {
          edges.push_back(EdgeInfo{e->dst_input(), e->dst()->id()});
          VLOG(4) << "Oc -> oc edge: " << e->DebugString();
        }
      }
    
      // Remove the edge from host to outside compilation. Add a placeholder as
      // outside compilation node input.
      std::map<std::pair<string, int>, Node*> placeholders;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

        mlir::Type type = arg.getType();
        if (!mlir::isa<mlir::TensorType>(type)) {
          return errors::InvalidArgument(
              "FuncOps arguments must have tensor types. Found ",
              mlir::debugString(type), " in function ", function.getName().str());
        }
    
        TF_RETURN_IF_ERROR(exporter.AddArgumentNode(
            arg, index, !input_names.empty() ? input_names[index] : ""));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

        mlir::Type type = arg.getType();
        if (!mlir::isa<mlir::TensorType>(type)) {
          return errors::InvalidArgument(
              "FuncOps arguments must have tensor types. Found ",
              mlir::debugString(type), " in function ", function.getName().str());
        }
    
        TF_RETURN_IF_ERROR(exporter.AddArgumentNode(
            arg, index, !input_names.empty() ? input_names[index] : ""));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. tensorflow/c/while_loop_test.cc

        DCHECK_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
        GraphDef def;
        bool success = def.ParseFromArray(buf->data, buf->length);
        DCHECK(success);
        TF_DeleteBuffer(buf);
        return def.DebugString();
      }
    
      TF_Status* s_;
      TF_Graph* graph_;
      std::vector<TF_Output> inputs_;   // The inputs to the while loop
      std::vector<TF_Output> outputs_;  // The final outputs of the while loop
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api.cc

            TF_SetStatus(
                status, TF_UNIMPLEMENTED,
                tensorflow::strings::StrCat("Unable to get setfor default value: ",
                                            default_value.DebugString())
                    .data());
          }
        } break;
        case tensorflow::AttrValue::kTensor:
          TF_FALLTHROUGH_INTENDED;
        case tensorflow::AttrValue::kPlaceholder:
          TF_FALLTHROUGH_INTENDED;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/node_matchers.cc

        bool printed_something = !predicates.empty();
    
        *os << absl::StrJoin(predicates, ", ");
    
        if (constant_value) {
          printed_something = true;
          *os << "constant value: " << constant_value->DebugString();
        }
    
        if (input_matchers) {
          if (!input_matchers->empty()) {
            printed_something = true;
            *os << " with " << (input_matchers->size() == 1 ? "only " : "")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

        std::unique_ptr<Graph> g(new Graph(OpRegistry::Global()));
        TF_CHECK_OK(s.ToGraph(g.get()));
        std::cout << "Graph is " << (*g).ToGraphDefDebug().DebugString()
                  << std::endl;
        auto node_name_image = g->BuildNodeNameIndex();
        node_name_image["identity0"]->AddAttr("_oc", "0");
        node_name_image["identity1"]->AddAttr("_oc", "1");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      }
      if (VLOG_IS_ON(4)) {
        for (Operation* new_control_predecessor : new_control_predecessors) {
            VLOG(4) << "      Adding predecessor op "
                    << mlir::debugString(*new_control_predecessor);
        }
      }
      // Add new control predecessors to map.
      control_predecessors_[op].insert(new_control_predecessors.begin(),
                                       new_control_predecessors.end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top