From fe4b78f9280469f9f99836a8c0c9c1ee140825c6 Mon Sep 17 00:00:00 2001 From: "jan.reininghaus" Date: Tue, 29 Apr 2014 09:14:20 +0000 Subject: switched num chunks to num threads in chunk_reduction.h and spectral_sequence_reduction.h git-svn-id: https://phat.googlecode.com/svn/trunk@162 8e3bb3c2-eed4-f18f-5264-0b6c94e6926d --- include/phat/algorithms/chunk_reduction.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/phat/algorithms/chunk_reduction.h') diff --git a/include/phat/algorithms/chunk_reduction.h b/include/phat/algorithms/chunk_reduction.h index 51460c2..0e096b5 100644 --- a/include/phat/algorithms/chunk_reduction.h +++ b/include/phat/algorithms/chunk_reduction.h @@ -39,8 +39,8 @@ namespace phat { std::vector < column_type > column_type( nr_columns, GLOBAL ); std::vector< char > is_active( nr_columns, false ); - const index chunk_size = (index) sqrt( (double)nr_columns ); - //const index chunk_size = nr_columns / omp_get_max_threads( ); + //const index chunk_size = (index) sqrt( (double)nr_columns ); + const index chunk_size = nr_columns / omp_get_max_threads( ); std::vector< index > chunk_boundaries; for( index cur_boundary = 0; cur_boundary < nr_columns; cur_boundary += chunk_size ) -- cgit v1.2.3