forked from etmc/tmLQCD
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Hopping_Matrix.c
166 lines (142 loc) · 3.87 KB
/
Hopping_Matrix.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
/**********************************************************************
*
* Copyright (C) 2001 Martin Luescher
* 2002 Martin Hasenbusch
* 2003, 2004, 2005, 2006, 2007, 2008 Carsten Urbach
*
* BG and halfspinor versions (C) 2007, 2008 Carsten Urbach
*
* This file is based on an implementation of the Dirac operator
* written by Martin Luescher, modified by Martin Hasenbusch in 2002
* and modified and extended by Carsten Urbach from 2003-2008
*
* This file is part of tmLQCD.
*
* tmLQCD is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* tmLQCD 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with tmLQCD. If not, see <http://www.gnu.org/licenses/>.
*
*
* Hopping_Matrix is the conventional Wilson
* hopping matrix
*
* \kappa\sum_{\pm\mu}(r+\gamma_\mu)U_{x,\mu}
*
* for ieo = 0 this is M_{eo}, for ieo = 1
* it is M_{oe}
*
* l is the output, k the input field
*
* Structure of top level precompiler directives
*
* - defining _USE_HALFSPINOR implies that we also use
* a "gauge copy"
*
* - such that we are checking for the _USE_GAUGECOPY feature seperatly in the
* ELSE branch of the "if defined _USE_HALFSPINOR" statement
*
****************************************************************/
#ifdef HAVE_CONFIG_H
# include<config.h>
#endif
#include <stdlib.h>
#include <stdio.h>
#ifdef OMP
#include <omp.h>
#endif
#include "global.h"
#include "su3.h"
#ifdef MPI
# include "xchange_field.h"
# ifdef _USE_TSPLITPAR
# include "xchange_field_tslice.h"
# endif
# if defined _USE_HALFSPINOR
# include "xchange_halffield.h"
# endif
#endif
#include "boundary.h"
#include "init_dirac_halfspinor.h"
#include "update_backward_gauge.h"
#ifdef BGQ
# include"DirectPut.h"
#endif
#include "Hopping_Matrix.h"
#if defined _USE_HALFSPINOR
# include "operator/halfspinor_hopping.h"
# if ((defined SSE2)||(defined SSE3))
# include "sse.h"
# elif (defined BGL && defined XLC)
# include "bgl.h"
# elif (defined BGQ && defined XLC)
# include "bgq.h"
# include "bgq2.h"
# include "xlc_prefetch.h"
# endif
void Hopping_Matrix(const int ieo, spinor * const l, spinor * const k) {
#ifdef _GAUGE_COPY
if(g_update_gauge_copy) {
update_backward_gauge(g_gauge_field);
}
#endif
#ifdef OMP
#pragma omp parallel
{
su3 * restrict u0 ALIGN;
#endif
# include "operator/halfspinor_body.c"
# ifdef OMP
} /* OpenMP closing brace */
# endif
return;
}
#else /* thats _USE_HALFSPINOR */
# if (((defined SSE2)||(defined SSE3)) && defined _USE_TSPLITPAR)
# include "sse.h"
# include "operator/hopping_sse_dbl.c"
# else
# include "operator/hopping.h"
# if ((defined SSE2)||(defined SSE3))
# include "sse.h"
# elif (defined BGL && defined XLC)
# include "bgl.h"
# elif (defined BGQ && defined XLC)
# include "bgq.h"
# include "bgq2.h"
# include "xlc_prefetch.h"
# elif defined XLC
# include"xlc_prefetch.h"
# endif
void Hopping_Matrix(const int ieo, spinor * const l, spinor * const k) {
# ifdef XLC
# pragma disjoint(*l, *k)
# endif
# ifdef _GAUGE_COPY
if(g_update_gauge_copy) {
update_backward_gauge(g_gauge_field);
}
# endif
# if (defined MPI && !(defined _NO_COMM))
xchange_field(k, ieo);
# endif
# ifdef OMP
# pragma omp parallel
{
# endif
# include "operator/hopping_body_dbl.c"
# ifdef OMP
} /* OpenMP closing brace */
# endif
return;
}
# endif
#endif /* thats _USE_HALFSPINOR */