Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 81 for debugString (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

                             sizeof(value), os);
      }
    };
    
    // We print a protobuf using its ShortDebugString() when the string
    // doesn't exceed this many characters; otherwise we print it using
    // DebugString() for better readability.
    const size_t kProtobufOneLinerMaxLength = 50;
    
    template <typename T>
    class TypeWithoutFormatter<T, kProtobuf> {
     public:
      static void PrintValue(const T& value, ::std::ostream* os) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

                             sizeof(value), os);
      }
    };
    
    // We print a protobuf using its ShortDebugString() when the string
    // doesn't exceed this many characters; otherwise we print it using
    // DebugString() for better readability.
    const size_t kProtobufOneLinerMaxLength = 50;
    
    template <typename T>
    class TypeWithoutFormatter<T, kProtobuf> {
     public:
      static void PrintValue(const T& value, ::std::ostream* os) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top