#include #include "caffe/layers/neuron_layer.hpp" namespace caffe { template void NeuronLayer::Reshape(const vector*>& bottom, const vector*>& top) { top[0]->ReshapeLike(*bottom[0]); } INSTANTIATE_CLASS(NeuronLayer); } // namespace caffe