You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am working on an Nc=2 implementation of stout smearing in Grid with Anna Hasenfratz and Simon Catterall. Compiling with --enable-Nc=2 prevented by "Nc = 3"-specific code in GaugeConfigurationMasked.h, which is used by FTHMC2p1f.c. Problem is fixed by replacing...
The latter two replacements only affect the field transformation HMC methods in the GaugeConfigurationMasked header, which fail to compile due to LieAlgebraProject not compiling properly for Nc = 2. The first replacement is needed to compile the Nc=2 stout smearing method.
I've a version of the GaugeConfigurationMasked header that fixes the compilation issue in my fork of Grid. It also has additional assertions that should fail when Nc != 3 for the field transformation HMC methods. Additionally, I've provided the configure command that I run for the compilation below.
Code example:
No response
Target platform:
model name : AMD Ryzen 7 7840U w/ Radeon 780M Graphics
Describe the issue:
I am working on an
Nc=2
implementation of stout smearing in Grid with Anna Hasenfratz and Simon Catterall. Compiling with--enable-Nc=2
prevented by "Nc = 3
"-specific code inGaugeConfigurationMasked.h
, which is used byFTHMC2p1f.c
. Problem is fixed by replacing...SU3::
--->SU<Nc>::
#if 1
--->#if 1 and (Nc == 3)
#if 0
--->#if 0 and (Nc == 3)
The latter two replacements only affect the field transformation HMC methods in the GaugeConfigurationMasked header, which fail to compile due to
LieAlgebraProject
not compiling properly forNc = 2
. The first replacement is needed to compile theNc=2
stout smearing method.I've a version of the
GaugeConfigurationMasked
header that fixes the compilation issue in my fork of Grid. It also has additional assertions that should fail whenNc != 3
for the field transformation HMC methods. Additionally, I've provided the configure command that I run for the compilation below.Code example:
No response
Target platform:
model name : AMD Ryzen 7 7840U w/ Radeon 780M Graphics
Configure options:
The text was updated successfully, but these errors were encountered: