Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 81 for debugString (0.35 sec)

  1. tensorflow/compiler/jit/device_compiler.h

        return persistor_.get();
      }
      DeviceCompilerClient<ExecutableType, ClientType>* compiler_client() {
        return compiler_client_.get();
      }
    
      string DebugString() const override;
    
     private:
      // Common implementation of Compile and CompileSingleOp. The `OpKernelContext`
      // parameter is always null for the former.
      Status CompileImpl(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/saved_model_bundle_test.cc

      TF_ASSERT_OK(ReadMetaGraphDefFromSavedModel(export_dir, {kSavedModelTagServe},
                                                  &actual_metagraph));
      EXPECT_EQ(actual_metagraph.DebugString(),
                bundle.meta_graph_def.DebugString());
    }
    
    TEST_F(LoaderTest, RestoreSession) {
      SavedModelBundle bundle;
      SessionOptions session_options;
      RunOptions run_options;
    
      const string export_dir =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_while_results.cc

      // result usage with the corresponding block argument, the result and operand
      // will be removed later in a canonicalization pattern.
      VLOG(4) << "Pruning following op:\n" << debugString(*candidate_op);
      body_yield_operand.replaceAllUsesWith(body_block_argument);
      candidate_op->erase();
      return true;
    }
    
    void RemoveUnusedWhileResultsPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 16 01:49:07 UTC 2022
    - 5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compilation_cluster_signature.cc

    struct SignatureHumanStringAppender {
      explicit SignatureHumanStringAppender(std::string* dest) : dest(dest) {}
      std::string* dest;
      void operator()(const Tensor& arg) {
        absl::StrAppend(dest, "; ", arg.DebugString());
      }
      void operator()(const TensorTypeAndShape& arg) {
        absl::StrAppend(dest, ",", DataTypeString(arg.first));
        absl::StrAppend(dest, " [", absl::StrJoin(arg.second, ","), "]");
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/cc/ops/while_loop_test.cc

      WhileContext* while_ctx;
      for (int i = 0; i < outputs_.size(); ++i) {
        Node* node = outputs_[i].node();
        ASSERT_TRUE(node->IsExit()) << "Output node " << i << ":\n"
                                    << node->DebugString();
        ASSERT_TRUE(node->while_ctx() != nullptr) << i;
        if (i == 0) {
          while_ctx = node->while_ctx();
          EXPECT_EQ(while_ctx->frame_name(), kFrameName);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 22:30:58 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top