| 36 | public: |
| 37 | |
| 38 | void Run(Graph& graph, Layer& layer) const |
| 39 | { |
| 40 | if (layer.GetType() != LayerType::Debug && layer.GetType() != LayerType::Output) |
| 41 | { |
| 42 | // if the inputs/outputs of this layer do not have a debug layer |
| 43 | // insert the debug layer after them |
| 44 | InsertDebugLayerAfter(graph, layer, true); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | protected: |
| 49 | AddDebugToFileImpl() = default; |
nothing calls this directly
no test coverage detected