32-bit integer type is used instead of 64-bits for loop variable
Tensor size() is int64_t type. 32-bit int type is used as loop variable: ex in sadl/layer_prelu.h L.232: const int N = m_out.size(); // (in addidition, visual doesn't like this line) L.296: for (int iter = 0; iter < m_out.size(); iter += 16)