aboutsummaryrefslogtreecommitdiff
path: root/internal/single_thread_gemm.h
diff options
context:
space:
mode:
Diffstat (limited to 'internal/single_thread_gemm.h')
-rw-r--r--internal/single_thread_gemm.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/internal/single_thread_gemm.h b/internal/single_thread_gemm.h
index 3d430c5..35a7835 100644
--- a/internal/single_thread_gemm.h
+++ b/internal/single_thread_gemm.h
@@ -89,10 +89,9 @@ void SingleThreadGemm(SingleThreadGemmContext* context,
Allocator* allocator = context->allocator();
BlockParams block_params;
- block_params.Init<KernelFormat>(rows, cols, depth, 1,
- context->l1_bytes_to_use(),
- context->l2_bytes_to_use(),
- context->l2_rhs_factor());
+ block_params.Init<KernelFormat>(
+ rows, cols, depth, 1, context->l1_bytes_to_use(),
+ context->l2_bytes_to_use(), context->l2_rhs_factor());
#ifdef GEMMLOWP_PROFILING_SIZES
// Using a static map of label strings. Not reentrant at all!