]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - jacinto-ai/caffe-jacinto.git/blobdiff - src/caffe/layers/concat_layer.cpp
enabling quant at input side - reauired to quantize weights before the operations
[jacinto-ai/caffe-jacinto.git] / src / caffe / layers / concat_layer.cpp
index b39b9f70d08e3b7df335ca3a28df889ede6e81f2..d848d7cd839ca691c96069f433b6b9641d4dd576 100644 (file)
@@ -56,7 +56,7 @@ void ConcatLayer<Ftype, Btype>::Reshape(const vector<Blob*>& bottom,
 template <typename Ftype, typename Btype>
 void ConcatLayer<Ftype, Btype>::Forward_cpu(const vector<Blob*>& bottom,
       const vector<Blob*>& top) {
-  //this->Quantize_cpu(bottom, top);
+  this->Quantize_cpu(bottom, top);
   if (bottom.size() == 1) { return; }
   Ftype* top_data = top[0]->mutable_cpu_data<Ftype>();
   int offset_concat_axis = 0;