Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for debugString (0.18 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

            } else {
              return av.DebugString() == bv.DebugString();
            }
          },
          absl::StrCat(diff_preamble, " attr mismatch for node ", a.name()), diff);
    }
    
    bool EqualFunctionDef(const FunctionDef& a, const FunctionDef& b,
                          string* diff) {
      if (a.signature().DebugString() != b.signature().DebugString()) {
        if (diff) {
          *diff =
    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/compiler/jit/extract_outside_compilation_pass.cc

            return errors::Internal("Multiple return node for loop cond function ",
                                    loop_cond_func->name(), ": ",
                                    ret_node->DebugString(), " and ",
                                    n->DebugString());
          } else {
            ret_node = n;
          }
        }
      }
      if (!ret_node) {
        return errors::Internal("No _Retval node for loop cond function ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

        return;
      }
      if (!ic_dst->MergeInput(dst.index, shape)) {
        status->status = tensorflow::errors::InvalidArgument(
            "Cannot update edge, incompatible shapes: ", ic_dst->DebugString(shape),
            " and ", ic_dst->DebugString(ic_dst->input(dst.index)), ".");
        return;
      }
      status->status = graph->graph.UpdateEdge(&new_src.oper->node, new_src.index,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        const auto& dim = window.dimensions(i);
        if (dim.size() <= 0) {
          llvm::errs() << "Window " << window.DebugString()
                       << " has a non-positive dimension.\n";
          return std::nullopt;
        }
        if (dim.stride() <= 0) {
          llvm::errs() << "Window " << window.DebugString()
                       << " has a non-positive stride.\n";
          return std::nullopt;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                  "Invalid \"_handle_dtypes\" attribute value for _Arg node: ",
                  shape_attr->DebugString());
            }
            if (shape_attr->list().shape().empty()) {
              return errors::InvalidArgument(
                  "Invalid \"_handle_shapes\" attribute value for _Arg node: ",
                  shape_attr->DebugString());
            }
            DataType dtype = dtype_attr->list().type(0);
    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