#include #include #include #include #include #include #include #include #include #include #include namespace torch { namespace autograd { /// Monotonically incrementing (thread local!) counter to supply sequence /// numbers. thread_local uint64_t Function_next_sequence_nr_ = 0; uint64_t Node::peek_at_next_sequence_nr() { return Function_next_sequence_nr_; } uint64_t& Node::get_next_sequence_nr() { return Function_next_sequence_nr_; } auto Node::name() const -> std::string { return c10::demangle(typeid(*this).name()); } AnomalyMetadata* Node::metadata() noexcept { if (!anomaly_metadata_) { anomaly_metadata_ = Engine::get_default_engine().make_anomaly_metadata(); } return anomaly_metadata_.get(); } static void gatherFunctions( Node* func, std::vector>& stack) { func->release_variables(); for (auto& edge : func->next_edges()) { if (edge.function.use_count() == 1) { stack.emplace_back(std::move(edge.function)); } else { edge.function.reset(); } } } /* * Fix for #5534: prevent stack overflow on deletion of deep computation graph * * Sometimes one can end up with a very big computation graph of Nodes * and Edges. Each std::shared_ptr contains a list of Edge, and * each Edge contains a std::shared_ptr. Deleting a * std::shared_ptr can trigger the recursive deletion of other * std::shared_ptr's: this can stack overflow if the graph * is deep enough. Here is an example of such a graph: * * shared_ptr -> Edge -> shared_ptr -> Edge -> ... -> shared_ptr * * The solution here is to detect when we are decrementing away the last * reference to a Node, and when doing so to buffer up the Node's * that will be recursively decremented. We can then decrement (and free) * the original Node without causing a recursive cascade, before * draining the buffer applying the same behavior. This is, in effect, * converting recursion to a loop, using a heap buffer in place of the * recursive call stack. */ void deleteNode(Node* function) { // To avoid stack overflow on large computational graphs, // we need to track reference decrementing and freeing // on the heap. function->release_variables(); std::vector> stack; gatherFunctions(function, stack); delete function; while (!stack.empty()) { auto func = std::move(stack.back()); stack.pop_back(); gatherFunctions(func.get(), stack); // Reference count is decremented on the loop backedge. } } }} // namespace torch::autograd