Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for debugString (0.22 sec)

  1. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

            Node* output_node = le->dst();
    
            if (add_edges_to_output_of_downstream_nodes) {
              TF_RET_CHECK(output_node->type_string() == kXlaClusterOutput)
                  << le->DebugString();
              nodes_to_remove.push_back(output_node);
    
              for (const Edge* oe : output_node->out_edges()) {
                TF_RET_CHECK(!oe->IsControlEdge());
                data_outputs[le->src_output()].push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.cc

        MaybeMarkUncompilableNode(uncompilable_reason, *stack_trace,
                                  encapsulating_function, uncompilable_nodes);
        VLOG(2) << "Rejecting " << call_def.DebugString() << ": "
                << uncompilable_reason << " : " << s;
        return false;
      }
    
      auto release_handle_on_return = gtl::MakeCleanup(
          [&] { TF_CHECK_OK(lib_runtime->ReleaseHandle(handle)); });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        auto optional_merged_node = cycles_graph_.ContractEdge(from, to);
        if (!optional_merged_node.has_value()) {
          VLOG(3) << "Could not contract " << cluster_from->DebugString(*graph_)
                  << " -> " << cluster_to->DebugString(*graph_)
                  << " because contracting the edge would create a cycle via "
                  << DescribePotentialCycle(from, to) << ".";
          return false;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/partially_decluster_pass.cc

            GetXlaClusterForNode(*dst);
        if (dst_cluster_name != cluster_name) {
          out_edges_to_clone.push_back(out_edge);
        }
      }
    
      CHECK(!out_edges_to_clone.empty()) << n->DebugString();
    
      NodeDef ndef = n->def();
      ndef.set_name(absl::StrCat(n->name(), "/declustered"));
      MergeDebugInfo(NodeDebugInfo(n->def()), &ndef);
      RemoveFromXlaCluster(&ndef);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/metrics/error_collector_inst_test.cc

          1);
    
      // Check the location information.
      std::vector<std::string> locations;
      for (const auto& error : collected_errors) {
        EXPECT_TRUE(error.has_location());
        locations.push_back(error.location().DebugString());
      }
    
      EXPECT_THAT(locations, Each(testing::HasSubstr("CALLSITELOC")));
      EXPECT_THAT(locations, Each(testing::HasSubstr(input_file)));
      EXPECT_THAT(locations, Contains(testing::HasSubstr("line: 2")));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 01:48:36 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

          },
          fallback_state.device_manager(),
          fallback_state.process_function_library_runtime());
      RETURN_FAILURE_IF_ERROR(runner.status());
    
      VLOG(1) << "Start to evaluate node: " << node_def->get()->DebugString();
    
      std::vector<tensorflow::Tensor> inputs;
    
      // Adds inputs to the TF operation.
      for (const ElementsAttr& operand : operands) {
        tensorflow::Tensor tensor;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.cc

      InputArrays inputs;
      ss << "\ninputs: ";
      for (auto& it : inputs) {
        ss << "\n\t" << it.first << " -> "
           << DataTypeString(it.second.imported_dtype) << " "
           << it.second.shape.DebugString();
      }
      ss << "\noutputs:";
      for (auto& output : outputs) ss << " " << output;
      ss << "\ncontrol_outputs:";
      for (auto& output : control_outputs) ss << " " << output;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_util.h

          absl::string_view device_name) {
        TF_ASSIGN_OR_RETURN(DeviceId device_id, GetIdFor(device_name));
        return std::cref(*id_to_device_type_[device_id.id()]);
      }
    
      string DebugString(const DeviceSet& device_set) const;
    
     private:
      absl::flat_hash_map<string, DeviceId> name_to_id_;
    
      // These fields are populated for a device in GetIdFor, *before* we give out a
      // DeviceId.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/cc/framework/gradient_checker.cc

                return errors::Internal("Gradient for input ", x_idx,
                                        " expected shape ",
                                        x_shapes[x_idx].DebugString(), " but was ",
                                        dxout[x_idx].shape().DebugString());
              }
              const int64_t x_size = x_shapes[x_idx].num_elements();
              auto jacobian = (*jacobian_ts)[x_idx * y_num + y_idx].matrix<JAC_T>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top