| 61 | } |
| 62 | |
| 63 | void ConcatConvBase::setDst(const Ref<Tensor>& dst) |
| 64 | { |
| 65 | if (!dst || dst->getDesc() != dstDesc) |
| 66 | throw std::invalid_argument("invalid concat+conv destination"); |
| 67 | |
| 68 | this->dst = dst; |
| 69 | updateDst(); |
| 70 | } |
| 71 | |
| 72 | // ----------------------------------------------------------------------------------------------- |
| 73 |