| 819 | } |
| 820 | |
| 821 | void Model::capture_debug_node(uint32_t layer_idx, const std::string& name, size_t node_id) const { |
| 822 | auto* graph = static_cast<CactusGraph*>(graph_handle_); |
| 823 | if (!graph) { |
| 824 | return; |
| 825 | } |
| 826 | graph->capture_debug_node(layer_idx, name, node_id); |
| 827 | } |
| 828 | |
| 829 | void Model::clear_debug_nodes() { |
| 830 | auto* graph = static_cast<CactusGraph*>(graph_handle_); |
nothing calls this directly
no outgoing calls
no test coverage detected