From 4c32eb7f8382cc9264d2daba8ecd2bb929877fba Mon Sep 17 00:00:00 2001 From: yanantao78 Date: Mon, 30 Jul 2018 19:24:20 +0800 Subject: [PATCH] remove blank space --- test/common/test_gemm.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/common/test_gemm.cpp b/test/common/test_gemm.cpp index 27cd6d474a..b475fe2db4 100644 --- a/test/common/test_gemm.cpp +++ b/test/common/test_gemm.cpp @@ -50,16 +50,16 @@ int do_sgemm(int m, int n, int k, bool relu, int t1, int t2, int pr) { srand(unsigned(time(0))); for (int i = 0; i < m * k; ++i) { - a[i] = t1 + rand() % t2; + a[i] = t1 + rand() % t2; } for (int i = 0; i < k * n; ++i) { - b[i] = t1 + rand() % t2; + b[i] = t1 + rand() % t2; } for (int i = 0; i < m; ++i) { - scale[i] = t1 + rand() % t2; + scale[i] = t1 + rand() % t2; } for (int i = 0; i < m; ++i) { - bias[i] = t1 + rand() % t2; + bias[i] = t1 + rand() % t2; } for (int i = 0; i < m; ++i) { -- GitLab