mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
Merge branch 'feature/distil' of github.com:mmphys/Grid into feature/distil
This commit is contained in:
commit
ec45b16840
@ -189,7 +189,8 @@ void test_MesonSink(Application &application)
|
|||||||
{
|
{
|
||||||
// DistilVectors parameters
|
// DistilVectors parameters
|
||||||
MContraction::A2AMesonField::Par A2AMesonFieldPar;
|
MContraction::A2AMesonField::Par A2AMesonFieldPar;
|
||||||
A2AMesonFieldPar.left="Peramb_unsmeared_sink";
|
//A2AMesonFieldPar.left="Peramb_unsmeared_sink";
|
||||||
|
A2AMesonFieldPar.left="g5phi";
|
||||||
A2AMesonFieldPar.right="Peramb_unsmeared_sink";
|
A2AMesonFieldPar.right="Peramb_unsmeared_sink";
|
||||||
A2AMesonFieldPar.output="DistilFields";
|
A2AMesonFieldPar.output="DistilFields";
|
||||||
A2AMesonFieldPar.gammas="all";
|
A2AMesonFieldPar.gammas="all";
|
||||||
@ -787,6 +788,7 @@ int main(int argc, char *argv[])
|
|||||||
test_Global( application );
|
test_Global( application );
|
||||||
test_LapEvec( application );
|
test_LapEvec( application );
|
||||||
test_Perambulators( application );
|
test_Perambulators( application );
|
||||||
|
test_g5_sinks( application );
|
||||||
test_MesonSink( application );
|
test_MesonSink( application );
|
||||||
break;
|
break;
|
||||||
case 7: // 3
|
case 7: // 3
|
||||||
|
@ -199,6 +199,21 @@ void test_MesonSink(Application &application)
|
|||||||
application.createModule<MContraction::A2AMesonField>("DistilMesonSink",A2AMesonFieldPar);
|
application.createModule<MContraction::A2AMesonField>("DistilMesonSink",A2AMesonFieldPar);
|
||||||
}
|
}
|
||||||
/////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////
|
||||||
|
// g5*unsmeared
|
||||||
|
/////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
void test_g5_sinks(Application &application)
|
||||||
|
{
|
||||||
|
// DistilVectors parameters
|
||||||
|
MDistil::g5_multiply::Par g5_multiplyPar;
|
||||||
|
g5_multiplyPar.input="Peramb_unsmeared_sink";
|
||||||
|
g5_multiplyPar.nnoise = 1;
|
||||||
|
g5_multiplyPar.LI=5;
|
||||||
|
g5_multiplyPar.Ns=4;
|
||||||
|
g5_multiplyPar.Nt_inv=1;
|
||||||
|
application.createModule<MDistil::g5_multiply>("g5phi",g5_multiplyPar);
|
||||||
|
}
|
||||||
|
/////////////////////////////////////////////////////////////
|
||||||
// MesonFields
|
// MesonFields
|
||||||
/////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user