123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2020 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
- * Copyright (C) 2019 Mael Keryell
- *
- * StarPU is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at
- * your option) any later version.
- *
- * StarPU is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
- #include <stdlib.h>
- #include <stdio.h>
- #include <starpu.h>
- #include <math.h>
- #include <stdint.h>
- #include "../includes/display.h"
- #include "../includes/sorting.h"
- struct Param {
- unsigned taskx;
- double epsilon;
- };
- void nbody_acc(void **, void *);
- void nbody_updt(void **, void *);
- void CUDA_nbody_acc(void **, void *);
- void CUDA_nbody_updt(void **, void *);
- static struct starpu_perfmodel model =
- {
- .type = STARPU_HISTORY_BASED,
- .symbol = "history_perf"
- };
- static struct starpu_codelet cl =
- {
- .cpu_funcs = {nbody_acc},
- .cuda_funcs = {CUDA_nbody_acc},
- //STRUCT PARAM
- /* .nbuffers = 3, */
- /* .modes = {STARPU_RW, STARPU_RW, STARPU_RW}, */
- //
-
- //ARRAY PARAM
- .nbuffers = 5,
- .modes = {STARPU_RW, STARPU_RW, STARPU_RW, STARPU_RW, STARPU_RW},
- //
- .model = &model
- };
- static struct starpu_codelet cl2 =
- {
- .cpu_funcs = {nbody_updt},
- .cuda_funcs = {CUDA_nbody_updt},
- //STRUCT PARAM
- /* .nbuffers = 3, */
- /* .modes = {STARPU_RW, STARPU_RW, STARPU_R}, */
- //
-
- //ARRAY PARAM
- .nbuffers = 4,
- .modes = {STARPU_RW, STARPU_RW, STARPU_R, STARPU_R},
- //
- .model = &model
- };
- void nbody_with_starpu(double *positions, double *velocities, double *accelerations, double *masses, double *parameters, unsigned nbr_planets, unsigned nbr_simulations, unsigned nslices)
- {
- starpu_data_handle_t P_handle, V_handle, A_handle, M_handle, Par_handle, Id_handle;
-
- starpu_matrix_data_register(&P_handle, STARPU_MAIN_RAM, (uintptr_t)positions, 2, 2, nbr_planets, sizeof(double));
- starpu_matrix_data_register(&V_handle, STARPU_MAIN_RAM, (uintptr_t)velocities, 2, 2, nbr_planets, sizeof(double));
- starpu_matrix_data_register(&A_handle, STARPU_MAIN_RAM, (uintptr_t)accelerations, 2, 2, nbr_planets, sizeof(double));
- starpu_vector_data_register(&M_handle, STARPU_MAIN_RAM, (uintptr_t)masses, nbr_planets, sizeof(double));
- starpu_vector_data_register(&Par_handle, STARPU_MAIN_RAM, (uintptr_t)parameters, 3, sizeof(double));
- struct starpu_data_filter vert =
- {
- .filter_func = starpu_matrix_filter_vertical_block,
- .nchildren = nslices
- };
-
- unsigned i;
- int64_t *Id = malloc(nslices * sizeof(int64_t));
-
- for (i = 0; i < nbr_simulations; i++){
-
- /* printf("Simulation %d: \n", i); */
-
- starpu_data_partition(A_handle, &vert);
- //STRUCT PARAM
- /* struct Param *params = malloc(nslices * sizeof(struct Param)); */
-
-
- /* unsigned epsilon = 2.5e8; */
- //
- int64_t task1, task2;
-
-
- for (task1 = 0; task1 < nslices; task1++){
-
-
- struct starpu_task *task = starpu_task_create();
-
- Id[task1] = task1;
- starpu_vector_data_register(&Id_handle, STARPU_MAIN_RAM, (uintptr_t)&(Id[task1]), 1, sizeof(int64_t));
- //STRUCT PARAM
- /* struct Param param = {task1, epsilon}; */
-
- /* params[task1] = param; */
- //
-
- task->cl = &cl;
- task->handles[0] = P_handle;
- task->handles[1] = starpu_data_get_sub_data(A_handle, 1, task1);
- task->handles[2] = M_handle;
- task->handles[3] = Par_handle;
- task->handles[4] = Id_handle;
- //STRUCT PARAM
- /* task->cl_arg = &(params[task1]); */
- /* task->cl_arg_size = sizeof(struct Param); */
- //
-
- starpu_task_submit(task);
- starpu_data_unregister_submit(Id_handle);
- }
- starpu_task_wait_for_all();
- ////////////////////////
- starpu_data_partition(P_handle, &vert);
- starpu_data_partition(V_handle, &vert);
-
- for (task2 = 0; task2 < nslices; task2++){
-
- struct starpu_task *task = starpu_task_create();
- //STRUCT PARAM
- /* struct Param param = {task1, epsilon}; */
-
- /* params[task2] = param; */
- //
- task->cl = &cl2;
- task->handles[0] = starpu_data_get_sub_data(P_handle, 1, task2);
- task->handles[1] = starpu_data_get_sub_data(V_handle, 1, task2);
- task->handles[2] = starpu_data_get_sub_data(A_handle, 1, task2);
- task->handles[3] = Par_handle;
- //STRUCT PARAM
- /* task->cl_arg = &(params[task2]); */
- /* task->cl_arg_size = sizeof(struct Param); */
- //
- starpu_task_submit(task);
- }
-
- starpu_task_wait_for_all();
-
- starpu_data_unpartition(P_handle, STARPU_MAIN_RAM);
- starpu_data_unpartition(V_handle, STARPU_MAIN_RAM);
- starpu_data_unpartition(A_handle, STARPU_MAIN_RAM);
-
- /* char filename[38]; */
-
- /* sprintf(filename, "PPM/nbody%d_%d.ppm", nbr_planets, i + 1); */
-
- /* nbody_graph_transpose(filename, positions, nbr_planets, 1000, 1000, -4e8, 4e8); */
- }
-
- starpu_data_unregister(P_handle);
- starpu_data_unregister(V_handle);
- starpu_data_unregister(A_handle);
- starpu_data_unregister(M_handle);
- starpu_data_unregister(Par_handle);
- /* char filename[36]; */
-
- /* sprintf(filename, "PPM/bug%d_%d.ppm", nbr_planets, i); */
-
- /* nbody_graph(filename, positions, nbr_planets, 1000, 1000, -4e8, 4e8); */
- }
- void init_positions(double *positions, unsigned nbr_planets)
- {
- unsigned i;
- double qiX, qiY;
- for (i = 0; i < nbr_planets; i++){
- double angle = ((RAND_MAX - rand()) / (double) (RAND_MAX)) * 2.0 * M_PI;
- double distToCenter = ((RAND_MAX - rand()) / (double) (RAND_MAX)) * 1.0e8 + 1.0e8;
- qiX = cos(angle) * distToCenter;
- qiY = sin(angle) * distToCenter;
- positions[2*i] = qiX;
- positions[2*i + 1] = qiY;
-
- }
- }
- void init_velocities(double *positions, double *velocities, unsigned nbr_planets)
- {
- unsigned i;
- for (i = 0; i < nbr_planets; i++){
- double viX = positions[2*i+1] * 4.0e-6;
- double viY = -positions[2*i] * 4.0e-6;
- velocities[2*i] = viX;
- velocities[2*i + 1] = viY;
-
- }
- }
- void init_masses(double *masses, unsigned nbr_planets)
- {
- unsigned i;
- for (i = 0; i < nbr_planets; i++){
- double mi = (rand() / (double) RAND_MAX) * 1e22;
- masses[i] = mi;
- }
- }
-
- double median_times(unsigned nbr_planets, unsigned nbr_simulations, unsigned nslices, unsigned nbr_tests)
- {
- double exec_times[nbr_tests];
- /* double *positions = malloc(4 * sizeof(double)); */
- /* double *velocities = calloc(4, sizeof(double)); */
- /* double *accelerations = calloc(4, sizeof(double)); */
- double *positions = malloc(nbr_planets * 2 * sizeof(double));
- double *velocities = malloc(nbr_planets * 2 * sizeof(double));
- double *accelerations = calloc(nbr_planets * 2, sizeof(double));
- double *masses = malloc(nbr_planets * sizeof(double));
- double *parameters = malloc(3 * sizeof(double));
- double G = 6.67408e-11;
- /* double dt = 36000; */
- double dt = 3600;
- double epsilon = 2.5e8;
- parameters[0] = G;
- parameters[1] = dt;
- parameters[2] = epsilon;
- init_positions(positions, nbr_planets);
- init_velocities(positions, velocities, nbr_planets);
- init_masses(masses, nbr_planets);
- /* positions[0] = 0; */
- /* positions[1] = 300000; */
- /* positions[2] = 600000; */
- /* positions[3] = 300000; */
- /* masses[0] = 5.9e24; */
- /* masses[1] = 5.9e24; */
- /* unsigned i; */
- /* for (i = 0; i < nbr_planets; i++){ */
- /* accelerations[i] = i; */
- /* } */
-
-
- /* nbody_graph("PPM/bug0.ppm", positions, nbr_planets, 1000, 1000, -4e8, 4e8); */
- /* unsigned k; */
-
- /* for (k = 1; k <= nbr_simulations; k++){ */
-
- double start, stop, exec_t;
- unsigned i;
-
- for (i = 0; i < nbr_tests; i++){
- start = starpu_timing_now();
- nbody_with_starpu(positions, velocities, accelerations, masses, parameters, nbr_planets, nbr_simulations, nslices);
-
- stop = starpu_timing_now();
- exec_t = (stop - start) / 1.e6;
- exec_times[i] = exec_t;
- }
- /* printf("\n\nSIMULATION %d:\n\n", k); */
-
-
- /* char filename[23]; */
-
- /* sprintf(filename, "PPM/bug%d.ppm", k); */
-
- /* nbody_graph(filename, positions, nbr_planets, 1000, 1000, -4e8, 4e8); */
- /* } */
- /* for (i = 0; i < nbr_planets; i++){ */
- /* printf("%f %f\n", accelerations[2*i], accelerations[2*i + 1]); */
- /* } */
-
-
- free(positions);
- free(velocities);
- free(accelerations);
- free(masses);
- quicksort(exec_times, 0, nbr_tests - 1);
- return exec_times[nbr_tests / 2];
- }
- void display_times(unsigned start_nbr, unsigned step_nbr, unsigned stop_nbr, unsigned nbr_simulations, unsigned nslices, unsigned nbr_tests)
- {
- FILE *myfile;
-
- myfile = fopen("DAT/nbody_c_array_times.dat", "w");
- unsigned nbr_planets;
-
- for (nbr_planets = start_nbr; nbr_planets <= stop_nbr; nbr_planets += step_nbr){
- double t = median_times(nbr_planets, nbr_simulations, nslices, nbr_tests);
- printf("ARRAY: %u planets: %f seconds\n", nbr_planets, t);
- fprintf(myfile, "%f\n", t);
- }
- fclose(myfile);
- }
- int main(int argc, char * argv[])
- {
- if (argc != 7){
- printf("Usage: %s start_nbr step_nbr stop_nbr nbr_simulations nslices nbr_tests\n", argv[0]);
- return 1;
- }
- if (starpu_init(NULL) != EXIT_SUCCESS){
- fprintf(stderr, "ERROR\n");
- return 77;
- }
- unsigned start_nbr = (unsigned) atoi(argv[1]);
- unsigned step_nbr = (unsigned) atoi(argv[2]);
- unsigned stop_nbr = (unsigned) atoi(argv[3]);
- unsigned nbr_simulations = (unsigned) atoi(argv[4]);
- unsigned nslices = (unsigned) atoi(argv[5]);
- unsigned nbr_tests = (unsigned) atoi(argv[6]);
- srand(time(NULL));
-
- display_times(start_nbr, step_nbr, stop_nbr, nbr_simulations, nslices, nbr_tests);
- starpu_shutdown();
-
- return 0;
- }
|