-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload_smearing_double.c
224 lines (174 loc) · 5.24 KB
/
load_smearing_double.c
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/********************* load_smearing_double.c ****************************/
/* MIMD version 7 */
/*
* This file contains a number of routines to load in
* the smearing functions.
*
* This version reads a single precision file
*/
#include "generic_form_includes.h"
/*
* Ths routine loads in a single smearing function,
* over the spatial lattice, from a disk file.
*
* This is scalar code -- it should only be run from
* one node (the master).
*
* The smearing function is stored in a binary file
*
*
*/
void load_scalar_smear(float *data, int dim, char filename[])
{
FILE *fp ;
size_t nobj = (size_t) dim ;
int magic_number = 43241 ;
enum rev_choices { byte_rev , do_nothing } ;
int byte_rev_flag = do_nothing ;
char myname[] = "load_scalar_smear";
/* Memory for some header information ***/
size_t three_object = (size_t) 3 ;
int32type header_data[3] ;
/** open the file ****/
if( (fp = fopen(filename ,"rb")) == NULL )
{
printf("ERROR:%s: Could not open the file %s\n",myname,filename);
terminate(1);
}
/*** read in the header information *********/
if( fread(header_data,sizeof(int32type),three_object,fp) != three_object )
{
printf("There was an error during the reading of the smearing function HEADER \n");
terminate(1);
}
/*** check the header information ****/
if( header_data[0] != magic_number )
{
printf("Reading with byte reversal\n") ;
byte_rev_flag = byte_rev ;
}
if( byte_rev_flag == byte_rev )
byterevn( (int32type*) header_data , three_object ) ;
if( header_data[0] != magic_number )
{
printf("ERROR:%s: Mismatch of the magic numbers for the smearing function \n",myname);
printf("file = %d code = %d\n",header_data[0],magic_number);
terminate(1);
}
if( header_data[1] != dim )
{
printf("ERROR: %s: amount of data mismatch between file and code \n",myname);
printf("file = %d code = %d \n",header_data[1], dim );
terminate(1);
}
if( header_data[2] != nx )
{
printf("ERROR: %s: mismatch between code and file linear dimension\n",myname);
printf("file = %d code = %d\n", header_data[2],nx);
terminate(1);
}
/*** read the smearing function ***/
if( fread(data,sizeof(float),nobj,fp) != nobj )
{
printf("%s: There was an error during the reading of the smearing function \n",myname);
terminate(1);
}
if( byte_rev_flag == byte_rev )
byterevn( (int32type*) data , nobj ) ;
/*** close the file ***/
if( fclose(fp) != 0 )
{
printf("%s: There was an error during the closing of %s \n",myname,filename);
terminate(1);
}
printf("%s: I have read a smearing function from the file %s\n",myname,filename);
}
/*
* Load a complex smearing function from disk
* into a position in the site structure
*
* Subroutine arguments
* On entry
* filename :: the name of the file to read the smearing function from
* On return
* where_smear :: site structure pointer to complex smaering function
*
*/
void load_smearing(field_offset where_smear, char filename[])
{
float *wave_func ;
complex lbuf ;
int nxyz = nx*ny*nz ;
int x,y,z,t ;
int newnode , currentnode ;
int where ;
int where_space ;
int i ;
double starttime,endtime ;
/****---------------------------------------*****/
starttime = dclock() ;
/** Reserve space for the smearing function on the master node ***/
if(mynode()==0)
{
if( (wave_func = (float *) calloc( (size_t) nxyz, sizeof(float) ) ) == NULL )
{
printf("ERROR: load_smearing: could not reserve buffer space for wave function on the master node \n");
terminate(1);
}
}
/** load in the smearing function into the master node buffer **/
if(mynode()==0)
{
/** load the smearing function ****/
load_scalar_smear(wave_func, nxyz, filename);
}
g_sync();
currentnode = 0 ;
/*** send the smearing function to the correct nodes **/
for(t=0;t<nt;t++)
for(z=0;z<nz;z++)
for(y=0;y<ny;y++)
for(x=0;x<nx;x++)
{
where = x + nx*(y + ny*( z + nz*t)) ;
where_space = x + nx*(y + ny*z) ;
newnode=node_number(x,y,z,t);
if(newnode != currentnode)
{
g_sync();
currentnode=newnode;
}
/* Node 0 reads, and sends site to correct node */
if(this_node==0)
{
/* Conversion from float to double occurs here */
lbuf.real = *(wave_func + where_space ) ;
lbuf.imag = 0.0 ;
if(currentnode==0)
{ /* just copy links */
i = node_index(x,y,z,t);
*( (complex *)F_PT( &(lattice[i]), where_smear ) )=lbuf;
}
else
{ /* send to correct node */
send_field((char *)&lbuf,sizeof(complex),currentnode);
}
}
/* The node which contains this site reads message */
else
{
/* for all nodes other than node 0 */
if(this_node==currentnode)
{
get_field((char *)&lbuf,sizeof(complex),0);
i = node_index(x,y,z,t);
*( (complex *)F_PT( &(lattice[i]), where_smear ) )=lbuf;
}
}
} /** end the loop over the spatial lattice ****/
/** free up the memory buffer on the master node ***/
if(mynode()==0)
free(wave_func);
endtime = dclock() - starttime ;
node0_printf("Time to load smearing functions = %g sec \n",endtime );
}