| 7 | |
| 8 | template <typename Dtype> |
| 9 | void ConcatLayer<Dtype>::LayerSetUp(const vector<Blob<Dtype>*>& bottom, |
| 10 | const vector<Blob<Dtype>*>& top) { |
| 11 | const ConcatParameter& concat_param = this->layer_param_.concat_param(); |
| 12 | CHECK(!(concat_param.has_axis() && concat_param.has_concat_dim())) |
| 13 | << "Either axis or concat_dim should be specified; not both."; |
| 14 | } |
| 15 | |
| 16 | template <typename Dtype> |
| 17 | void ConcatLayer<Dtype>::Reshape(const vector<Blob<Dtype>*>& bottom, |
nothing calls this directly
no outgoing calls
no test coverage detected