| 82 | |
| 83 | template<typename B> |
| 84 | module::Encoder_conv<B>* |
| 85 | Encoder_conv ::build() const |
| 86 | { |
| 87 | if (this->type == "CONV") return new module::Encoder_conv<B>(this->K, this->N_cw, this->poly); |
| 88 | |
| 89 | throw spu::tools::cannot_allocate(__FILE__, __LINE__, __func__); |
| 90 | } |
| 91 | |
| 92 | // ==================================================================================== explicit template instantiation |
| 93 | #include "Tools/types.h" |
nothing calls this directly
no outgoing calls
no test coverage detected