| 10 | namespace cactus { |
| 11 | namespace engine { |
| 12 | LFM2Model::LFM2Model() : Model() { |
| 13 | weight_nodes_.layers.resize(config_.num_layers); |
| 14 | conv_cache_bx_nodes_.assign(config_.num_layers, 0); |
| 15 | } |
| 16 | LFM2Model::LFM2Model(const Config& config) : Model(config) { |
| 17 | weight_nodes_.layers.resize(config_.num_layers); |
| 18 | conv_cache_bx_nodes_.assign(config_.num_layers, 0); |
nothing calls this directly
no outgoing calls
no test coverage detected