| 79 | |
| 80 | template <typename T> |
| 81 | void add_convolution_layer_method(DataLayerVisitor::LayerData &layer_data, T &node) |
| 82 | { |
| 83 | std::ostringstream method; |
| 84 | method << node.convolution_method(); |
| 85 | layer_data["convolution_method"] = method.str(); |
| 86 | } |
| 87 | |
| 88 | template <typename T> |
| 89 | void add_generic_layer_data(DataLayerVisitor::LayerData &layer_data, T &node) |
nothing calls this directly
no test coverage detected