From 46d1fa7097ecc7d6b361187b77ede02117e9c9a2 Mon Sep 17 00:00:00 2001 From: Sandeep Krishnamurthy Date: Fri, 1 Feb 2019 18:57:14 -0800 Subject: [PATCH] Fix lint issues --- src/operator/image/image_random-inl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/operator/image/image_random-inl.h b/src/operator/image/image_random-inl.h index 64f12b4f3a6c..5041bf433588 100644 --- a/src/operator/image/image_random-inl.h +++ b/src/operator/image/image_random-inl.h @@ -163,11 +163,11 @@ template struct normalize_forward { template MSHADOW_XINLINE static void Map(uint32_t c, DType* out_data, const DType* in_data, - const NormalizeParam ¶m, const int length, + const NormalizeParam ¶m, const int length, const int step) { DType mean = param.mean[param.mean.ndim() > c ? c : 0]; DType std_dev = param.std[param.std.ndim() > c ? c : 0]; - + #pragma omp parallel for for (int i = 0; i < length; ++i) { KERNEL_ASSIGN(out_data[step + c*length + i], req,