Add a utility function to caffe: Something like: ``` C++ int bitcount(unsigned int v) { #ifndef _MSCVER return __builtin_popcount(v); #else return __pop_count(v) #endif } ```