├── .gitignore ├── Makefile ├── README.md ├── adaptive_boxes.cu ├── data ├── README.md ├── boston12.csv ├── complex11.csv ├── hall10.csv ├── squares.csv └── theatre12.csv ├── include ├── csv_tools.h ├── cuda_call.h ├── getters.h ├── io_tools.h ├── random_generator.h ├── rectangle.h ├── rectangular_explorer_kernel.h └── rectangular_remover_kernel.h ├── log_tools ├── logs │ ├── log_boston12.csv_1 │ ├── log_boston12.csv_10 │ ├── log_boston12.csv_100 │ ├── log_boston12.csv_600: │ ├── log_complex11.csv_1 │ ├── log_complex11.csv_10 │ ├── log_complex11.csv_100 │ ├── log_complex11.csv_600: │ ├── log_hall10.csv_1 │ ├── log_hall10.csv_10 │ ├── log_hall10.csv_100 │ ├── log_hall10.csv_600: │ ├── log_theatre12.csv_1 │ ├── log_theatre12.csv_10 │ ├── log_theatre12.csv_100 │ └── log_theatre12.csv_600: └── record.sh └── test ├── Makefile ├── hall10.h ├── test └── test_getters.cu /.gitignore: -------------------------------------------------------------------------------- 1 | /*data/*/ 2 | adabox 3 | results/ 4 | third_party/ 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | nvcc -O3 --std=c++11 adaptive_boxes.cu -o adabox 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # adaptive-boxes-gpu :zap: :package: 2 | 3 | 4 | 5 | GPU-accelerated rectangular decomposition for sound propagation modeling in 2D. [![Article](https://img.shields.io/badge/ieee-article-blue.svg)](https://ieeexplore.ieee.org/document/8966434) 6 | 7 | 8 | ## Samples 9 | 10 | High resolution images! Click over any image to see the rectangular decomposition's details. 11 | 12 | 13 | ### Scene 1 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | ### Scene 2 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | ### Scene 3 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | ## Usage Guide 46 | 47 | ### Requirements 48 | - CUDA 9.0 49 | - Thrust parallel template library 50 | - CuRand 51 | 52 | ### Basics 53 | First compile the `adaptive_boxes.cu` script. Just do `make`. 54 | 55 | Run `./adabox` with the following arguments: 56 | - [1] input file (binary matrix in .csv) 57 | - [2] output file (list of rectangles in .csv) 58 | - [3] n (# of tests = n x n) 59 | 60 | ### Input file 61 | The input should be a `.csv` file which contains the matrix size and the binary matrix data. 62 | Some samples are located in `data` folder. As a simple example see `squares.csv`. 63 | 64 | ### Output file 65 | A list of resulting rectangles in a `.csv` file. 66 | Data is given in the format: `[x1 x2 y1 y2]` (Two points rectangle location). 67 | 68 | ## Performance Test 69 | 70 | Execution time in seconds: 71 | 72 | 73 | | # of parallel searches `[n]` | Scene 1 | Scene 2 | Scene 3 | 74 | |------------------------|--------|--------|--------| 75 | | 2400 | 3.1 | 2.6 | 2 | 76 | 77 | Tests were performed using a GPU NVIDIA Tesla V100. 78 | 79 | ## Extra info 80 | 81 | ### How does it work? Why sound propagation modeling? 82 | 83 | Adaptive Rectangular Decomposition (ARD) is an efficient technique for modeling the sound propagation. This technique reduces the computational overhead and memory requirements by using non-dispersive sub-rectangular domains suitable for parallel computation. In order to use this technique, the scene should be decomposed into large inscribed rectangles. For large and complex scenes, it is not feasible to find an optimal set of large rectangles and thus an approximation should be used. In this paper, we present a GPU-accelerated algorithm for searching an adequate rectangular decomposition of a 2D scene in a reasonable time. Our algorithm performs a fast parallel search in the entire domain. As a result, large and complex scenes can be decomposed in seconds and it enables them to be numerically modeled in parallel using ARD. 84 | 85 | More info: [GPU-accelerated rectangular decomposition for sound propagation modeling in 2D](https://ieeexplore.ieee.org/document/8966434). 86 | 87 | ### How to plot the `.csv` results? 88 | Use `adaptive-boxes` python library: 89 | 90 | pip install adaptive-boxes 91 | 92 | See here [adabox](https://github.com/jnfran92/adaptive-boxes). 93 | -------------------------------------------------------------------------------- /adaptive_boxes.cu: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | #include 4 | // thrust 5 | #include 6 | #include 7 | #include 8 | #include 9 | //STL 10 | #include 11 | // cuda call 12 | #include "./include/cuda_call.h" 13 | // kernels 14 | #include "./include/rectangular_explorer_kernel.h" 15 | #include "./include/rectangular_remover_kernel.h" 16 | // rectangle struct 17 | #include "./include/rectangle.h" 18 | // csv 19 | #include "./include/csv_tools.h" 20 | #include "./include/io_tools.h" 21 | 22 | 23 | int main(int argc, char *argv[]){ 24 | printf("adaptive-boxes-gpu\n"); 25 | printf("GPU-accelerated rectangular decomposition for sound propagation modeling\n"); 26 | 27 | if (argc < 4){ 28 | printf("Error Args: 4 Needed \n[1]input file(binary matrix in .csv)\n[2]output file(list of rectangles in .csv) \n[3]n (# of tests = n*n)\n"); 29 | return 0; 30 | } 31 | 32 | // Arguments 33 | std::string input_file_name = argv[1]; 34 | std::string output_file_name = argv[2]; 35 | int n_tests = atoi(argv[3]); 36 | 37 | 38 | // Reading data 39 | printf("Reading Data...\n"); 40 | std::cout << "reading: " << input_file_name << std::endl; 41 | 42 | csv_data_t csv_data; 43 | read_numerical_csv(input_file_name, false, csv_data); 44 | // csv_data.print_data(); 45 | 46 | long m = csv_data.m; 47 | long n = csv_data.n; 48 | int *data = &csv_data.data_vec[0]; 49 | printf("Data on Memory: Data size: m %ld , n% ld\n",m, n); 50 | 51 | // CUDA timers 52 | cudaEvent_t start, stop; 53 | cudaEventCreate(&start); 54 | cudaEventCreate(&stop); 55 | 56 | // Rectangles vector 57 | std::vector recs; 58 | 59 | // CUDA 60 | int grid_x = n_tests; // fixed 61 | int grid_y = n_tests; // 62 | printf("Number of tests: %d \n",grid_x*grid_y); 63 | 64 | // GPU data 65 | int *data_d; 66 | int *areas_d; 67 | int *out_d; 68 | 69 | // Thrust Data 70 | thrust::device_vector t_data_d(m*n); 71 | data_d = thrust::raw_pointer_cast(&t_data_d[0]); 72 | 73 | thrust::device_vector t_areas_d(grid_x*grid_y); 74 | areas_d = thrust::raw_pointer_cast(&t_areas_d[0]); 75 | 76 | thrust::device_vector t_out_d(grid_x*grid_y*4); 77 | out_d = thrust::raw_pointer_cast(&t_out_d[0]); 78 | 79 | // Copy data to device memory 80 | cudaMemcpy(data_d, data, sizeof(int)*m*n, cudaMemcpyHostToDevice); 81 | 82 | // Grid and Block size 83 | dim3 grid(grid_x, grid_y, 1); 84 | dim3 block(4, 1, 1); // fixed size 85 | 86 | // Init algorithm ----------------------- 87 | cudaEventRecord(start); 88 | // Setup cuRand 89 | curandState *devStates; 90 | CC(cudaMalloc((void **)&devStates, grid_x*grid_y*sizeof(unsigned int))); 91 | 92 | setup_kernel<<>>(devStates); 93 | cudaDeviceSynchronize(); 94 | 95 | // Loop 96 | printf("Working...\n"); 97 | rectangle_t rec; 98 | int max_step = 999999; 99 | int sum; 100 | 101 | // init last sum 102 | int last_sum = thrust::reduce(t_data_d.begin(), t_data_d.end()); 103 | 104 | int last_x1 = -1; 105 | int last_x2 = -1; 106 | int last_y1 = -1; 107 | int last_y2 = -1; 108 | 109 | int x1,x2,y1,y2; 110 | 111 | for (int step=0; step>>(devStates,m,n,data_d,out_d, areas_d); 113 | cudaDeviceSynchronize(); 114 | 115 | thrust::device_vector::iterator iter = thrust::max_element(t_areas_d.begin(), t_areas_d.end()); 116 | unsigned int position = iter - t_areas_d.begin(); 117 | int max_val = *iter; 118 | 119 | if (max_val==0){ 120 | continue; 121 | } 122 | 123 | x1 = t_out_d[position*4 + 0]; 124 | x2 = t_out_d[position*4 + 1]; 125 | y1 = t_out_d[position*4 + 2]; 126 | y2 = t_out_d[position*4 + 3]; 127 | 128 | 129 | if (!((last_x1==x1) & (last_x2==x2) & (last_y1==y1) & (last_y2==y2)) ){ 130 | int dist_y = (y2 - y1) + 1; 131 | int dist_x = (x2 - x1) + 1; 132 | int x_blocks = (int)ceil((double)dist_x/2.0); 133 | int y_blocks = (int)ceil((double)dist_y/2.0); 134 | 135 | dim3 tmp_block(2, 2, 1); 136 | dim3 tmp_grid(x_blocks, y_blocks, 1); 137 | 138 | remove_rectangle_from_matrix<<>>(x1,x2,y1,y2, data_d, m, n); 139 | cudaDeviceSynchronize(); 140 | 141 | sum = thrust::reduce(t_data_d.begin(), t_data_d.end()); 142 | 143 | if(sum < last_sum){ 144 | rec.x1 = x1; 145 | rec.x2 = x2; 146 | rec.y1 = y1; 147 | rec.y2 = y2; 148 | recs.push_back(rec); 149 | } 150 | 151 | /*printf("sum = %d\n", sum); */ 152 | 153 | last_sum = sum; 154 | if(sum<=0){ 155 | break; 156 | } 157 | 158 | last_x1 = x1; 159 | last_x2 = x2; 160 | last_y1 = y1; 161 | last_y2 = y2; 162 | } 163 | } 164 | 165 | cudaEventRecord(stop); 166 | cudaEventSynchronize(stop); 167 | float milliseconds = 0; 168 | cudaEventElapsedTime(&milliseconds, start, stop); 169 | printf("Decomposition ready!!\n"); 170 | printf("-->Elapsed time: %f\n", milliseconds); 171 | printf("-->Last sum %d\n",sum); 172 | 173 | 174 | /*Saving data in csv format*/ 175 | std::cout << "Saving rectagles - total amount of rectangles: "<< recs.size() << std::endl; 176 | save_rectangles_in_csv(output_file_name, &recs); 177 | 178 | // Free memory 179 | cudaFree(devStates); 180 | /*delete data;*/ 181 | 182 | return 0; 183 | } 184 | -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | # Data Sample 2 | Data should be a binary matrix, that's all! 3 | For instance, see `squares.csv` which represents a rectangular rasterized shape. 4 | 5 | 0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0 6 | 0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0 7 | 0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0 8 | 0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0 9 | 0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0 10 | 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1 11 | 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1 12 | 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1 13 | 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1 14 | 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1 15 | 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 16 | 1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 17 | 18 | -------------------------------------------------------------------------------- /data/squares.csv: -------------------------------------------------------------------------------- 1 | 0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0 2 | 0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0 3 | 0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0 4 | 0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0 5 | 0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0 6 | 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1 7 | 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1 8 | 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1 9 | 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1 10 | 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1 11 | 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 12 | 1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 -------------------------------------------------------------------------------- /include/csv_tools.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Juan Francisco on 2020-02-05. 3 | // 4 | 5 | #ifndef BOOSTED_ARD_IO_TOOLS_H 6 | #define BOOSTED_ARD_IO_TOOLS_H 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | 17 | 18 | // Reading data in csv 19 | struct csv_data_t{ 20 | std::vector data_vec; 21 | std::string header; 22 | long m{}; 23 | long n{}; 24 | 25 | double get(int i, int j){ 26 | return data_vec[i*n + j]; 27 | } 28 | 29 | int get_int(int i, int j){ 30 | return static_cast(data_vec[i * n + j]); 31 | } 32 | 33 | void print_data(){ 34 | std::cout<< "HEADER: " << header << std::endl; 35 | std::cout << "m " << m << " n " << n << std::endl; 36 | std::cout << "data: " << std::endl; 37 | for (auto i=0; i vec_first; 62 | boost::algorithm::split(vec_first, str, boost::is_any_of(",")); 63 | 64 | n = vec_first.size(); 65 | csv_data.n = n; 66 | 67 | if (!has_header){ 68 | for(const std::string &data : vec_first) { 69 | csv_data.data_vec.push_back(std::stoi(data)); 70 | } 71 | counter++; 72 | }else{ 73 | csv_data.header = str; 74 | } 75 | 76 | while (std::getline(file, str)){ 77 | std::vector vec; 78 | boost::algorithm::split(vec, str, boost::is_any_of(",")); 79 | if(vec.size() != n){ 80 | throw 0; // CSV Data are not homogeneous, size of each row is different. 81 | } 82 | for(const std::string &data : vec){ 83 | csv_data.data_vec.push_back(std::stoi( data )); 84 | } 85 | counter++; 86 | } 87 | 88 | m = counter; 89 | csv_data.m = m; 90 | } 91 | 92 | 93 | #endif //BOOSTED_ARD_IO_TOOLS_H 94 | -------------------------------------------------------------------------------- /include/cuda_call.h: -------------------------------------------------------------------------------- 1 | 2 | #define CC(x) do { if((x) != cudaSuccess) { \ 3 | printf("Error at %s:%d\n",__FILE__,__LINE__); \ 4 | return EXIT_FAILURE;}} while(0) 5 | 6 | -------------------------------------------------------------------------------- /include/getters.h: -------------------------------------------------------------------------------- 1 | 2 | #include "stdio.h" 3 | #include "stdlib.h" 4 | 5 | // ng: New Getters Optimized 6 | namespace ng{ 7 | 8 | __device__ __host__ int get_bottom_distance(int idx_i_arg, int idx_j_arg, int n_arg, int lim, int *data_matrix_arg){ 9 | int di =0; 10 | int temp_val = 0; 11 | for (int i=idx_i_arg; ilim; i--){ 25 | temp_val = data_matrix_arg[i * n_arg + idx_j_arg]; 26 | if(temp_val == 0){ 27 | break; 28 | } 29 | di++; 30 | } 31 | return di; 32 | } 33 | 34 | // results matrix: [x1 x2 y1 y2] 35 | __device__ __host__ void get_right_bottom_rectangle(int idx_i_arg, int idx_j_arg, long m_arg, long n_arg, int *data_matrix_arg, int *results){ 36 | 37 | int x1_val = 0; 38 | int x2_val = 0; 39 | int y1_val = 0; 40 | int y2_val = 0; 41 | 42 | int d0, dj; 43 | 44 | d0 = get_bottom_distance( idx_i_arg, idx_j_arg, n_arg, m_arg, data_matrix_arg); 45 | 46 | dj = 0; 47 | for (int j=idx_j_arg + 1; j=0; j--){ 83 | 84 | int di = get_bottom_distance( idx_i_arg, j, n_arg, idx_i_arg + d0, data_matrix_arg); 85 | 86 | if (di < d0){ 87 | break; 88 | } 89 | dj++; 90 | } 91 | 92 | x1_val = idx_j_arg; 93 | y1_val = idx_i_arg; 94 | x2_val = idx_j_arg - dj; 95 | y2_val = idx_i_arg + d0 - 1; 96 | 97 | 98 | results[0] = x1_val; 99 | results[1] = x2_val; 100 | results[2] = y1_val; 101 | results[3] = y2_val; 102 | } 103 | 104 | 105 | 106 | __device__ __host__ void get_left_top_rectangle(int idx_i_arg, int idx_j_arg, long n_arg, int *data_matrix_arg, int *results){ 107 | 108 | 109 | int x1_val = 0; 110 | int x2_val = 0; 111 | int y1_val = 0; 112 | int y2_val = 0; 113 | 114 | 115 | int d0, dj; 116 | 117 | d0 = get_top_distance( idx_i_arg, idx_j_arg, n_arg, -1, data_matrix_arg); 118 | dj = 0; 119 | for (int j=idx_j_arg - 1; j>-1; j--){ 120 | 121 | int di = get_top_distance( idx_i_arg, j, n_arg, idx_i_arg - d0, data_matrix_arg); 122 | if (di < d0){ 123 | break; 124 | } 125 | dj++; 126 | } 127 | 128 | x1_val = idx_j_arg; 129 | y1_val = idx_i_arg; 130 | x2_val = idx_j_arg - dj; 131 | y2_val = idx_i_arg - d0 + 1; 132 | 133 | 134 | results[0] = x1_val; 135 | results[1] = x2_val; 136 | results[2] = y1_val; 137 | results[3] = y2_val; 138 | } 139 | 140 | 141 | __device__ __host__ void get_right_top_rectangle(int idx_i_arg, int idx_j_arg, long n_arg, int *data_matrix_arg, int *results){ 142 | 143 | 144 | int x1_val = 0; 145 | int x2_val = 0; 146 | int y1_val = 0; 147 | int y2_val = 0; 148 | 149 | 150 | int d0, dj; 151 | 152 | d0 = get_top_distance( idx_i_arg, idx_j_arg, n_arg, -1, data_matrix_arg); 153 | dj = 0; 154 | for (int j=idx_j_arg + 1; j 5 | #include 6 | #include 7 | #include 8 | #include "./rectangle.h" 9 | #include 10 | #include 11 | 12 | 13 | struct binary_matrix_t{ 14 | int *data; 15 | long m; 16 | long n; 17 | }; 18 | 19 | // Reading data in csv 20 | void read_binary_data(std::string file_name, binary_matrix_t *matrix_t){ 21 | 22 | std::ifstream file(file_name); 23 | std::string str; 24 | 25 | long m = 0; 26 | long n = 0; 27 | long counter = 0; 28 | long counter_matrix = 0; 29 | while (std::getline(file, str)){ 30 | 31 | if (counter == 0){ 32 | m = std::stoi(str); 33 | matrix_t->m = m; 34 | //std::cout << m << std::endl; 35 | } 36 | 37 | if (counter == 1){ 38 | n = std::stoi(str); 39 | matrix_t->n = n; 40 | matrix_t->data = new int[m*n]; 41 | //std::cout << n << std::endl; 42 | } 43 | 44 | if (counter > 1){ 45 | std::vector vec; 46 | boost::algorithm::split(vec, str, boost::is_any_of(",")); 47 | for(std::string data : vec){ 48 | matrix_t->data[counter_matrix] = std::stoi( data ); 49 | counter_matrix++; 50 | } 51 | } 52 | counter++; 53 | } 54 | } 55 | 56 | // Saving data in csv format 57 | void save_rectangles_in_csv(std::string file_name, std::vector *recs){ 58 | 59 | std::ofstream r_file; 60 | r_file.open(file_name); 61 | 62 | std::vector::iterator v = recs->begin(); 63 | while(v !=recs->end()){ 64 | r_file << v->x1 <<", "<< v->x2 <<", "<< v->y1 <<", "<< v->y2 << "\n"; 65 | v++; 66 | } 67 | r_file.close(); 68 | } 69 | 70 | #endif 71 | -------------------------------------------------------------------------------- /include/random_generator.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | #include 4 | 5 | __global__ void setup_kernel(curandState *state) 6 | { 7 | 8 | //int i = threadIdx.y; 9 | int j = threadIdx.x; 10 | 11 | int b_i = blockIdx.y; 12 | int b_j = blockIdx.x; 13 | int b_n = gridDim.x; 14 | 15 | if (j==0){ 16 | int id = b_i*b_n + b_j; 17 | curand_init(1234, id, 0, &state[id]); 18 | } 19 | } 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /include/rectangle.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef RECTANGLE_H 3 | #define RECTANGLE_H 4 | 5 | struct rectangle_t{ 6 | int x1; 7 | int x2; 8 | int y1; 9 | int y2; 10 | }; 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /include/rectangular_explorer_kernel.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | // getters 4 | #include "./getters.h" 5 | // random 6 | #include "./random_generator.h" 7 | 8 | // getters 9 | using namespace ng; 10 | 11 | /* 12 | FIND THE LARGEST RECTANGLE: 13 | Kernel used for expand a rectangle as large as possible in the data matrix 14 | The kernel runs in different blocks, each block with 4 threads. 15 | 16 | Each block needs a random point in the matrix(it uses cuRand). 17 | If it doesnt find a valid point, the block sleeps(note: other blocks can work if they find a valid point). 18 | 19 | Then, inside of each block the four threads expand the rectangle from the initial random point to all sides: 20 | [thread 0] right-bottom 21 | [thread 1] right-top 22 | [thread 2] left-bottom 23 | [thread 3] left-top 24 | 25 | Each block has a largest rectangle that could find, in order to get the largest Rectangle, then compute the area and 26 | stores in areas variable. 27 | */ 28 | __global__ void find_largest_rectangle(curandState *state, long m, long n, int *data_matrix, int *out, int *areas){ 29 | 30 | 31 | const int coords_m = 5; 32 | const int coords_n = 4; 33 | 34 | __shared__ int coords[coords_m * coords_n]; 35 | //__shared__ int total_max; 36 | 37 | __shared__ int idx_i; 38 | __shared__ int idx_j; 39 | 40 | __shared__ bool is_sleeping; 41 | 42 | //int i = threadIdx.y; 43 | int j = threadIdx.x; 44 | 45 | int b_i = blockIdx.y; 46 | int b_j = blockIdx.x; 47 | int b_n = gridDim.x; 48 | 49 | 50 | /* GET RANDOM POINT: the value of that random point in the matrix must be one(1) 51 | */ 52 | if(j==0){ 53 | areas[b_i*b_n + b_j] = 0; 54 | 55 | int id = b_i*b_n + b_j; 56 | curandState localState = state[id]; 57 | 58 | unsigned int xx; 59 | unsigned int yy; 60 | for(int g=0; g<100; g++){ 61 | xx = curand(&localState); 62 | yy = curand(&localState); 63 | idx_i = abs((int)xx)%(m); 64 | idx_j = abs((int)yy)%(n); 65 | if (data_matrix[idx_i*n + idx_j]==1){ 66 | is_sleeping = false; 67 | break; 68 | }else{ 69 | is_sleeping = true; 70 | } 71 | } 72 | state[id] = localState; 73 | 74 | //printf("idx_i %d idx_j %d \n",idx_i,idx_j); 75 | } 76 | __syncthreads(); 77 | 78 | // if sleeping true ,disable block-thread work 79 | if (!is_sleeping){ 80 | // expand the rectangle 81 | int results[4] = {0,0,0,0}; 82 | if (j==0){ 83 | get_right_bottom_rectangle(idx_i, idx_j, m, n, data_matrix, results); 84 | } 85 | 86 | if (j==1){ 87 | get_right_top_rectangle(idx_i, idx_j, n, data_matrix, results); 88 | } 89 | 90 | if (j==2){ 91 | get_left_bottom_rectangle(idx_i, idx_j, m, n, data_matrix, results); 92 | } 93 | 94 | if (j==3){ 95 | get_left_top_rectangle(idx_i, idx_j, n, data_matrix, results); 96 | } 97 | 98 | coords[j*coords_n + 0] = results[0]; 99 | coords[j*coords_n + 1] = results[1]; 100 | coords[j*coords_n + 2] = results[2]; 101 | coords[j*coords_n + 3] = results[3]; 102 | 103 | __syncthreads(); 104 | 105 | // merge last rectangles 106 | if (j==0){ 107 | int a = coords[2*coords_n + 1]; 108 | int b = coords[3*coords_n + 1]; 109 | int pl = a; 110 | if (b > a){ 111 | pl = b; 112 | } 113 | coords[4*coords_n + j] = pl; 114 | out[b_i*b_n*4 + (4*b_j + j) ] = pl; 115 | } 116 | 117 | if (j==1){ 118 | int a = coords[0*coords_n + 1]; 119 | int b = coords[1*coords_n + 1]; 120 | int pr = a; 121 | if (b < a){ 122 | pr = b; 123 | } 124 | coords[4*coords_n + j] = pr; 125 | out[b_i*b_n*4 + (4*b_j + j) ] = pr; 126 | } 127 | 128 | if (j==2){ 129 | int a = coords[1*coords_n + 3]; 130 | int b = coords[3*coords_n + 3]; 131 | int pt = a; 132 | if (b > a){ 133 | pt = b; 134 | } 135 | coords[4*coords_n + j] = pt; 136 | out[b_i*b_n*4 + (4*b_j + j) ] = pt; 137 | } 138 | 139 | if (j==3){ 140 | int a = coords[0*coords_n + 3]; 141 | int b = coords[2*coords_n + 3]; 142 | int pb = a; 143 | if (b < a){ 144 | pb = b; 145 | } 146 | coords[4*coords_n + j] = pb; 147 | out[b_i*b_n*4 + (4*b_j + j) ] = pb; 148 | } 149 | 150 | __syncthreads(); 151 | 152 | if (j==0){ 153 | int a = abs(coords[coords_n*4 + 0] - coords[coords_n*4 + 1]) + 1; 154 | int b = abs(coords[coords_n*4 + 2] - coords[coords_n*4 + 3]) + 1; 155 | int area = a*b; 156 | areas[b_i*b_n + b_j] = area; 157 | } 158 | } 159 | 160 | } 161 | 162 | -------------------------------------------------------------------------------- /include/rectangular_remover_kernel.h: -------------------------------------------------------------------------------- 1 | 2 | // GPU kernels 3 | __global__ void remove_rectangle_from_matrix(int x1, int x2, int y1, int y2, int *data_matrix, long m, long n){ 4 | 5 | int i = threadIdx.y; 6 | int j = threadIdx.x; 7 | 8 | int g_i = blockDim.y*blockIdx.y + i; 9 | int g_j = blockDim.x*blockIdx.x + j; 10 | 11 | int g_ii = g_i + y1; 12 | int g_jj = g_j + x1; 13 | 14 | if ( (g_ii >= y1) & (g_ii <= y2)){ 15 | if ( (g_jj >= x1) & (g_jj <= x2)){ 16 | data_matrix[g_ii*n + g_jj] = 0; 17 | } 18 | } 19 | } 20 | 21 | 22 | -------------------------------------------------------------------------------- /log_tools/logs/log_boston12.csv_1: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 1576 , n 3688 5 | Number of tests: 4 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 14489.434570 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 1995 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 1576 , n 3688 15 | Number of tests: 4 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 15171.853516 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 1995 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 1576 , n 3688 25 | Number of tests: 4 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 15307.272461 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 1995 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 1576 , n 3688 35 | Number of tests: 4 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 15552.819336 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 1995 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 1576 , n 3688 45 | Number of tests: 4 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 15023.618164 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 1995 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 1576 , n 3688 55 | Number of tests: 4 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 14974.096680 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 1995 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 1576 , n 3688 65 | Number of tests: 4 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 15224.174805 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 1995 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 1576 , n 3688 75 | Number of tests: 4 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 14655.255859 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 1995 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 1576 , n 3688 85 | Number of tests: 4 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 14870.327148 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 1995 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 1576 , n 3688 95 | Number of tests: 4 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 14871.943359 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 1995 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 1576 , n 3688 105 | Number of tests: 4 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 14642.198242 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 1995 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 1576 , n 3688 115 | Number of tests: 4 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 15097.144531 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 1995 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 1576 , n 3688 125 | Number of tests: 4 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 14747.628906 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 1995 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 1576 , n 3688 135 | Number of tests: 4 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 14908.206055 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 1995 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 1576 , n 3688 145 | Number of tests: 4 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 14979.611328 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 1995 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 1576 , n 3688 155 | Number of tests: 4 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 14603.576172 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 1995 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 1576 , n 3688 165 | Number of tests: 4 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 14984.825195 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 1995 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 1576 , n 3688 175 | Number of tests: 4 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 14726.889648 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 1995 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 1576 , n 3688 185 | Number of tests: 4 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 14725.979492 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 1995 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 1576 , n 3688 195 | Number of tests: 4 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 14862.874023 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 1995 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 1576 , n 3688 205 | Number of tests: 4 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 14849.703125 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 1995 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 1576 , n 3688 215 | Number of tests: 4 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 14733.529297 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 1995 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 1576 , n 3688 225 | Number of tests: 4 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 14964.661133 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 1995 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 1576 , n 3688 235 | Number of tests: 4 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 14576.461914 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 1995 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 1576 , n 3688 245 | Number of tests: 4 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 14499.514648 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 1995 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 1576 , n 3688 255 | Number of tests: 4 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 14922.026367 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 1995 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 1576 , n 3688 265 | Number of tests: 4 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 14890.916016 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 1995 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 1576 , n 3688 275 | Number of tests: 4 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 14962.728516 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 1995 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 1576 , n 3688 285 | Number of tests: 4 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 15012.914062 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 1995 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 1576 , n 3688 295 | Number of tests: 4 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 15064.801758 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 1995 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_boston12.csv_10: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 1576 , n 3688 5 | Number of tests: 40 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 2872.499023 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 1984 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 1576 , n 3688 15 | Number of tests: 40 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 2869.595947 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 1984 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 1576 , n 3688 25 | Number of tests: 40 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 2879.396973 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 1984 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 1576 , n 3688 35 | Number of tests: 40 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 2935.603760 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 1984 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 1576 , n 3688 45 | Number of tests: 40 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 2845.825928 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 1984 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 1576 , n 3688 55 | Number of tests: 40 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 2873.565674 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 1984 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 1576 , n 3688 65 | Number of tests: 40 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 2879.986084 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 1984 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 1576 , n 3688 75 | Number of tests: 40 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 2882.671387 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 1984 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 1576 , n 3688 85 | Number of tests: 40 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 2912.912598 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 1984 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 1576 , n 3688 95 | Number of tests: 40 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 2820.789307 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 1984 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 1576 , n 3688 105 | Number of tests: 40 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 2991.040527 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 1984 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 1576 , n 3688 115 | Number of tests: 40 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 2889.950684 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 1984 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 1576 , n 3688 125 | Number of tests: 40 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 2892.572266 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 1984 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 1576 , n 3688 135 | Number of tests: 40 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 2893.606201 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 1984 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 1576 , n 3688 145 | Number of tests: 40 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 2889.083984 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 1984 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 1576 , n 3688 155 | Number of tests: 40 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 2887.187988 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 1984 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 1576 , n 3688 165 | Number of tests: 40 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 2878.683838 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 1984 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 1576 , n 3688 175 | Number of tests: 40 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 2839.341553 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 1984 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 1576 , n 3688 185 | Number of tests: 40 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 2958.020752 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 1984 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 1576 , n 3688 195 | Number of tests: 40 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 2862.395996 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 1984 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 1576 , n 3688 205 | Number of tests: 40 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 2932.643311 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 1984 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 1576 , n 3688 215 | Number of tests: 40 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 2893.665039 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 1984 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 1576 , n 3688 225 | Number of tests: 40 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 2904.673584 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 1984 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 1576 , n 3688 235 | Number of tests: 40 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 2904.646240 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 1984 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 1576 , n 3688 245 | Number of tests: 40 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 2960.926758 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 1984 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 1576 , n 3688 255 | Number of tests: 40 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 2920.017822 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 1984 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 1576 , n 3688 265 | Number of tests: 40 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 2835.842041 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 1984 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 1576 , n 3688 275 | Number of tests: 40 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 2852.360107 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 1984 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 1576 , n 3688 285 | Number of tests: 40 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 2889.403076 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 1984 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 1576 , n 3688 295 | Number of tests: 40 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 2890.694092 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 1984 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_boston12.csv_100: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 1576 , n 3688 5 | Number of tests: 400 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 2822.693604 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 1983 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 1576 , n 3688 15 | Number of tests: 400 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 2869.963135 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 1983 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 1576 , n 3688 25 | Number of tests: 400 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 2868.698730 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 1983 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 1576 , n 3688 35 | Number of tests: 400 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 2952.244629 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 1983 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 1576 , n 3688 45 | Number of tests: 400 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 2882.107666 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 1983 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 1576 , n 3688 55 | Number of tests: 400 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 2806.228027 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 1983 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 1576 , n 3688 65 | Number of tests: 400 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 2876.149170 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 1983 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 1576 , n 3688 75 | Number of tests: 400 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 2890.622314 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 1983 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 1576 , n 3688 85 | Number of tests: 400 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 2921.156738 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 1983 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 1576 , n 3688 95 | Number of tests: 400 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 2856.968750 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 1983 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 1576 , n 3688 105 | Number of tests: 400 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 2812.987305 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 1983 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 1576 , n 3688 115 | Number of tests: 400 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 2891.165527 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 1983 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 1576 , n 3688 125 | Number of tests: 400 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 2824.758789 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 1983 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 1576 , n 3688 135 | Number of tests: 400 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 2871.562500 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 1983 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 1576 , n 3688 145 | Number of tests: 400 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 2890.048828 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 1983 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 1576 , n 3688 155 | Number of tests: 400 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 2801.934082 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 1983 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 1576 , n 3688 165 | Number of tests: 400 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 2866.489014 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 1983 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 1576 , n 3688 175 | Number of tests: 400 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 2838.501709 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 1983 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 1576 , n 3688 185 | Number of tests: 400 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 2854.575684 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 1983 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 1576 , n 3688 195 | Number of tests: 400 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 2951.409180 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 1983 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 1576 , n 3688 205 | Number of tests: 400 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 2854.212891 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 1983 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 1576 , n 3688 215 | Number of tests: 400 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 2954.637451 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 1983 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 1576 , n 3688 225 | Number of tests: 400 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 2821.303711 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 1983 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 1576 , n 3688 235 | Number of tests: 400 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 2954.456543 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 1983 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 1576 , n 3688 245 | Number of tests: 400 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 2886.066406 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 1983 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 1576 , n 3688 255 | Number of tests: 400 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 2794.049072 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 1983 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 1576 , n 3688 265 | Number of tests: 400 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 2892.580322 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 1983 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 1576 , n 3688 275 | Number of tests: 400 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 2883.591309 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 1983 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 1576 , n 3688 285 | Number of tests: 400 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 2918.957031 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 1983 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 1576 , n 3688 295 | Number of tests: 400 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 2816.744629 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 1983 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_boston12.csv_600:: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 1576 , n 3688 5 | Number of tests: 2400 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 3129.372070 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 1982 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 1576 , n 3688 15 | Number of tests: 2400 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 3085.900391 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 1981 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 1576 , n 3688 25 | Number of tests: 2400 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 3139.794434 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 1982 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 1576 , n 3688 35 | Number of tests: 2400 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 3058.876709 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 1981 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 1576 , n 3688 45 | Number of tests: 2400 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 3103.348389 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 1981 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 1576 , n 3688 55 | Number of tests: 2400 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 3152.064941 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 1980 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 1576 , n 3688 65 | Number of tests: 2400 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 3040.859131 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 1981 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 1576 , n 3688 75 | Number of tests: 2400 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 3061.887207 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 1981 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 1576 , n 3688 85 | Number of tests: 2400 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 3093.487793 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 1981 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 1576 , n 3688 95 | Number of tests: 2400 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 3123.338135 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 1981 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 1576 , n 3688 105 | Number of tests: 2400 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 3131.137939 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 1979 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 1576 , n 3688 115 | Number of tests: 2400 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 3127.901123 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 1981 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 1576 , n 3688 125 | Number of tests: 2400 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 3114.433594 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 1981 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 1576 , n 3688 135 | Number of tests: 2400 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 3106.594238 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 1981 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 1576 , n 3688 145 | Number of tests: 2400 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 3175.353027 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 1981 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 1576 , n 3688 155 | Number of tests: 2400 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 3129.799561 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 1981 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 1576 , n 3688 165 | Number of tests: 2400 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 3238.291748 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 1981 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 1576 , n 3688 175 | Number of tests: 2400 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 3153.219482 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 1981 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 1576 , n 3688 185 | Number of tests: 2400 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 3022.800293 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 1980 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 1576 , n 3688 195 | Number of tests: 2400 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 3145.763672 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 1982 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 1576 , n 3688 205 | Number of tests: 2400 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 3102.153809 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 1982 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 1576 , n 3688 215 | Number of tests: 2400 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 3052.944336 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 1981 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 1576 , n 3688 225 | Number of tests: 2400 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 3116.699951 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 1981 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 1576 , n 3688 235 | Number of tests: 2400 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 3085.699463 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 1980 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 1576 , n 3688 245 | Number of tests: 2400 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 3129.518799 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 1981 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 1576 , n 3688 255 | Number of tests: 2400 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 3154.810547 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 1980 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 1576 , n 3688 265 | Number of tests: 2400 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 3114.004639 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 1981 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 1576 , n 3688 275 | Number of tests: 2400 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 3107.437744 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 1981 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 1576 , n 3688 285 | Number of tests: 2400 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 3110.491943 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 1981 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 1576 , n 3688 295 | Number of tests: 2400 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 3147.504150 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 1982 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_complex11.csv_1: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 1188 , n 1844 5 | Number of tests: 4 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 6754.313965 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 2499 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 1188 , n 1844 15 | Number of tests: 4 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 6711.272949 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 2499 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 1188 , n 1844 25 | Number of tests: 4 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 6830.655762 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 2499 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 1188 , n 1844 35 | Number of tests: 4 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 6725.412598 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 2499 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 1188 , n 1844 45 | Number of tests: 4 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 6785.665039 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 2499 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 1188 , n 1844 55 | Number of tests: 4 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 7265.265625 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 2499 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 1188 , n 1844 65 | Number of tests: 4 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 6803.637207 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 2499 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 1188 , n 1844 75 | Number of tests: 4 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 6788.030273 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 2499 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 1188 , n 1844 85 | Number of tests: 4 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 7160.474609 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 2499 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 1188 , n 1844 95 | Number of tests: 4 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 7108.220703 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 2499 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 1188 , n 1844 105 | Number of tests: 4 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 6747.241699 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 2499 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 1188 , n 1844 115 | Number of tests: 4 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 7183.500000 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 2499 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 1188 , n 1844 125 | Number of tests: 4 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 6721.546875 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 2499 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 1188 , n 1844 135 | Number of tests: 4 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 7192.602539 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 2499 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 1188 , n 1844 145 | Number of tests: 4 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 6650.319824 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 2499 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 1188 , n 1844 155 | Number of tests: 4 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 7071.161133 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 2499 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 1188 , n 1844 165 | Number of tests: 4 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 6758.683105 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 2499 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 1188 , n 1844 175 | Number of tests: 4 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 7158.040527 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 2499 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 1188 , n 1844 185 | Number of tests: 4 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 6878.220215 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 2499 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 1188 , n 1844 195 | Number of tests: 4 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 7127.120605 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 2499 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 1188 , n 1844 205 | Number of tests: 4 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 7002.022949 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 2499 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 1188 , n 1844 215 | Number of tests: 4 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 6825.290039 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 2499 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 1188 , n 1844 225 | Number of tests: 4 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 7161.537598 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 2499 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 1188 , n 1844 235 | Number of tests: 4 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 7041.335938 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 2499 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 1188 , n 1844 245 | Number of tests: 4 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 6649.472168 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 2499 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 1188 , n 1844 255 | Number of tests: 4 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 6773.229980 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 2499 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 1188 , n 1844 265 | Number of tests: 4 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 6988.843750 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 2499 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 1188 , n 1844 275 | Number of tests: 4 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 6892.395996 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 2499 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 1188 , n 1844 285 | Number of tests: 4 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 7076.330078 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 2499 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 1188 , n 1844 295 | Number of tests: 4 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 6817.642578 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 2499 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_complex11.csv_10: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 1188 , n 1844 5 | Number of tests: 40 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 2326.831299 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 2652 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 1188 , n 1844 15 | Number of tests: 40 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 2443.351562 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 2652 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 1188 , n 1844 25 | Number of tests: 40 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 2302.410889 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 2652 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 1188 , n 1844 35 | Number of tests: 40 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 2387.427002 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 2652 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 1188 , n 1844 45 | Number of tests: 40 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 2307.879883 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 2652 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 1188 , n 1844 55 | Number of tests: 40 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 2234.011963 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 2652 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 1188 , n 1844 65 | Number of tests: 40 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 2304.000488 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 2652 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 1188 , n 1844 75 | Number of tests: 40 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 2308.879395 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 2652 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 1188 , n 1844 85 | Number of tests: 40 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 2361.982422 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 2652 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 1188 , n 1844 95 | Number of tests: 40 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 2307.770264 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 2652 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 1188 , n 1844 105 | Number of tests: 40 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 2405.461670 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 2652 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 1188 , n 1844 115 | Number of tests: 40 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 2381.294189 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 2652 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 1188 , n 1844 125 | Number of tests: 40 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 2448.043213 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 2652 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 1188 , n 1844 135 | Number of tests: 40 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 2321.226318 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 2652 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 1188 , n 1844 145 | Number of tests: 40 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 2272.058350 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 2652 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 1188 , n 1844 155 | Number of tests: 40 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 2407.082520 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 2652 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 1188 , n 1844 165 | Number of tests: 40 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 2330.920654 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 2652 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 1188 , n 1844 175 | Number of tests: 40 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 2295.625977 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 2652 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 1188 , n 1844 185 | Number of tests: 40 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 2274.216797 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 2652 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 1188 , n 1844 195 | Number of tests: 40 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 2251.914307 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 2652 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 1188 , n 1844 205 | Number of tests: 40 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 2343.297852 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 2652 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 1188 , n 1844 215 | Number of tests: 40 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 2367.481934 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 2652 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 1188 , n 1844 225 | Number of tests: 40 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 2396.708740 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 2652 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 1188 , n 1844 235 | Number of tests: 40 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 2294.393311 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 2652 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 1188 , n 1844 245 | Number of tests: 40 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 2338.107910 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 2652 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 1188 , n 1844 255 | Number of tests: 40 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 2276.312744 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 2652 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 1188 , n 1844 265 | Number of tests: 40 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 2459.661621 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 2652 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 1188 , n 1844 275 | Number of tests: 40 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 2336.592529 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 2652 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 1188 , n 1844 285 | Number of tests: 40 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 2470.438232 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 2652 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 1188 , n 1844 295 | Number of tests: 40 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 2333.637451 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 2652 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_complex11.csv_100: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 1188 , n 1844 5 | Number of tests: 400 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 2062.793701 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 2655 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 1188 , n 1844 15 | Number of tests: 400 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 2003.010498 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 2655 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 1188 , n 1844 25 | Number of tests: 400 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 1986.606934 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 2655 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 1188 , n 1844 35 | Number of tests: 400 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 1898.426514 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 2655 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 1188 , n 1844 45 | Number of tests: 400 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 1896.468750 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 2655 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 1188 , n 1844 55 | Number of tests: 400 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 1943.077026 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 2655 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 1188 , n 1844 65 | Number of tests: 400 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 1997.514893 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 2655 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 1188 , n 1844 75 | Number of tests: 400 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 1961.069336 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 2655 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 1188 , n 1844 85 | Number of tests: 400 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 1903.628906 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 2655 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 1188 , n 1844 95 | Number of tests: 400 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 1848.305542 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 2655 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 1188 , n 1844 105 | Number of tests: 400 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 1953.310791 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 2655 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 1188 , n 1844 115 | Number of tests: 400 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 1938.983887 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 2655 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 1188 , n 1844 125 | Number of tests: 400 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 1911.947510 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 2655 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 1188 , n 1844 135 | Number of tests: 400 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 1838.324463 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 2655 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 1188 , n 1844 145 | Number of tests: 400 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 1887.878784 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 2655 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 1188 , n 1844 155 | Number of tests: 400 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 1901.973633 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 2655 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 1188 , n 1844 165 | Number of tests: 400 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 1865.284302 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 2655 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 1188 , n 1844 175 | Number of tests: 400 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 1820.293091 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 2655 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 1188 , n 1844 185 | Number of tests: 400 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 1949.180298 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 2655 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 1188 , n 1844 195 | Number of tests: 400 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 1949.615356 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 2655 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 1188 , n 1844 205 | Number of tests: 400 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 1909.108276 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 2655 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 1188 , n 1844 215 | Number of tests: 400 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 1890.934814 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 2655 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 1188 , n 1844 225 | Number of tests: 400 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 2009.789551 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 2655 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 1188 , n 1844 235 | Number of tests: 400 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 1953.627686 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 2655 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 1188 , n 1844 245 | Number of tests: 400 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 1937.686279 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 2655 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 1188 , n 1844 255 | Number of tests: 400 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 2001.057739 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 2655 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 1188 , n 1844 265 | Number of tests: 400 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 2016.275513 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 2655 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 1188 , n 1844 275 | Number of tests: 400 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 1942.794312 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 2655 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 1188 , n 1844 285 | Number of tests: 400 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 2007.533569 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 2655 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 1188 , n 1844 295 | Number of tests: 400 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 2072.739258 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 2655 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_complex11.csv_600:: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 1188 , n 1844 5 | Number of tests: 2400 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 2003.566895 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 2650 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 1188 , n 1844 15 | Number of tests: 2400 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 2009.181641 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 2650 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 1188 , n 1844 25 | Number of tests: 2400 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 2037.253174 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 2650 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 1188 , n 1844 35 | Number of tests: 2400 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 1971.339478 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 2650 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 1188 , n 1844 45 | Number of tests: 2400 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 1982.179321 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 2650 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 1188 , n 1844 55 | Number of tests: 2400 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 2055.387207 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 2650 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 1188 , n 1844 65 | Number of tests: 2400 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 1924.408936 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 2650 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 1188 , n 1844 75 | Number of tests: 2400 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 2088.737305 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 2650 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 1188 , n 1844 85 | Number of tests: 2400 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 2018.775269 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 2650 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 1188 , n 1844 95 | Number of tests: 2400 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 1963.720825 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 2650 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 1188 , n 1844 105 | Number of tests: 2400 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 1962.594971 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 2650 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 1188 , n 1844 115 | Number of tests: 2400 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 2070.049561 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 2650 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 1188 , n 1844 125 | Number of tests: 2400 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 1924.115723 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 2650 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 1188 , n 1844 135 | Number of tests: 2400 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 1923.877563 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 2650 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 1188 , n 1844 145 | Number of tests: 2400 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 1993.361816 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 2650 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 1188 , n 1844 155 | Number of tests: 2400 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 2004.661987 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 2650 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 1188 , n 1844 165 | Number of tests: 2400 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 2019.941772 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 2650 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 1188 , n 1844 175 | Number of tests: 2400 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 1918.486938 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 2650 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 1188 , n 1844 185 | Number of tests: 2400 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 2018.954834 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 2650 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 1188 , n 1844 195 | Number of tests: 2400 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 1965.680786 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 2650 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 1188 , n 1844 205 | Number of tests: 2400 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 1964.024414 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 2650 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 1188 , n 1844 215 | Number of tests: 2400 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 1918.775024 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 2650 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 1188 , n 1844 225 | Number of tests: 2400 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 1946.711060 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 2650 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 1188 , n 1844 235 | Number of tests: 2400 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 1950.624512 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 2650 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 1188 , n 1844 245 | Number of tests: 2400 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 1970.539673 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 2650 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 1188 , n 1844 255 | Number of tests: 2400 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 1904.650513 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 2650 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 1188 , n 1844 265 | Number of tests: 2400 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 2070.801025 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 2650 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 1188 , n 1844 275 | Number of tests: 2400 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 1890.317383 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 2650 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 1188 , n 1844 285 | Number of tests: 2400 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 2028.239502 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 2650 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 1188 , n 1844 295 | Number of tests: 2400 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 1986.893555 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 2650 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_hall10.csv_1: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 496 , n 922 5 | Number of tests: 4 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 1026.907837 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 505 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 496 , n 922 15 | Number of tests: 4 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 1032.480103 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 505 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 496 , n 922 25 | Number of tests: 4 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 990.198120 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 505 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 496 , n 922 35 | Number of tests: 4 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 1050.081177 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 505 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 496 , n 922 45 | Number of tests: 4 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 1012.164368 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 505 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 496 , n 922 55 | Number of tests: 4 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 1005.087036 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 505 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 496 , n 922 65 | Number of tests: 4 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 1042.668335 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 505 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 496 , n 922 75 | Number of tests: 4 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 1082.512573 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 505 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 496 , n 922 85 | Number of tests: 4 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 1068.141113 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 505 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 496 , n 922 95 | Number of tests: 4 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 1011.871460 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 505 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 496 , n 922 105 | Number of tests: 4 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 1061.218140 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 505 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 496 , n 922 115 | Number of tests: 4 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 1041.045898 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 505 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 496 , n 922 125 | Number of tests: 4 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 986.783020 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 505 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 496 , n 922 135 | Number of tests: 4 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 1049.942871 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 505 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 496 , n 922 145 | Number of tests: 4 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 1073.946533 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 505 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 496 , n 922 155 | Number of tests: 4 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 1070.329346 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 505 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 496 , n 922 165 | Number of tests: 4 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 1032.825684 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 505 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 496 , n 922 175 | Number of tests: 4 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 1000.886780 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 505 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 496 , n 922 185 | Number of tests: 4 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 996.265869 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 505 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 496 , n 922 195 | Number of tests: 4 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 1076.685547 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 505 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 496 , n 922 205 | Number of tests: 4 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 1045.955933 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 505 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 496 , n 922 215 | Number of tests: 4 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 1100.610840 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 505 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 496 , n 922 225 | Number of tests: 4 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 1013.554993 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 505 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 496 , n 922 235 | Number of tests: 4 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 1136.013550 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 505 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 496 , n 922 245 | Number of tests: 4 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 1025.325317 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 505 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 496 , n 922 255 | Number of tests: 4 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 1013.143738 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 505 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 496 , n 922 265 | Number of tests: 4 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 1019.464783 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 505 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 496 , n 922 275 | Number of tests: 4 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 1039.851929 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 505 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 496 , n 922 285 | Number of tests: 4 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 1063.735962 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 505 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 496 , n 922 295 | Number of tests: 4 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 1036.265991 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 505 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_hall10.csv_10: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 496 , n 922 5 | Number of tests: 40 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 427.180725 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 504 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 496 , n 922 15 | Number of tests: 40 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 460.568512 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 504 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 496 , n 922 25 | Number of tests: 40 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 434.704376 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 504 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 496 , n 922 35 | Number of tests: 40 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 432.570770 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 504 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 496 , n 922 45 | Number of tests: 40 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 488.991302 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 504 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 496 , n 922 55 | Number of tests: 40 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 459.936401 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 504 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 496 , n 922 65 | Number of tests: 40 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 465.357117 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 504 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 496 , n 922 75 | Number of tests: 40 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 433.221161 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 504 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 496 , n 922 85 | Number of tests: 40 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 445.702057 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 504 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 496 , n 922 95 | Number of tests: 40 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 440.394653 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 504 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 496 , n 922 105 | Number of tests: 40 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 437.304535 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 504 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 496 , n 922 115 | Number of tests: 40 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 430.905304 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 504 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 496 , n 922 125 | Number of tests: 40 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 410.236481 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 504 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 496 , n 922 135 | Number of tests: 40 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 464.738556 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 504 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 496 , n 922 145 | Number of tests: 40 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 485.036591 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 504 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 496 , n 922 155 | Number of tests: 40 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 467.100037 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 504 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 496 , n 922 165 | Number of tests: 40 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 491.896667 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 504 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 496 , n 922 175 | Number of tests: 40 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 406.650970 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 504 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 496 , n 922 185 | Number of tests: 40 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 408.935944 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 504 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 496 , n 922 195 | Number of tests: 40 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 425.850098 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 504 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 496 , n 922 205 | Number of tests: 40 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 424.397705 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 504 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 496 , n 922 215 | Number of tests: 40 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 413.073212 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 504 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 496 , n 922 225 | Number of tests: 40 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 418.241943 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 504 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 496 , n 922 235 | Number of tests: 40 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 441.481995 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 504 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 496 , n 922 245 | Number of tests: 40 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 426.477844 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 504 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 496 , n 922 255 | Number of tests: 40 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 452.344299 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 504 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 496 , n 922 265 | Number of tests: 40 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 497.759674 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 504 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 496 , n 922 275 | Number of tests: 40 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 428.263947 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 504 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 496 , n 922 285 | Number of tests: 40 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 511.658325 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 504 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 496 , n 922 295 | Number of tests: 40 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 451.008179 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 504 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_hall10.csv_100: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 496 , n 922 5 | Number of tests: 400 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 366.170471 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 503 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 496 , n 922 15 | Number of tests: 400 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 421.166809 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 503 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 496 , n 922 25 | Number of tests: 400 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 474.681671 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 503 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 496 , n 922 35 | Number of tests: 400 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 429.652344 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 503 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 496 , n 922 45 | Number of tests: 400 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 400.984467 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 503 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 496 , n 922 55 | Number of tests: 400 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 455.647400 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 503 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 496 , n 922 65 | Number of tests: 400 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 388.317505 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 503 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 496 , n 922 75 | Number of tests: 400 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 455.071350 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 503 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 496 , n 922 85 | Number of tests: 400 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 430.778473 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 503 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 496 , n 922 95 | Number of tests: 400 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 425.050781 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 503 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 496 , n 922 105 | Number of tests: 400 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 459.193024 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 503 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 496 , n 922 115 | Number of tests: 400 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 422.327942 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 503 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 496 , n 922 125 | Number of tests: 400 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 487.722534 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 503 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 496 , n 922 135 | Number of tests: 400 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 504.020813 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 503 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 496 , n 922 145 | Number of tests: 400 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 388.135132 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 503 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 496 , n 922 155 | Number of tests: 400 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 403.629944 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 503 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 496 , n 922 165 | Number of tests: 400 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 374.113556 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 503 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 496 , n 922 175 | Number of tests: 400 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 430.162994 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 503 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 496 , n 922 185 | Number of tests: 400 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 491.902222 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 503 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 496 , n 922 195 | Number of tests: 400 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 440.889130 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 503 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 496 , n 922 205 | Number of tests: 400 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 436.798401 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 503 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 496 , n 922 215 | Number of tests: 400 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 442.222595 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 503 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 496 , n 922 225 | Number of tests: 400 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 410.987244 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 503 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 496 , n 922 235 | Number of tests: 400 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 393.078979 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 503 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 496 , n 922 245 | Number of tests: 400 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 452.958649 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 503 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 496 , n 922 255 | Number of tests: 400 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 383.307495 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 503 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 496 , n 922 265 | Number of tests: 400 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 457.607086 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 503 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 496 , n 922 275 | Number of tests: 400 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 417.354797 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 503 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 496 , n 922 285 | Number of tests: 400 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 428.152222 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 503 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 496 , n 922 295 | Number of tests: 400 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 420.244934 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 503 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_hall10.csv_600:: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 496 , n 922 5 | Number of tests: 2400 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 491.541504 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 503 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 496 , n 922 15 | Number of tests: 2400 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 447.237457 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 503 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 496 , n 922 25 | Number of tests: 2400 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 512.173645 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 503 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 496 , n 922 35 | Number of tests: 2400 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 468.513977 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 503 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 496 , n 922 45 | Number of tests: 2400 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 438.289642 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 503 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 496 , n 922 55 | Number of tests: 2400 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 453.188782 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 503 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 496 , n 922 65 | Number of tests: 2400 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 396.280487 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 503 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 496 , n 922 75 | Number of tests: 2400 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 432.225800 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 503 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 496 , n 922 85 | Number of tests: 2400 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 421.908020 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 503 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 496 , n 922 95 | Number of tests: 2400 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 469.587433 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 503 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 496 , n 922 105 | Number of tests: 2400 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 521.091858 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 503 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 496 , n 922 115 | Number of tests: 2400 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 451.927734 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 503 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 496 , n 922 125 | Number of tests: 2400 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 511.537750 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 503 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 496 , n 922 135 | Number of tests: 2400 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 489.543976 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 503 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 496 , n 922 145 | Number of tests: 2400 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 461.970947 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 503 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 496 , n 922 155 | Number of tests: 2400 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 426.432831 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 503 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 496 , n 922 165 | Number of tests: 2400 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 436.621399 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 503 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 496 , n 922 175 | Number of tests: 2400 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 446.987701 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 503 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 496 , n 922 185 | Number of tests: 2400 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 475.944519 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 503 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 496 , n 922 195 | Number of tests: 2400 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 405.654114 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 503 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 496 , n 922 205 | Number of tests: 2400 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 441.848206 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 503 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 496 , n 922 215 | Number of tests: 2400 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 433.823547 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 503 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 496 , n 922 225 | Number of tests: 2400 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 439.731049 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 503 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 496 , n 922 235 | Number of tests: 2400 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 399.919373 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 503 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 496 , n 922 245 | Number of tests: 2400 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 400.339447 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 503 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 496 , n 922 255 | Number of tests: 2400 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 431.072449 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 503 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 496 , n 922 265 | Number of tests: 2400 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 421.459686 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 503 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 496 , n 922 275 | Number of tests: 2400 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 504.294006 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 503 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 496 , n 922 285 | Number of tests: 2400 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 478.840881 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 503 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 496 , n 922 295 | Number of tests: 2400 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 469.585815 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 503 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_theatre12.csv_1: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 1834 , n 3688 5 | Number of tests: 4 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 15496.014648 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 1579 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 1834 , n 3688 15 | Number of tests: 4 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 16037.535156 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 1579 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 1834 , n 3688 25 | Number of tests: 4 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 16405.873047 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 1579 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 1834 , n 3688 35 | Number of tests: 4 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 15733.540039 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 1579 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 1834 , n 3688 45 | Number of tests: 4 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 15586.696289 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 1579 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 1834 , n 3688 55 | Number of tests: 4 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 15282.549805 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 1579 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 1834 , n 3688 65 | Number of tests: 4 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 15745.973633 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 1579 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 1834 , n 3688 75 | Number of tests: 4 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 15619.244141 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 1579 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 1834 , n 3688 85 | Number of tests: 4 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 15406.532227 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 1579 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 1834 , n 3688 95 | Number of tests: 4 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 15676.172852 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 1579 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 1834 , n 3688 105 | Number of tests: 4 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 16271.189453 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 1579 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 1834 , n 3688 115 | Number of tests: 4 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 15795.017578 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 1579 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 1834 , n 3688 125 | Number of tests: 4 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 16058.320312 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 1579 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 1834 , n 3688 135 | Number of tests: 4 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 15708.676758 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 1579 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 1834 , n 3688 145 | Number of tests: 4 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 16175.314453 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 1579 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 1834 , n 3688 155 | Number of tests: 4 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 15980.364258 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 1579 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 1834 , n 3688 165 | Number of tests: 4 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 15965.988281 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 1579 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 1834 , n 3688 175 | Number of tests: 4 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 15778.604492 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 1579 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 1834 , n 3688 185 | Number of tests: 4 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 15888.413086 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 1579 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 1834 , n 3688 195 | Number of tests: 4 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 15837.275391 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 1579 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 1834 , n 3688 205 | Number of tests: 4 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 16266.701172 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 1579 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 1834 , n 3688 215 | Number of tests: 4 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 16083.306641 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 1579 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 1834 , n 3688 225 | Number of tests: 4 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 15954.978516 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 1579 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 1834 , n 3688 235 | Number of tests: 4 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 15883.389648 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 1579 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 1834 , n 3688 245 | Number of tests: 4 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 16129.964844 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 1579 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 1834 , n 3688 255 | Number of tests: 4 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 16007.626953 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 1579 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 1834 , n 3688 265 | Number of tests: 4 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 16140.180664 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 1579 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 1834 , n 3688 275 | Number of tests: 4 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 16106.447266 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 1579 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 1834 , n 3688 285 | Number of tests: 4 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 16402.218750 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 1579 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 1834 , n 3688 295 | Number of tests: 4 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 15883.638672 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 1579 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_theatre12.csv_10: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 1834 , n 3688 5 | Number of tests: 40 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 2878.204346 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 1569 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 1834 , n 3688 15 | Number of tests: 40 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 2963.642578 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 1569 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 1834 , n 3688 25 | Number of tests: 40 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 3028.738037 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 1569 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 1834 , n 3688 35 | Number of tests: 40 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 2887.547607 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 1569 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 1834 , n 3688 45 | Number of tests: 40 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 2989.854004 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 1569 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 1834 , n 3688 55 | Number of tests: 40 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 2892.260010 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 1569 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 1834 , n 3688 65 | Number of tests: 40 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 2971.545166 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 1569 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 1834 , n 3688 75 | Number of tests: 40 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 2922.967041 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 1569 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 1834 , n 3688 85 | Number of tests: 40 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 3000.256592 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 1569 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 1834 , n 3688 95 | Number of tests: 40 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 2914.283203 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 1569 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 1834 , n 3688 105 | Number of tests: 40 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 2872.360352 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 1569 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 1834 , n 3688 115 | Number of tests: 40 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 3007.194824 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 1569 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 1834 , n 3688 125 | Number of tests: 40 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 2884.264893 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 1569 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 1834 , n 3688 135 | Number of tests: 40 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 2984.376465 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 1569 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 1834 , n 3688 145 | Number of tests: 40 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 2868.782227 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 1569 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 1834 , n 3688 155 | Number of tests: 40 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 2920.685547 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 1569 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 1834 , n 3688 165 | Number of tests: 40 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 2887.172119 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 1569 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 1834 , n 3688 175 | Number of tests: 40 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 2993.529053 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 1569 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 1834 , n 3688 185 | Number of tests: 40 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 2944.778076 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 1569 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 1834 , n 3688 195 | Number of tests: 40 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 3019.135010 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 1569 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 1834 , n 3688 205 | Number of tests: 40 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 2890.593506 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 1569 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 1834 , n 3688 215 | Number of tests: 40 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 2892.188477 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 1569 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 1834 , n 3688 225 | Number of tests: 40 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 2876.199951 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 1569 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 1834 , n 3688 235 | Number of tests: 40 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 2882.018555 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 1569 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 1834 , n 3688 245 | Number of tests: 40 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 2823.529297 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 1569 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 1834 , n 3688 255 | Number of tests: 40 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 2898.986084 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 1569 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 1834 , n 3688 265 | Number of tests: 40 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 3039.439941 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 1569 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 1834 , n 3688 275 | Number of tests: 40 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 2985.734863 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 1569 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 1834 , n 3688 285 | Number of tests: 40 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 2991.803223 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 1569 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 1834 , n 3688 295 | Number of tests: 40 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 2939.467529 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 1569 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_theatre12.csv_100: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 1834 , n 3688 5 | Number of tests: 400 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 2493.594727 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 1559 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 1834 , n 3688 15 | Number of tests: 400 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 2475.456543 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 1559 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 1834 , n 3688 25 | Number of tests: 400 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 2455.172852 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 1559 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 1834 , n 3688 35 | Number of tests: 400 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 2524.143066 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 1559 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 1834 , n 3688 45 | Number of tests: 400 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 2445.766357 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 1559 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 1834 , n 3688 55 | Number of tests: 400 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 2549.055664 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 1559 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 1834 , n 3688 65 | Number of tests: 400 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 2447.189697 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 1559 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 1834 , n 3688 75 | Number of tests: 400 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 2491.678223 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 1559 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 1834 , n 3688 85 | Number of tests: 400 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 2571.183105 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 1559 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 1834 , n 3688 95 | Number of tests: 400 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 2458.763916 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 1559 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 1834 , n 3688 105 | Number of tests: 400 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 2499.504150 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 1559 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 1834 , n 3688 115 | Number of tests: 400 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 2548.620605 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 1559 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 1834 , n 3688 125 | Number of tests: 400 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 2515.650635 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 1559 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 1834 , n 3688 135 | Number of tests: 400 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 2461.930908 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 1559 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 1834 , n 3688 145 | Number of tests: 400 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 2492.610840 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 1559 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 1834 , n 3688 155 | Number of tests: 400 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 2499.356201 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 1559 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 1834 , n 3688 165 | Number of tests: 400 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 2495.794434 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 1559 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 1834 , n 3688 175 | Number of tests: 400 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 2502.327148 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 1559 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 1834 , n 3688 185 | Number of tests: 400 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 2501.814941 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 1559 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 1834 , n 3688 195 | Number of tests: 400 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 2485.353760 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 1559 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 1834 , n 3688 205 | Number of tests: 400 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 2457.180664 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 1559 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 1834 , n 3688 215 | Number of tests: 400 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 2448.049805 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 1559 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 1834 , n 3688 225 | Number of tests: 400 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 2450.286865 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 1559 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 1834 , n 3688 235 | Number of tests: 400 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 2456.872070 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 1559 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 1834 , n 3688 245 | Number of tests: 400 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 2528.965576 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 1559 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 1834 , n 3688 255 | Number of tests: 400 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 2462.462891 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 1559 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 1834 , n 3688 265 | Number of tests: 400 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 2461.122559 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 1559 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 1834 , n 3688 275 | Number of tests: 400 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 2471.590820 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 1559 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 1834 , n 3688 285 | Number of tests: 400 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 2545.336914 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 1559 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 1834 , n 3688 295 | Number of tests: 400 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 2484.146240 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 1559 301 | -------------------------------------------------------------------------------- /log_tools/logs/log_theatre12.csv_600:: -------------------------------------------------------------------------------- 1 | adaptive-boxes-gpu 2 | GPU-accelerated rectangular decomposition for sound propagation modeling 3 | Reading Data... 4 | Data on Memory: Data size: m 1834 , n 3688 5 | Number of tests: 2400 6 | Working... 7 | Decomposition ready!! 8 | -->Elapsed time: 2626.158447 9 | -->Last sum 0 10 | Saving rectagles - total amount of rectangles: 1556 11 | adaptive-boxes-gpu 12 | GPU-accelerated rectangular decomposition for sound propagation modeling 13 | Reading Data... 14 | Data on Memory: Data size: m 1834 , n 3688 15 | Number of tests: 2400 16 | Working... 17 | Decomposition ready!! 18 | -->Elapsed time: 2604.859619 19 | -->Last sum 0 20 | Saving rectagles - total amount of rectangles: 1557 21 | adaptive-boxes-gpu 22 | GPU-accelerated rectangular decomposition for sound propagation modeling 23 | Reading Data... 24 | Data on Memory: Data size: m 1834 , n 3688 25 | Number of tests: 2400 26 | Working... 27 | Decomposition ready!! 28 | -->Elapsed time: 2642.518555 29 | -->Last sum 0 30 | Saving rectagles - total amount of rectangles: 1556 31 | adaptive-boxes-gpu 32 | GPU-accelerated rectangular decomposition for sound propagation modeling 33 | Reading Data... 34 | Data on Memory: Data size: m 1834 , n 3688 35 | Number of tests: 2400 36 | Working... 37 | Decomposition ready!! 38 | -->Elapsed time: 2766.142334 39 | -->Last sum 0 40 | Saving rectagles - total amount of rectangles: 1556 41 | adaptive-boxes-gpu 42 | GPU-accelerated rectangular decomposition for sound propagation modeling 43 | Reading Data... 44 | Data on Memory: Data size: m 1834 , n 3688 45 | Number of tests: 2400 46 | Working... 47 | Decomposition ready!! 48 | -->Elapsed time: 2683.927490 49 | -->Last sum 0 50 | Saving rectagles - total amount of rectangles: 1558 51 | adaptive-boxes-gpu 52 | GPU-accelerated rectangular decomposition for sound propagation modeling 53 | Reading Data... 54 | Data on Memory: Data size: m 1834 , n 3688 55 | Number of tests: 2400 56 | Working... 57 | Decomposition ready!! 58 | -->Elapsed time: 2642.398926 59 | -->Last sum 0 60 | Saving rectagles - total amount of rectangles: 1558 61 | adaptive-boxes-gpu 62 | GPU-accelerated rectangular decomposition for sound propagation modeling 63 | Reading Data... 64 | Data on Memory: Data size: m 1834 , n 3688 65 | Number of tests: 2400 66 | Working... 67 | Decomposition ready!! 68 | -->Elapsed time: 2721.477783 69 | -->Last sum 0 70 | Saving rectagles - total amount of rectangles: 1556 71 | adaptive-boxes-gpu 72 | GPU-accelerated rectangular decomposition for sound propagation modeling 73 | Reading Data... 74 | Data on Memory: Data size: m 1834 , n 3688 75 | Number of tests: 2400 76 | Working... 77 | Decomposition ready!! 78 | -->Elapsed time: 2642.975586 79 | -->Last sum 0 80 | Saving rectagles - total amount of rectangles: 1558 81 | adaptive-boxes-gpu 82 | GPU-accelerated rectangular decomposition for sound propagation modeling 83 | Reading Data... 84 | Data on Memory: Data size: m 1834 , n 3688 85 | Number of tests: 2400 86 | Working... 87 | Decomposition ready!! 88 | -->Elapsed time: 2672.114502 89 | -->Last sum 0 90 | Saving rectagles - total amount of rectangles: 1556 91 | adaptive-boxes-gpu 92 | GPU-accelerated rectangular decomposition for sound propagation modeling 93 | Reading Data... 94 | Data on Memory: Data size: m 1834 , n 3688 95 | Number of tests: 2400 96 | Working... 97 | Decomposition ready!! 98 | -->Elapsed time: 2676.268799 99 | -->Last sum 0 100 | Saving rectagles - total amount of rectangles: 1556 101 | adaptive-boxes-gpu 102 | GPU-accelerated rectangular decomposition for sound propagation modeling 103 | Reading Data... 104 | Data on Memory: Data size: m 1834 , n 3688 105 | Number of tests: 2400 106 | Working... 107 | Decomposition ready!! 108 | -->Elapsed time: 2627.991455 109 | -->Last sum 0 110 | Saving rectagles - total amount of rectangles: 1557 111 | adaptive-boxes-gpu 112 | GPU-accelerated rectangular decomposition for sound propagation modeling 113 | Reading Data... 114 | Data on Memory: Data size: m 1834 , n 3688 115 | Number of tests: 2400 116 | Working... 117 | Decomposition ready!! 118 | -->Elapsed time: 2641.666260 119 | -->Last sum 0 120 | Saving rectagles - total amount of rectangles: 1558 121 | adaptive-boxes-gpu 122 | GPU-accelerated rectangular decomposition for sound propagation modeling 123 | Reading Data... 124 | Data on Memory: Data size: m 1834 , n 3688 125 | Number of tests: 2400 126 | Working... 127 | Decomposition ready!! 128 | -->Elapsed time: 2719.936768 129 | -->Last sum 0 130 | Saving rectagles - total amount of rectangles: 1557 131 | adaptive-boxes-gpu 132 | GPU-accelerated rectangular decomposition for sound propagation modeling 133 | Reading Data... 134 | Data on Memory: Data size: m 1834 , n 3688 135 | Number of tests: 2400 136 | Working... 137 | Decomposition ready!! 138 | -->Elapsed time: 2671.546143 139 | -->Last sum 0 140 | Saving rectagles - total amount of rectangles: 1558 141 | adaptive-boxes-gpu 142 | GPU-accelerated rectangular decomposition for sound propagation modeling 143 | Reading Data... 144 | Data on Memory: Data size: m 1834 , n 3688 145 | Number of tests: 2400 146 | Working... 147 | Decomposition ready!! 148 | -->Elapsed time: 2630.146973 149 | -->Last sum 0 150 | Saving rectagles - total amount of rectangles: 1556 151 | adaptive-boxes-gpu 152 | GPU-accelerated rectangular decomposition for sound propagation modeling 153 | Reading Data... 154 | Data on Memory: Data size: m 1834 , n 3688 155 | Number of tests: 2400 156 | Working... 157 | Decomposition ready!! 158 | -->Elapsed time: 2750.366943 159 | -->Last sum 0 160 | Saving rectagles - total amount of rectangles: 1558 161 | adaptive-boxes-gpu 162 | GPU-accelerated rectangular decomposition for sound propagation modeling 163 | Reading Data... 164 | Data on Memory: Data size: m 1834 , n 3688 165 | Number of tests: 2400 166 | Working... 167 | Decomposition ready!! 168 | -->Elapsed time: 2732.001709 169 | -->Last sum 0 170 | Saving rectagles - total amount of rectangles: 1557 171 | adaptive-boxes-gpu 172 | GPU-accelerated rectangular decomposition for sound propagation modeling 173 | Reading Data... 174 | Data on Memory: Data size: m 1834 , n 3688 175 | Number of tests: 2400 176 | Working... 177 | Decomposition ready!! 178 | -->Elapsed time: 2613.968018 179 | -->Last sum 0 180 | Saving rectagles - total amount of rectangles: 1556 181 | adaptive-boxes-gpu 182 | GPU-accelerated rectangular decomposition for sound propagation modeling 183 | Reading Data... 184 | Data on Memory: Data size: m 1834 , n 3688 185 | Number of tests: 2400 186 | Working... 187 | Decomposition ready!! 188 | -->Elapsed time: 2624.062012 189 | -->Last sum 0 190 | Saving rectagles - total amount of rectangles: 1557 191 | adaptive-boxes-gpu 192 | GPU-accelerated rectangular decomposition for sound propagation modeling 193 | Reading Data... 194 | Data on Memory: Data size: m 1834 , n 3688 195 | Number of tests: 2400 196 | Working... 197 | Decomposition ready!! 198 | -->Elapsed time: 2596.266602 199 | -->Last sum 0 200 | Saving rectagles - total amount of rectangles: 1556 201 | adaptive-boxes-gpu 202 | GPU-accelerated rectangular decomposition for sound propagation modeling 203 | Reading Data... 204 | Data on Memory: Data size: m 1834 , n 3688 205 | Number of tests: 2400 206 | Working... 207 | Decomposition ready!! 208 | -->Elapsed time: 2634.088867 209 | -->Last sum 0 210 | Saving rectagles - total amount of rectangles: 1556 211 | adaptive-boxes-gpu 212 | GPU-accelerated rectangular decomposition for sound propagation modeling 213 | Reading Data... 214 | Data on Memory: Data size: m 1834 , n 3688 215 | Number of tests: 2400 216 | Working... 217 | Decomposition ready!! 218 | -->Elapsed time: 2586.859375 219 | -->Last sum 0 220 | Saving rectagles - total amount of rectangles: 1556 221 | adaptive-boxes-gpu 222 | GPU-accelerated rectangular decomposition for sound propagation modeling 223 | Reading Data... 224 | Data on Memory: Data size: m 1834 , n 3688 225 | Number of tests: 2400 226 | Working... 227 | Decomposition ready!! 228 | -->Elapsed time: 2640.908691 229 | -->Last sum 0 230 | Saving rectagles - total amount of rectangles: 1557 231 | adaptive-boxes-gpu 232 | GPU-accelerated rectangular decomposition for sound propagation modeling 233 | Reading Data... 234 | Data on Memory: Data size: m 1834 , n 3688 235 | Number of tests: 2400 236 | Working... 237 | Decomposition ready!! 238 | -->Elapsed time: 2548.997314 239 | -->Last sum 0 240 | Saving rectagles - total amount of rectangles: 1557 241 | adaptive-boxes-gpu 242 | GPU-accelerated rectangular decomposition for sound propagation modeling 243 | Reading Data... 244 | Data on Memory: Data size: m 1834 , n 3688 245 | Number of tests: 2400 246 | Working... 247 | Decomposition ready!! 248 | -->Elapsed time: 2475.400146 249 | -->Last sum 0 250 | Saving rectagles - total amount of rectangles: 1557 251 | adaptive-boxes-gpu 252 | GPU-accelerated rectangular decomposition for sound propagation modeling 253 | Reading Data... 254 | Data on Memory: Data size: m 1834 , n 3688 255 | Number of tests: 2400 256 | Working... 257 | Decomposition ready!! 258 | -->Elapsed time: 2449.734863 259 | -->Last sum 0 260 | Saving rectagles - total amount of rectangles: 1556 261 | adaptive-boxes-gpu 262 | GPU-accelerated rectangular decomposition for sound propagation modeling 263 | Reading Data... 264 | Data on Memory: Data size: m 1834 , n 3688 265 | Number of tests: 2400 266 | Working... 267 | Decomposition ready!! 268 | -->Elapsed time: 2428.099365 269 | -->Last sum 0 270 | Saving rectagles - total amount of rectangles: 1557 271 | adaptive-boxes-gpu 272 | GPU-accelerated rectangular decomposition for sound propagation modeling 273 | Reading Data... 274 | Data on Memory: Data size: m 1834 , n 3688 275 | Number of tests: 2400 276 | Working... 277 | Decomposition ready!! 278 | -->Elapsed time: 2482.700439 279 | -->Last sum 0 280 | Saving rectagles - total amount of rectangles: 1556 281 | adaptive-boxes-gpu 282 | GPU-accelerated rectangular decomposition for sound propagation modeling 283 | Reading Data... 284 | Data on Memory: Data size: m 1834 , n 3688 285 | Number of tests: 2400 286 | Working... 287 | Decomposition ready!! 288 | -->Elapsed time: 2485.149170 289 | -->Last sum 0 290 | Saving rectagles - total amount of rectangles: 1556 291 | adaptive-boxes-gpu 292 | GPU-accelerated rectangular decomposition for sound propagation modeling 293 | Reading Data... 294 | Data on Memory: Data size: m 1834 , n 3688 295 | Number of tests: 2400 296 | Working... 297 | Decomposition ready!! 298 | -->Elapsed time: 2498.831787 299 | -->Last sum 0 300 | Saving rectagles - total amount of rectangles: 1558 301 | -------------------------------------------------------------------------------- /log_tools/record.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Start Record!" 3 | for j in 1 10 100 600: 4 | do 5 | echo $j 6 | for i in {1..30}: 7 | do 8 | echo $i 9 | touch ./logs/log_"$1"_$j 10 | ../adabox ../data/"$1" ../data/out.csv $j >> ./logs/log_"$1"_$j 11 | done 12 | done 13 | echo "Finish Record!" 14 | -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | nvcc test_getters.cu -o test 3 | -------------------------------------------------------------------------------- /test/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotachango/adaptive-boxes-gpu/cf17735948fce2d92b4e64f3a9b13a40aa461ec5/test/test -------------------------------------------------------------------------------- /test/test_getters.cu: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | #include "stdlib.h" 4 | #include 5 | #include 6 | #include 7 | // getters 8 | #include "../include/getters.h" 9 | // data 10 | #include "./hall10.h" 11 | 12 | 13 | bool verify_results(int *expected, int *actual, bool print); 14 | 15 | int main(int argc, char *argv[]){ 16 | printf("adaptive-boxes-gpu\n"); 17 | printf("Test getters\n"); 18 | 19 | printf("----> Data size: m %ld , n% ld\n",m, n); 20 | 21 | 22 | int out_expected[4] = {}; 23 | int out[4] = {}; 24 | 25 | int point_to_test_i; 26 | int point_to_test_j; 27 | 28 | // Test 29 | for (int idx_j=0; idx_j