Skip to content

Commit 9b7525d

Browse files
committed
use correct build flag
1 parent 7e2fcc1 commit 9b7525d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

lib/copy_gauge_extended.cu

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ namespace quda {
6565
#else
6666
errorQuda("QUDA_RECONSTRUCT=%d does not enable reconstruct-8", QUDA_RECONSTRUCT);
6767
#endif
68-
#if defined(GPU_STAGGERED_DIRAC) || defined(QUDA_QCD_PLUS_QED)
68+
#if defined(GPU_STAGGERED_DIRAC) || defined(BUILD_QCD_PLUS_QED)
6969
} else if (out.Reconstruct() == QUDA_RECONSTRUCT_13) {
7070
#if QUDA_RECONSTRUCT & 2
7171
typedef typename gauge_mapper<FloatOut,QUDA_RECONSTRUCT_13>::type G;
@@ -80,7 +80,7 @@ namespace quda {
8080
#else
8181
errorQuda("QUDA_RECONSTRUCT=%d does not enable reconstruct-9", QUDA_RECONSTRUCT);
8282
#endif
83-
#endif // defined(GPU_STAGGERED_DIRAC) || defined(QUDA_QCD_PLUS_QED)
83+
#endif // defined(GPU_STAGGERED_DIRAC) || defined(BUILD_QCD_PLUS_QED)
8484
} else {
8585
errorQuda("Reconstruction %d and order %d not supported", out.Reconstruct(), out.Order());
8686
}
@@ -147,7 +147,7 @@ namespace quda {
147147
#else
148148
errorQuda("QUDA_RECONSTRUCT=%d does not enable reconstruct-8", QUDA_RECONSTRUCT);
149149
#endif
150-
#if defined(GPU_STAGGERED_DIRAC) || defined(QUDA_QCD_PLUS_QED)
150+
#if defined(GPU_STAGGERED_DIRAC) || defined(BUILD_QCD_PLUS_QED)
151151
} else if (in.Reconstruct() == QUDA_RECONSTRUCT_13) {
152152
#if QUDA_RECONSTRUCT & 2
153153
typedef typename gauge_mapper<FloatIn,QUDA_RECONSTRUCT_13>::type G;
@@ -162,7 +162,7 @@ namespace quda {
162162
#else
163163
errorQuda("QUDA_RECONSTRUCT=%d does not enable reconstruct-9", QUDA_RECONSTRUCT);
164164
#endif
165-
#endif // defined(GPU_STAGGERED_DIRAC) || defined(QUDA_QCD_PLUS_QED)
165+
#endif // defined(GPU_STAGGERED_DIRAC) || defined(BUILD_QCD_PLUS_QED)
166166
} else {
167167
errorQuda("Reconstruction %d and order %d not supported", in.Reconstruct(), in.Order());
168168
}

lib/copy_gauge_inc.cu

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace quda {
2727
#else
2828
errorQuda("QUDA_RECONSTRUCT=%d does not enable reconstruct-8", QUDA_RECONSTRUCT);
2929
#endif
30-
#if defined(GPU_STAGGERED_DIRAC) || defined(BUILD_OPENQCD_INTERFACE)
30+
#if defined(GPU_STAGGERED_DIRAC) || defined(BUILD_QCD_PLUS_QED)
3131
} else if (out.Reconstruct() == QUDA_RECONSTRUCT_13) {
3232
#if QUDA_RECONSTRUCT & 2
3333
typedef typename gauge_mapper<FloatOut, QUDA_RECONSTRUCT_13>::type G;
@@ -56,7 +56,7 @@ namespace quda {
5656
#else
5757
errorQuda("QUDA_RECONSTRUCT=%d does not enable reconstruct-9", QUDA_RECONSTRUCT);
5858
#endif
59-
#endif // defined(GPU_STAGGERED_DIRAC) || defined(BUILD_OPENQCD_INTERFACE)
59+
#endif // defined(GPU_STAGGERED_DIRAC) || defined(BUILD_QCD_PLUS_QED)
6060
} else {
6161
errorQuda("Reconstruction %d and order %d not supported", out.Reconstruct(), out.Order());
6262
}
@@ -169,7 +169,7 @@ namespace quda {
169169
#else
170170
errorQuda("QUDA_RECONSTRUCT=%d does not enable reconstruct-8", QUDA_RECONSTRUCT);
171171
#endif
172-
#if defined(GPU_STAGGERED_DIRAC) || defined(BUILD_OPENQCD_INTERFACE)
172+
#if defined(GPU_STAGGERED_DIRAC) || defined(BUILD_QCD_PLUS_QED)
173173
} else if (in.Reconstruct() == QUDA_RECONSTRUCT_13) {
174174
#if QUDA_RECONSTRUCT & 2
175175
typedef typename gauge_mapper<FloatIn,QUDA_RECONSTRUCT_13>::type G;
@@ -191,7 +191,7 @@ namespace quda {
191191
#else
192192
errorQuda("QUDA_RECONSTRUCT=%d does not enable reconstruct-9", QUDA_RECONSTRUCT);
193193
#endif
194-
#endif // defined(GPU_STAGGERED_DIRAC) || defined(BUILD_OPENQCD_INTERFACE)
194+
#endif // defined(GPU_STAGGERED_DIRAC) || defined(BUILD_QCD_PLUS_QED)
195195
} else {
196196
errorQuda("Reconstruction %d and order %d not supported", in.Reconstruct(), in.Order());
197197
}

0 commit comments

Comments
 (0)