-
Notifications
You must be signed in to change notification settings - Fork 16
/
sort_particle.h
44 lines (43 loc) · 1.58 KB
/
sort_particle.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "pubdefs.h"
int c_call_particle_sort_single_x (One_Particle_Collection * pthis )
;
int c_call_particle_sort_single_y (One_Particle_Collection * pthis )
;
int c_call_particle_sort_single_z (One_Particle_Collection * pthis )
;
int c_call_particle_sort_single_x_vlo (One_Particle_Collection * pthis )
;
int c_call_particle_sort_single_y_vlo (One_Particle_Collection * pthis )
;
int c_call_particle_sort_single_z_vlo (One_Particle_Collection * pthis )
;
int openmp_call_particle_sort_single_x (One_Particle_Collection * pthis )
;
int openmp_call_particle_sort_single_y (One_Particle_Collection * pthis )
;
int openmp_call_particle_sort_single_z (One_Particle_Collection * pthis )
;
int openmp_call_particle_sort_single_x_vlo (One_Particle_Collection * pthis )
;
int openmp_call_particle_sort_single_y_vlo (One_Particle_Collection * pthis )
;
int openmp_call_particle_sort_single_z_vlo (One_Particle_Collection * pthis )
;
int c_call_move_back_kernel_single (One_Particle_Collection * pthis )
;
int openmp_call_move_back_kernel_single (One_Particle_Collection * pthis )
;
int call_particle_sort_single (One_Particle_Collection * pthis ,int dir ,int use_vlo )
;
int dump_particles_mpi (One_Particle_Collection * pthis ,FILE * of )
;
int print_particles_mpi (One_Particle_Collection * pthis ,int dir )
;
int swap_particle_sort_host_l (Field3D_MPI * pthis ,int dir )
;
int swap_particle_sort_host_r (Field3D_MPI * pthis ,int dir )
;
void dump_particles (Field3D_MPI * pthis ,FILE * fp )
;
int call_particle_sort_mpi (Field3D_MPI * pthis ,int dir ,int use_vlo )
;