From f19d35553aa79a4c298e80efb646bbca6fce5c13 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Fri, 26 Jun 2020 18:02:27 -0400 Subject: [PATCH 01/49] Initial refactoring of Nathan's code to accommodate different RK integrators --- wilson_flow/Make_template | 1 + wilson_flow/defines.h | 18 +++++++ wilson_flow/gf_globals.h | 20 +++++++ wilson_flow/integrate.c | 86 ++++++++++++++++++++++++++++-- wilson_flow/wilson_flow_includes.h | 2 + 5 files changed, 123 insertions(+), 4 deletions(-) create mode 100644 wilson_flow/gf_globals.h diff --git a/wilson_flow/Make_template b/wilson_flow/Make_template index 21695cd4c..60e071548 100644 --- a/wilson_flow/Make_template +++ b/wilson_flow/Make_template @@ -108,6 +108,7 @@ ${OBJECTS} : ${HEADERS} ${LASTMAKE} ${ALL_MAKES} wilson_flow:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_LUSCHER" \ clean: -/bin/rm -f *.o diff --git a/wilson_flow/defines.h b/wilson_flow/defines.h index 26e107154..ef75d53c0 100644 --- a/wilson_flow/defines.h +++ b/wilson_flow/defines.h @@ -8,4 +8,22 @@ #define WILSON 0 #define SYMANZIK 1 +// low-storage schemes +// 3-stage third order +#define INTEGRATOR_LUSCHER 0 +// 5-stage fourth order +#define INTEGRATOR_CK 1 + +// Runge-Kutta-Munthe-Kaas schemes +// 3-stage third order +#define INTEGRATOR_RKMK3 10 +// 4-stage fourth order +#define INTEGRATOR_RKMK4 11 +// 6-stage fifth order +#define INTEGRATOR_RKMK5 12 +// 13-stage eighth order (Dormand-Prince) +#define INTEGRATOR_RKMK8 13 + + + #endif /* _DEFINES_H */ diff --git a/wilson_flow/gf_globals.h b/wilson_flow/gf_globals.h new file mode 100644 index 000000000..4007b99d6 --- /dev/null +++ b/wilson_flow/gf_globals.h @@ -0,0 +1,20 @@ +#ifndef _GF_GLOBALS_H +#define _GF_GLOBALS_H +/****************************** gf_globals.h ********************************/ +/* global parameters for gradient flow */ + +/* Maximum number of stages for 2N-storage RK schemes */ +#define MAX_RK_2N 5 + +/* Integrator parameters */ +/* 2N-storage schemes */ +#if INTEGRATOR==INTEGRATOR_LUSCHER || INTEGRATOR==INTEGRATOR_CK +// number of stages +EXTERN int N_2N; +// A, B coefficients +EXTERN double A_2N[MAX_RK_2N]; +EXTERN double B_2N[MAX_RK_2N]; +#endif + + +#endif /* _GF_GLOBALS_H */ diff --git a/wilson_flow/integrate.c b/wilson_flow/integrate.c index 1c7ae24f3..00fc7b288 100644 --- a/wilson_flow/integrate.c +++ b/wilson_flow/integrate.c @@ -104,7 +104,7 @@ scalar_mult_ah( anti_hermitmat *a, Real c, anti_hermitmat *dest ) /* Adds a matrix times a real scalar to a matrix (all antihermitian) */ void -scalar_mult_add_ah( anti_hermitmat *a, anti_hermitmat *b, Real c, +scalar_mult_add_ah( anti_hermitmat *a, anti_hermitmat *b, Real c, anti_hermitmat *dest ) { dest->m01.real = a->m01.real + c*b->m01.real; @@ -190,14 +190,14 @@ stout_smear_step( Real c1, Real c2 ) /* Calculate the new staple */ staple(); - FORALLUPDIR(dir) + FORALLUPDIR(dir) FORALLSITES(i, s) { /* Retrieve the current link and accumulation matrix */ U = &(s->link[dir]); Acur = &(s->accumulate[dir]); /* Update the accumulation matrix A += c1*proj(U*S) */ - mult_su3_na( U, &(s->staple[dir]), &tempS1 ); + mult_su3_na( U, &(s->staple[dir]), &tempS1 ); anti_hermitian_traceless_proj( &tempS1, &tempA1 ); scalar_mult_add_ah( Acur, &tempA1, c1, Acur ); @@ -211,7 +211,7 @@ stout_smear_step( Real c1, Real c2 ) /* Luscher's integration routine (essentially Runga-Kutta) */ /* Outlined in 'arXiv:1006.4518 [hep-lat]' */ -void +void stout_step_rk() { register int dir, i; @@ -227,3 +227,81 @@ stout_step_rk() stout_smear_step( -8./9.*stepsize, 1. ); stout_smear_step( 3./4.*stepsize, -1. ); } + + + + +/* A single step for a 2N-storage Runge-Kutta scheme + * where the right hand side of the flow equation is evaluated + * and the fields are updated + * A: accumulating matrix over all smear steps in a single time step + * S: staple (action dependent); recalculated before each smear step + * U: gauge links + * c1,c2: constants + * Calculating a single smear step is done by: + * A += c1*proj(S*U) -> update accumulation matrix + * U = exp(c2*A)*U -> update gauge links + */ +void +integrate_RK_2N_one_step( Real c1, Real c2 ) +{ + register int dir, i; + register site *s; + + /* Temporary matrix holders */ + anti_hermitmat *Acur, tempA1; + su3_matrix *U, tempS1, tempS2; + + /* Calculate the new staple */ + staple(); + + FORALLUPDIR(dir) + FORALLSITES(i, s) { + /* Retrieve the current link and accumulation matrix */ + U = &(s->link[dir]); + Acur = &(s->accumulate[dir]); + + /* Update the accumulation matrix A += c1*proj(U*S) */ + mult_su3_na( U, &(s->staple[dir]), &tempS1 ); + anti_hermitian_traceless_proj( &tempS1, &tempA1 ); + scalar_mult_add_ah( Acur, &tempA1, c1, Acur ); + + /* Update the links U = exp(c2*A)*U */ + scalar_mult_ah( Acur, c2, &tempA1 ); + exp_anti_hermitian( &tempA1, &tempS1, exp_order ); + mult_su3_nn( &tempS1, U, &tempS2 ); + su3mat_copy( &tempS2, U ); + } +} + +/* one step of a low-storage Runge-Kutta scheme, + this includes Luscher, arXiv:1006.4518 [hep-lat] + or any other 2N-storage scheme */ +void +integrate_RK_2N() +{ + register int dir, i; + register site *s; + + /* Clear the accumulation matrix */ + FORALLSITES(i, s) + FORALLUPDIR(dir) + clear_anti_hermitian(&(s->accumulate[dir])); + + /* Infinitesimal stout smearing */ + stout_smear_step( 17./36.*stepsize, -9./17. ); + stout_smear_step( -8./9.*stepsize, 1. ); + stout_smear_step( 3./4.*stepsize, -1. ); +} + + +/* one step of the flow, here branching into different integrators happens */ +void +flow_step() +{ + + if( GF_INTEGRATOR==INTEGRATOR_LUSCHER ) + stout_step_rk(); + + +} diff --git a/wilson_flow/wilson_flow_includes.h b/wilson_flow/wilson_flow_includes.h index 9fa189ba1..782a9d4e6 100644 --- a/wilson_flow/wilson_flow_includes.h +++ b/wilson_flow/wilson_flow_includes.h @@ -10,6 +10,7 @@ #include "../include/complex.h" #include "../include/su3.h" #include "lattice.h" +#include "gf_globals.h" #include "../include/macros.h" #include "../include/comdefs.h" #include "../include/io_lat.h" @@ -19,6 +20,7 @@ /* Prototypes for functions in high level code */ int setup(); int readin(int prompt); +void flow_step(); void stout_step_rk(); void staple(); void fmunu_fmunu(double *time, double *space, double *charge); From 72855f21fe149bb516363c419c4cdcca8761c2ad Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Fri, 26 Jun 2020 19:17:39 -0400 Subject: [PATCH 02/49] Remove gf_globals.h, combine flow globals with lattice.h --- wilson_flow/gf_globals.h | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 wilson_flow/gf_globals.h diff --git a/wilson_flow/gf_globals.h b/wilson_flow/gf_globals.h deleted file mode 100644 index 4007b99d6..000000000 --- a/wilson_flow/gf_globals.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef _GF_GLOBALS_H -#define _GF_GLOBALS_H -/****************************** gf_globals.h ********************************/ -/* global parameters for gradient flow */ - -/* Maximum number of stages for 2N-storage RK schemes */ -#define MAX_RK_2N 5 - -/* Integrator parameters */ -/* 2N-storage schemes */ -#if INTEGRATOR==INTEGRATOR_LUSCHER || INTEGRATOR==INTEGRATOR_CK -// number of stages -EXTERN int N_2N; -// A, B coefficients -EXTERN double A_2N[MAX_RK_2N]; -EXTERN double B_2N[MAX_RK_2N]; -#endif - - -#endif /* _GF_GLOBALS_H */ From 59f19d5e39b5d63f83ca598ebead3de34486cb87 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Sat, 27 Jun 2020 17:27:59 -0400 Subject: [PATCH 03/49] Added several integrators for gradient flow --- wilson_flow/Make_template | 40 ++- wilson_flow/control.c | 83 ++++- wilson_flow/defines.h | 7 + wilson_flow/integrate.c | 517 ++++++++++++++++++++++++++--- wilson_flow/lattice.h | 73 +++- wilson_flow/params.h | 6 +- wilson_flow/setup.c | 215 ++++++++++-- wilson_flow/wilson_flow_includes.h | 6 +- 8 files changed, 856 insertions(+), 91 deletions(-) diff --git a/wilson_flow/Make_template b/wilson_flow/Make_template index 60e071548..d1a2f011e 100644 --- a/wilson_flow/Make_template +++ b/wilson_flow/Make_template @@ -54,6 +54,7 @@ G_OBJECTS = \ path_product.o \ ploop3.o \ remap_stdio_from_args.o \ + show_generic_opts.o \ reunitarize2.o \ ranstuff.o @@ -61,7 +62,7 @@ ifeq ($(strip ${HAVEQIO}),true) G_OBJECTS += file_types_milc_usqcd.o io_scidac.o io_scidac_types.o endif -# Objects depending on architecture and software package +# Objects depending on architecture and software package LAYOUT = layout_hyper_prime.o # Choices possible here @@ -77,12 +78,12 @@ OBJECTS = ${MY_OBJECTS} ${G_OBJECTS} ${G_KS_OBJECTS} ${G_W_OBJECTS} ${LAYOUT} \ ${ADD_OBJECTS} ${EXTRA_OBJECTS} #Libraries for complex numbers and su3 functions -QCDLIB = ${LIBDIR}/su3.${PRECISION}.a ${LIBDIR}/complex.${PRECISION}.a +QCDLIB = ${LIBDIR}/su3.${PRECISION}.a ${LIBDIR}/complex.${PRECISION}.a LIBRARIES = ${QCDLIB} ${SCIDAC_LIBRARIES} ${QUDA_LIBRARIES} # Default rule for C compilation -.c.o: ; ${CC} -c ${CFLAGS} $*.c +.c.o: ; ${CC} -c ${CFLAGS} $*.c # To force a full remake when changing targets LASTMAKE = .lastmake.${MAKEFILE}.${PRECISION}.${MYTARGET} @@ -104,12 +105,40 @@ ${OBJECTS} : ${HEADERS} ${LASTMAKE} ${ALL_MAKES} ######################################################## -##### Targets: +##### Targets: wilson_flow:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_LUSCHER" \ +wilson_flow_ck:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_CK" \ + +wilson_flow_rkmk3:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_RKMK3" \ + +wilson_flow_rkmk4:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_RKMK4" \ + +wilson_flow_rkmk5:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_RKMK5" \ + +wilson_flow_rkmk8:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_RKMK8" \ + +wilson_flow_adpt:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_ADAPT_LUSCHER" \ + +wilson_flow_adpt_bs:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_ADAPT_BS" \ + clean: -/bin/rm -f *.o @@ -132,5 +161,4 @@ localmake: ${OBJECTS} ${LIBRARIES} ${OBJECTS} ${QCDLIB} ${ILIB} -lm touch localmake -target: libmake localmake - +target: libmake localmake diff --git a/wilson_flow/control.c b/wilson_flow/control.c index 493105452..becfcee0b 100644 --- a/wilson_flow/control.c +++ b/wilson_flow/control.c @@ -57,39 +57,98 @@ main( int argc, char **argv ) /* Calculate and print initial flow output */ fmunu_fmunu(&Et, &Es, &charge); - node0_printf("WFLOW %g %g %g %g\n", 0.0, Et, Es, charge); +#if (MILC_PRECISION==1) + node0_printf("WFLOW: %g %g %g %g\n", 0.0, Et, Es, charge); +#else + node0_printf("WFLOW: %g %.16g %.16g %.16g\n", 0.0, Et, Es, charge); +#endif +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS +#if (MILC_PRECISION==1) + node0_printf("ADAPT: %g %g %g %g\n", 0.0, stepsize, 0.0, 0.0 ); +#else + node0_printf("ADAPT: %g %.16g %.16g %.16g\n", 0.0, stepsize, 0.0, 0.0 ); +#endif +#endif fflush(stdout); +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + steps_rejected = 0; // count rejected steps in adaptive schemes +#endif +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + is_first_step = 1; // need to know the first step for FSAL + // set the permutation array for FSAL + indK[0] = 0; indK[1] = 1; indK[2] = 2; indK[3] = 3; +#endif + is_final_step = 0; + flowtime = 0; + i = 0; /* Loop over the flow time */ - for( flowtime=stepsize, i=0; - stoptime==AUTO_STOPTIME || flowtime<=stoptime; - flowtime+=stepsize, i++ ) { + while( stoptime==AUTO_STOPTIME || ( flowtimestoptime-flowtime && stoptime!=AUTO_STOPTIME ) { + stepsize = stoptime-flowtime; + is_final_step = 1; + } +// printf("%g\n", stepsize); /* Perform one flow step (most of the computation is here) */ - stout_step_rk(); + flow_step(); + + flowtime += stepsize; + i++; /* Calculate and print current flow output */ fmunu_fmunu(&Et, &Es, &charge); - node0_printf("WFLOW %g %g %g %g\n", flowtime, Et, Es, charge); +#if (MILC_PRECISION==1) + node0_printf("WFLOW: %g %g %g %g\n", flowtime, Et, Es, charge); +#else + node0_printf("WFLOW: %g %.16g %.16g %.16g\n", flowtime, Et, Es, charge); +#endif +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS +#if (MILC_PRECISION==1) + node0_printf("ADAPT: %g %g %g %g\n", flowtime, stepsize, dist, local_tol/dist ); +#else + node0_printf("ADAPT: %g %.16g %.16g %.16g\n", flowtime, stepsize, dist, local_tol/dist ); +#endif +#endif fflush(stdout); /* Automatic determination of stoptime: */ /* t^2 E > 0.45 and d/dt { t^2 E } > 0.35 */ - /* Bounds need to be adjusted with scale determination cutoff */ + /* Bounds need to be adjusted with scale determination cutoff */ if( stoptime==AUTO_STOPTIME ) { old_value = new_value; - new_value = flowtime*flowtime*(Et+Es); + new_value = flowtime*flowtime*(Et+Es); der_value = flowtime*(new_value-old_value)/stepsize; - if( new_value > 0.45 && der_value > 0.35 ) + if( new_value > 0.45 && der_value > 0.35 ) break; } /* end: auto stoptime */ + +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + if( is_final_step==0 ) { + // adjust step size for the next step except if it is final + stepsize = stepsize * SAFETY * pow( local_tol/dist, 1/3. ); + } +#endif + } /* end: flowtime loop */ /* Save and print the number of steps */ total_steps = i; node0_printf("Number of steps = %i\n", total_steps); +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + node0_printf("Number of rejected steps = %i\n", steps_rejected); +#endif fflush(stdout); /* Save lattice if requested */ @@ -100,16 +159,16 @@ main( int argc, char **argv ) dtimec += dclock(); node0_printf("Time to complete flow = %e seconds\n", dtimec); fflush(stdout); - + }/* end: loop over configurations */ /* Notify user application is done */ - node0_printf("RUNNING COMPLETED\n"); + node0_printf("RUNNING COMPLETED\n"); fflush(stdout); /* Stop and print application timer */ dtime += dclock(); - node0_printf("Time = %e seconds\n", dtime); + node0_printf("Time = %e seconds\n", dtime); fflush(stdout); normal_exit(0); diff --git a/wilson_flow/defines.h b/wilson_flow/defines.h index ef75d53c0..64e17ce45 100644 --- a/wilson_flow/defines.h +++ b/wilson_flow/defines.h @@ -24,6 +24,13 @@ // 13-stage eighth order (Dormand-Prince) #define INTEGRATOR_RKMK8 13 +// adaptive schemes +#define INTEGRATOR_ADAPT_LUSCHER 20 +#define INTEGRATOR_ADAPT_BS 21 + +// Safety factor for adaptive schemes +// to prevent too many rejected steps +#define SAFETY 0.95 #endif /* _DEFINES_H */ diff --git a/wilson_flow/integrate.c b/wilson_flow/integrate.c index 00fc7b288..7c0ac5378 100644 --- a/wilson_flow/integrate.c +++ b/wilson_flow/integrate.c @@ -168,17 +168,89 @@ exp_anti_hermitian( anti_hermitmat *a, su3_matrix *dest, int n ) su3mat_copy(&temp1, dest); } -/* Computes a single smearing steps (three smear steps per time step) + +/* copy antihermitian matrix */ +void ahmat_copy( anti_hermitmat *a, anti_hermitmat *b ) { + b->m01 = a->m01; + b->m02 = a->m02; + b->m12 = a->m12; + b->m00im = a->m00im; + b->m11im = a->m11im; + b->m22im = a->m22im; +} + + +/* commutator of anti-Hermitian matrices, + this is a slow version that relies on uncompressing the matrices + and generic multiplication */ +void +commutator_ah( anti_hermitmat *a, anti_hermitmat *b, anti_hermitmat *c ) { + + su3_matrix temp1, temp2, temp3, temp4; + + uncompress_anti_hermitian( a, &temp1 ); + uncompress_anti_hermitian( b, &temp2 ); + + mult_su3_nn( &temp1, &temp2, &temp3 ); + mult_su3_nn( &temp2, &temp1, &temp4 ); + sub_su3_matrix( &temp3, &temp4, &temp1 ); + compress_anti_hermitian( &temp1, c ); +} + + +/* derivative of the inverse matrix exponential, + required for generic RKMK methods */ +void +dexpinv( anti_hermitmat *u, anti_hermitmat *v, int q, anti_hermitmat *d ) { + // Bernoulli numbers normalized with k!, i.e. this array is B_k/k! + Real BernoulliK[11] = { 1, -1/2., 1/12., 0, -1/720., 0, 1/30240., 0, -1/1209600., 0, 1/47900160. }; + + anti_hermitmat w; + int register k; + + ahmat_copy( v, &w ); + ahmat_copy( v, d ); + for( k=1; ke[i][j].real-b->e[i][j].real); + if( dmaxe[i][j].imag-b->e[i][j].imag); + if( dmax update accumulation matrix - * U = exp(c2*A)*U -> update gauge links + * cA,cB: constants + * Calculating a single smear step is done by + * (this follows usual convention on 2N-storage RK schemes): + * A = cA*A + proj(S*U) -> update accumulation matrix + * U = exp(cB*A)*U -> update gauge links */ void -stout_smear_step( Real c1, Real c2 ) +integrate_RK_2N_one_step( Real cA, Real cB ) { register int dir, i; register site *s; @@ -196,23 +268,24 @@ stout_smear_step( Real c1, Real c2 ) U = &(s->link[dir]); Acur = &(s->accumulate[dir]); - /* Update the accumulation matrix A += c1*proj(U*S) */ + /* Update the accumulation matrix A = cA*A + proj(U*S) */ mult_su3_na( U, &(s->staple[dir]), &tempS1 ); anti_hermitian_traceless_proj( &tempS1, &tempA1 ); - scalar_mult_add_ah( Acur, &tempA1, c1, Acur ); + scalar_mult_add_ah( &tempA1, Acur, cA, Acur ); - /* Update the links U = exp(c2*A)*U */ - scalar_mult_ah( Acur, c2, &tempA1 ); + /* Update the links U = exp(cB*A)*U */ + scalar_mult_ah( Acur, cB, &tempA1 ); exp_anti_hermitian( &tempA1, &tempS1, exp_order ); mult_su3_nn( &tempS1, U, &tempS2 ); su3mat_copy( &tempS2, U ); } } -/* Luscher's integration routine (essentially Runga-Kutta) */ -/* Outlined in 'arXiv:1006.4518 [hep-lat]' */ +/* one step of a low-storage Runge-Kutta scheme, + this includes Luscher, arXiv:1006.4518 [hep-lat] + or any other 2N-storage scheme */ void -stout_step_rk() +integrate_RK_2N() { register int dir, i; register site *s; @@ -223,17 +296,381 @@ stout_step_rk() clear_anti_hermitian(&(s->accumulate[dir])); /* Infinitesimal stout smearing */ - stout_smear_step( 17./36.*stepsize, -9./17. ); - stout_smear_step( -8./9.*stepsize, 1. ); - stout_smear_step( 3./4.*stepsize, -1. ); + for( i=0; ilink[dir]), &(s->link0[dir]) ); + + // loop over RK stages + for( i_rk=0; i_rkaccumulate[dir]); + clear_anti_hermitian( Atemp ); + for( j_rk=0; j_rkK[j_rk][dir]), a_RK[i_rk][j_rk], Atemp ); + } + // update the link + scalar_mult_ah( Atemp, -stepsize, Atemp ); + exp_anti_hermitian( Atemp, &tempS1, exp_order ); + mult_su3_nn( &tempS1, &(s->link0[dir]), &(s->link[dir]) ); + } + } + + // get the right hand side of the flow equation from the staple + // and store in s->K[i_rk] + staple(); + FORALLUPDIR(dir) + FORALLSITES(i, s) { -/* A single step for a 2N-storage Runge-Kutta scheme - * where the right hand side of the flow equation is evaluated - * and the fields are updated + mult_su3_na( &(s->link[dir]), &(s->staple[dir]), &tempS1 ); + anti_hermitian_traceless_proj( &tempS1, &(s->K[i_rk][dir]) ); + if( i_rk!=0 ) + dexpinv( &(s->accumulate[dir]), &(s->K[i_rk][dir]), p_order, &(s->K[i_rk][dir])); + } + } + // final RK stage + FORALLUPDIR(dir) + FORALLSITES(i, s) { + clear_anti_hermitian( &tempA1 ); + for( i_rk=0; i_rkK[i_rk][dir]), b_RK[i_rk], &tempA1 ); + } + // update the link + scalar_mult_ah( &tempA1, -stepsize, &tempA1 ); + exp_anti_hermitian( &tempA1, &tempS1, exp_order ); + mult_su3_nn( &tempS1, &(s->link0[dir]), &(s->link[dir]) ); + } +} +#elif GF_INTEGRATOR==INTEGRATOR_RKMK3 +/* Third order Runge-Kutta-Munthe-Kaas type, + requires a single commutator at the last stage */ +void +integrate_RKMK3() { + + register int dir, i, i_rk, j_rk; + register site *s; + su3_matrix tempS1, tempS2; + anti_hermitmat tempA1, tempA2, *Atemp; + + // store the initial state of the gauge field, + // it is used at every stage in this integrator format + FORALLUPDIR(dir) + FORALLSITES(i, s) + su3mat_copy( &(s->link[dir]), &(s->link0[dir]) ); + + // loop over RK stages + for( i_rk=0; i_rkaccumulate[dir]); + clear_anti_hermitian( Atemp ); + for( j_rk=0; j_rkK[j_rk][dir]), a_RK[i_rk][j_rk], Atemp ); + } + // update the link + scalar_mult_ah( Atemp, -stepsize, Atemp ); + exp_anti_hermitian( Atemp, &tempS1, exp_order ); + mult_su3_nn( &tempS1, &(s->link0[dir]), &(s->link[dir]) ); + } + } + + // get the right hand side of the flow equation from the staple + // and store in s->K[i_rk] + staple(); + + FORALLUPDIR(dir) + FORALLSITES(i, s) { + + mult_su3_na( &(s->link[dir]), &(s->staple[dir]), &tempS1 ); + anti_hermitian_traceless_proj( &tempS1, &(s->K[i_rk][dir]) ); + } + } + // final RK stage + FORALLUPDIR(dir) + FORALLSITES(i, s) { + clear_anti_hermitian( &tempA1 ); + for( i_rk=0; i_rkK[i_rk][dir]), b_RK[i_rk], &tempA1 ); + } + // the only commutator in this scheme is at the last stage + commutator_ah( &tempA1, &(s->K[0][dir]), &tempA2 ); + scalar_mult_add_ah( &tempA1, &tempA2, -stepsize/6, &tempA1 ); + // update the link + scalar_mult_ah( &tempA1, -stepsize, &tempA1 ); + exp_anti_hermitian( &tempA1, &tempS1, exp_order ); + mult_su3_nn( &tempS1, &(s->link0[dir]), &(s->link[dir]) ); + } +} +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER +void +integrate_adapt_RK_2N_one_step( Real cA, Real cB, int istep ) +{ + register int dir, i; + register site *s; + + /* Temporary matrix holders */ + anti_hermitmat *Acur, tempA1; + su3_matrix *U, tempS1, tempS2; + + /* Calculate the new staple */ + staple(); + + FORALLUPDIR(dir) + FORALLSITES(i, s) { + /* Retrieve the current link and accumulation matrix */ + U = &(s->link[dir]); + Acur = &(s->accumulate[dir]); + + /* Update the accumulation matrix A = cA*A + proj(U*S) */ + mult_su3_na( U, &(s->staple[dir]), &tempS1 ); + anti_hermitian_traceless_proj( &tempS1, &(s->K[istep][dir]) ); + scalar_mult_add_ah( &(s->K[istep][dir]), Acur, cA, Acur ); + + /* Update the links U = exp(cB*A)*U */ + scalar_mult_ah( Acur, cB, &tempA1 ); + exp_anti_hermitian( &tempA1, &tempS1, exp_order ); + mult_su3_nn( &tempS1, U, &tempS2 ); + su3mat_copy( &tempS2, U ); + } +} + +/* Adaptive scheme based on Luscher's in 2N-storage format */ +void +integrate_adapt_RK_2N() +{ + register int dir, i; + register site *s; + int is_repeat = 1; + anti_hermitmat tempA1; + su3_matrix tempS1, tempS2; + Real temp; + + FORALLSITES(i, s) + FORALLUPDIR(dir) { + /* Clear the accumulation matrix */ + clear_anti_hermitian(&(s->accumulate[dir])); + /* Store the initial state of the gauge field */ + su3mat_copy( &(s->link[dir]), &(s->link0[dir]) ); + } + + do { + /* Infinitesimal stout smearing */ + for( i=0; iK[0][dir]), &(s->K[1][dir]), -2, &tempA1 ); + scalar_mult_ah( &tempA1, stepsize, &tempA1 ); + exp_anti_hermitian( &tempA1, &tempS1, exp_order ); + mult_su3_nn( &tempS1, &(s->link0[dir]), &tempS2 ); + /* Calculate distance between the two approximations */ + temp = su3mat_distance( &(s->link[dir]), &tempS2 ); + /* Find the maximum over the local volume */ + if( distlocal_tol && is_final_step==0 ) { + // adjust step size + stepsize = stepsize * SAFETY * pow( local_tol/dist, 1/3. ); + // record failed step + steps_rejected++; + // copy over the original state of the gauge field + FORALLSITES(i, s) + FORALLUPDIR(dir) + su3mat_copy( &(s->link0[dir]), &(s->link[dir]) ); + } + else { + is_repeat = 0; + } + } while( is_repeat==1 ); +} +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_BS +/* Bogacki-Shampine adaptive 3(2) embedded pair */ +void +integrate_adapt_bs() { + + register int dir, i, i_rk, j_rk; + register site *s; + su3_matrix tempS1, tempS2; + anti_hermitmat tempA1, tempA2, *Atemp; + Real temp; + int is_repeat = 1; + + // store the initial state of the gauge field, + // it is used at every stage in this integrator format + // and if the step gets rejected + FORALLUPDIR(dir) + FORALLSITES(i, s) + su3mat_copy( &(s->link[dir]), &(s->link0[dir]) ); + + // get the first force evaluation on the very first step of integration + if( is_first_step==1 ) { + staple(); + FORALLUPDIR(dir) + FORALLSITES(i, s) { + mult_su3_na( &(s->link[dir]), &(s->staple[dir]), &tempS1 ); + anti_hermitian_traceless_proj( &tempS1, &(s->K[indK[0]][dir]) ); + } + is_first_step = 0; + } + + do { + // loop over RK stages + for( i_rk=1; i_rkaccumulate[dir]); + clear_anti_hermitian( Atemp ); + for( j_rk=0; j_rkK[indK[j_rk]][dir]), a_RK[i_rk][j_rk], Atemp ); + } + // update the link + scalar_mult_ah( Atemp, -stepsize, Atemp ); + exp_anti_hermitian( Atemp, &tempS1, exp_order ); + mult_su3_nn( &tempS1, &(s->link0[dir]), &(s->link[dir]) ); + } +//} + // get the right hand side of the flow equation from the staple + // and store in s->K[i_rk] + // NOTE: here FSAL property is used, so the force in K[0] is + // already filled from the previous step + staple(); + + FORALLUPDIR(dir) + FORALLSITES(i, s) { + mult_su3_na( &(s->link[dir]), &(s->staple[dir]), &tempS1 ); + anti_hermitian_traceless_proj( &tempS1, &(s->K[indK[i_rk]][dir]) ); + } +// } + } + // final RK stage that gives fourth-order local approximation + FORALLUPDIR(dir) + FORALLSITES(i, s) { + clear_anti_hermitian( &tempA1 ); + for( i_rk=0; i_rkK[indK[i_rk]][dir]), b_RK[i_rk], &tempA1 ); + } + // the only commutator in this scheme is at the last stage + commutator_ah( &tempA1, &(s->K[indK[0]][dir]), &tempA2 ); + scalar_mult_add_ah( &tempA1, &tempA2, -stepsize/6, &tempA1 ); + // update the link + scalar_mult_ah( &tempA1, -stepsize, &tempA1 ); + exp_anti_hermitian( &tempA1, &tempS1, exp_order ); + mult_su3_nn( &tempS1, &(s->link0[dir]), &(s->link[dir]) ); + } + // additional stage + staple(); + dist = 0; + FORALLUPDIR(dir) + FORALLSITES(i, s) { + mult_su3_na( &(s->link[dir]), &(s->staple[dir]), &tempS1 ); + anti_hermitian_traceless_proj( &tempS1, &(s->K[indK[3]][dir]) ); + clear_anti_hermitian( &tempA1 ); + for( i_rk=0; i_rk<4; i_rk++ ) { + // accumulate b'_1*K1 + b'_2*K2 + b'_3*K3 + b'_4*K4 + // NOTE: b' coefficients are stored as a_RK[3][0], a_RK[3][1], etc. + scalar_mult_add_ah( &tempA1, &(s->K[indK[i_rk]][dir]), a_RK[3][i_rk], &tempA1 ); + } + // get the lower (third) order estimate + scalar_mult_ah( &tempA1, -stepsize, &tempA1 ); + exp_anti_hermitian( &tempA1, &tempS1, exp_order ); + mult_su3_nn( &tempS1, &(s->link0[dir]), &tempS2 ); + /* Calculate distance between the two approximations */ + temp = su3mat_distance( &(s->link[dir]), &tempS2 ); + /* Find the maximum over the local volume */ + if( distlocal_tol && is_final_step==0 ) { + // adjust step size + stepsize = stepsize * SAFETY * pow( local_tol/dist, 1/3. ); + // record failed step + steps_rejected++; + // copy over the original state of the gauge field + FORALLSITES(i, s) + FORALLUPDIR(dir) + su3mat_copy( &(s->link0[dir]), &(s->link[dir]) ); + } + else { + is_repeat = 0; + } + } while( is_repeat==1 ); + // permute indices to read the force on the next step + i = indK[0]; + indK[0] = indK[3]; + indK[3] = i; +} +#endif + +/* one step of the flow, here branching into different integrators happens */ +void +flow_step() +{ + +#if GF_INTEGRATOR==INTEGRATOR_LUSCHER || GF_INTEGRATOR==INTEGRATOR_CK + integrate_RK_2N(); +#elif GF_INTEGRATOR==INTEGRATOR_RKMK3 + integrate_RKMK3(); +#elif GF_INTEGRATOR==INTEGRATOR_RKMK4 || GF_INTEGRATOR==INTEGRATOR_RKMK5 || GF_INTEGRATOR==INTEGRATOR_RKMK8 + integrate_RKMK_generic(); +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER + integrate_adapt_RK_2N(); +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + integrate_adapt_bs(); +#endif + +} + + + +// original Nathan's routines that are being phased out +#ifdef ABA + +/* Computes a single smearing steps (three smear steps per time step) * A: accumulating matrix over all smear steps in a single time step * S: staple (action dependent); recalculated before each smear step * U: gauge links @@ -243,7 +680,7 @@ stout_step_rk() * U = exp(c2*A)*U -> update gauge links */ void -integrate_RK_2N_one_step( Real c1, Real c2 ) +stout_smear_step( Real c1, Real c2 ) { register int dir, i; register site *s; @@ -274,34 +711,24 @@ integrate_RK_2N_one_step( Real c1, Real c2 ) } } -/* one step of a low-storage Runge-Kutta scheme, - this includes Luscher, arXiv:1006.4518 [hep-lat] - or any other 2N-storage scheme */ +/* Luscher's integration routine (essentially Runga-Kutta) */ +/* Outlined in 'arXiv:1006.4518 [hep-lat]' */ void -integrate_RK_2N() +stout_step_rk() { - register int dir, i; - register site *s; - - /* Clear the accumulation matrix */ - FORALLSITES(i, s) - FORALLUPDIR(dir) - clear_anti_hermitian(&(s->accumulate[dir])); - - /* Infinitesimal stout smearing */ - stout_smear_step( 17./36.*stepsize, -9./17. ); - stout_smear_step( -8./9.*stepsize, 1. ); - stout_smear_step( 3./4.*stepsize, -1. ); -} - + register int dir, i; + register site *s; -/* one step of the flow, here branching into different integrators happens */ -void -flow_step() -{ + /* Clear the accumulation matrix */ + FORALLSITES(i, s) + FORALLUPDIR(dir) + clear_anti_hermitian(&(s->accumulate[dir])); - if( GF_INTEGRATOR==INTEGRATOR_LUSCHER ) - stout_step_rk(); + /* Infinitesimal stout smearing */ + stout_smear_step( 17./36.*stepsize, -9./17. ); + stout_smear_step( -8./9.*stepsize, 1. ); + stout_smear_step( 3./4.*stepsize, -1. ); +} -} +#endif diff --git a/wilson_flow/lattice.h b/wilson_flow/lattice.h index 3f7b1bbd5..958a95513 100644 --- a/wilson_flow/lattice.h +++ b/wilson_flow/lattice.h @@ -29,9 +29,28 @@ typedef struct { /* Now come the physical fields, program dependent */ /* ------------------------------------------------------------ */ su3_matrix link[4] ALIGNMENT; /* gauge field */ - - /* Temporary matricies for staple, smoothing, and field strength */ +#if GF_INTEGRATOR==INTEGRATOR_RKMK3 || GF_INTEGRATOR==INTEGRATOR_RKMK4 || \ + GF_INTEGRATOR==INTEGRATOR_RKMK5 || GF_INTEGRATOR==INTEGRATOR_RKMK8 || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + /* gauge field at the beginning of RK step */ + su3_matrix link0[4] ALIGNMENT; +#endif + /* Temporary matrices for staple, smoothing, and field strength */ su3_matrix staple[4]; /* staple for each link */ +#if GF_INTEGRATOR==INTEGRATOR_RKMK3 + anti_hermitmat K[3][4]; /* right-hand-side in RK method for all stages */ +#elif GF_INTEGRATOR==INTEGRATOR_RKMK4 + anti_hermitmat K[4][4]; /* right-hand-side in RK method for all stages */ +#elif GF_INTEGRATOR==INTEGRATOR_RKMK5 + anti_hermitmat K[6][4]; /* right-hand-side in RK method for all stages */ +#elif GF_INTEGRATOR==INTEGRATOR_RKMK8 + anti_hermitmat K[13][4]; /* right-hand-side in RK method for all stages */ +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER + anti_hermitmat K[3][4]; /* right-hand-side in RK method for all stages */ +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + anti_hermitmat K[4][4]; /* right-hand-side in RK method for all stages */ +#endif anti_hermitmat accumulate[4]; /* accumulation matrix for smearing */ su3_matrix fieldstrength[6]; /* components of fmunu */ @@ -42,14 +61,14 @@ typedef struct { /* Definition of globals */ #ifdef CONTROL -#define EXTERN +#define EXTERN #else #define EXTERN extern #endif /* The following are global scalars */ /* Initialization parameters */ -EXTERN int nx,ny,nz,nt; +EXTERN int nx,ny,nz,nt; EXTERN size_t volume; EXTERN double g_ssplaq, g_stplaq; EXTERN double_complex linktrsum; @@ -62,10 +81,53 @@ EXTERN int total_steps; EXTERN int exp_order; EXTERN char flow_description[20]; EXTERN int stapleflag; +/* Integrator parameters */ +// Maximum number of stages (for storing coefficients) +#define MAX_RK_NS 13 +// number of stages +EXTERN int N_stages; +// order of the method +EXTERN int p_order; +/* 2N-storage schemes */ +#if GF_INTEGRATOR==INTEGRATOR_LUSCHER || GF_INTEGRATOR==INTEGRATOR_CK +// A, B coefficients +EXTERN Real A_2N[MAX_RK_NS]; +EXTERN Real B_2N[MAX_RK_NS]; +/* RKMK schemes */ +#elif GF_INTEGRATOR==INTEGRATOR_RKMK3 || GF_INTEGRATOR==INTEGRATOR_RKMK4 || GF_INTEGRATOR==INTEGRATOR_RKMK5 || GF_INTEGRATOR==INTEGRATOR_RKMK8 +// RK coefficients in Butcher table +EXTERN Real a_RK[MAX_RK_NS][MAX_RK_NS]; +EXTERN Real b_RK[MAX_RK_NS]; +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER +// A, B coefficients +EXTERN Real A_2N[MAX_RK_NS]; +EXTERN Real B_2N[MAX_RK_NS]; +// rejeted steps in adaptive integrators +EXTERN int steps_rejected; +// local tolerance for adaptive integrators +EXTERN Real local_tol; +// distance between two approximations in adaptive schemes +EXTERN Real dist; +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_BS +// RK coefficients in Butcher table +EXTERN Real a_RK[MAX_RK_NS][MAX_RK_NS]; +EXTERN Real b_RK[MAX_RK_NS]; +// rejeted steps in adaptive integrators +EXTERN int steps_rejected; +// local tolerance for adaptive integrators +EXTERN Real local_tol; +// distance between two approximations in adaptive schemes +EXTERN Real dist; +// to use FSAL property permute indices in the storage array +EXTERN int indK[4]; +EXTERN int is_first_step; +#endif +// flag if the integration step is final +EXTERN int is_final_step; EXTERN int startflag; EXTERN int saveflag; -EXTERN char startfile[MAXFILENAME], savefile[MAXFILENAME]; +EXTERN char startfile[MAXFILENAME], savefile[MAXFILENAME]; EXTERN char stringLFN[MAXFILENAME]; /** ILDG LFN if applicable **/ @@ -78,6 +140,7 @@ EXTERN int number_of_nodes; /* number of nodes in use */ EXTERN int this_node; /* node number of this node */ EXTERN gauge_file *startlat_p; +EXTERN char hostname[128]; /* The lattice is a single global variable - (actually this is the part of the lattice on this node) */ diff --git a/wilson_flow/params.h b/wilson_flow/params.h index c9b28cbd5..6f0a8bbe2 100644 --- a/wilson_flow/params.h +++ b/wilson_flow/params.h @@ -6,7 +6,7 @@ /* structure for passing simulation parameters to each node */ typedef struct { int stopflag; /* 1 if it is time to stop */ - + /* INITIALIZATION PARAMETERS */ int nx,ny,nz,nt; /* lattice dimensions */ @@ -14,6 +14,10 @@ typedef struct { Real stepsize; /* wilson flow time integration step size */ Real stoptime; /* maximum flow time, -1 means auto-determined */ int exp_order; /* where to end series expansion of exponential */ +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + Real local_tol; /* local tolerance for adaptive integrators */ +#endif char flow_description[20]; /* type of flow (wilson, symanzik) */ int stapleflag; /* what type of action to use */ diff --git a/wilson_flow/setup.c b/wilson_flow/setup.c index 220b0cd5b..22d8ea450 100644 --- a/wilson_flow/setup.c +++ b/wilson_flow/setup.c @@ -1,11 +1,13 @@ /************************ setup.c ****************************/ -/* Handles lattice and parameter setup */ +/* Handles lattice and parameter setup */ #define IF_OK if(status==0) /* definitions, files, and prototypes */ #include "wilson_flow_includes.h" -#include +#include +#include +extern int gethostname (char *__name, size_t __len); // Should get this from unistd.h /* Each node has a params structure for passing simulation parameters */ #include "params.h" @@ -17,7 +19,7 @@ int setup() { int prompt; - + /* print banner, get initial parameters */ prompt = initial_set(); @@ -33,13 +35,16 @@ setup() make_nn_gathers(); node0_printf("Made nn gathers\n"); fflush(stdout); + /* initialize Runge-Kutta integrator for the flow */ + initialize_integrator(); + node0_printf("Finished setup\n"); fflush(stdout); return prompt; } /* SETUP ROUTINES */ -int +int initial_set() { int prompt, status; @@ -49,6 +54,14 @@ initial_set() printf("Wilson/Symanzik Flow application\n"); printf("MIMD version 7\n"); printf("Machine = %s, with %d nodes\n", machine_type(), numnodes()); + gethostname(hostname, 128); + printf("Host(0) = %s\n",hostname); + printf("Username = %s\n", getenv("USER")); + time_stamp("start"); + + /* Print list of options selected */ + if(mynode()==0)printf("Options selected...\n"); + show_generic_opts(); /* Read prompt type and lattice dimensions */ status=get_prompt(stdin, &prompt); @@ -57,27 +70,27 @@ initial_set() IF_OK status += get_i(stdin, prompt,"nz", &par_buf.nz ); IF_OK status += get_i(stdin, prompt,"nt", &par_buf.nt ); - if(status>0) - par_buf.stopflag=1; - else + if(status>0) + par_buf.stopflag=1; + else par_buf.stopflag=0; } /* end if(mynode()==0) */ - + /* Node 0 broadcasts parameter buffer to all other nodes */ broadcast_bytes((char *)&par_buf, sizeof(par_buf)); - + if( par_buf.stopflag != 0 ) normal_exit(0); - + /* Update global variables with parameters */ nx=par_buf.nx; ny=par_buf.ny; nz=par_buf.nz; nt=par_buf.nt; - + number_of_nodes = numnodes(); volume=(size_t)nx*ny*nz*nt; - + return prompt; } @@ -89,12 +102,12 @@ readin(int prompt) /* On node zero, read parameters and send to all other nodes */ if(this_node==0) { - + printf("\n\n"); status=0; /* Identify the starting configuration */ - IF_OK status += ask_starting_lattice(stdin, prompt, &(par_buf.startflag), + IF_OK status += ask_starting_lattice(stdin, prompt, &(par_buf.startflag), par_buf.startfile); /* Get flow parameters */ @@ -115,7 +128,7 @@ readin(int prompt) printf("set staple to symanzik\n"); } else { - printf("Error: flow_description %s is invalid\n", + printf("Error: flow_description %s is invalid\n", par_buf.flow_description); status++; } @@ -123,21 +136,25 @@ readin(int prompt) IF_OK status += get_i(stdin, prompt, "exp_order", &par_buf.exp_order); IF_OK status += get_f(stdin, prompt, "stepsize", &par_buf.stepsize); +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + IF_OK status += get_f(stdin, prompt, "local_tol", &par_buf.local_tol); +#endif IF_OK status += get_f(stdin, prompt, "stoptime", &par_buf.stoptime); /* Determine what to do with the final configuration */ - IF_OK status += ask_ending_lattice(stdin, prompt, &(par_buf.saveflag), + IF_OK status += ask_ending_lattice(stdin, prompt, &(par_buf.saveflag), par_buf.savefile ); - IF_OK status += ask_ildg_LFN(stdin, prompt, par_buf.saveflag, + IF_OK status += ask_ildg_LFN(stdin, prompt, par_buf.saveflag, par_buf.stringLFN ); - if( status > 0) - par_buf.stopflag=1; + if( status > 0) + par_buf.stopflag=1; else par_buf.stopflag=0; } /* end if(this_node==0) */ - + /* Node 0 broadcasts parameter buffer to all other nodes */ broadcast_bytes((char *)&par_buf, sizeof(par_buf)); @@ -153,6 +170,7 @@ readin(int prompt) exp_order = par_buf.exp_order; stepsize = par_buf.stepsize; stoptime = par_buf.stoptime; + local_tol = par_buf.local_tol; saveflag = par_buf.saveflag; strcpy(savefile, par_buf.savefile); @@ -164,3 +182,160 @@ readin(int prompt) return 0; } + +/* Initialize integrator depending on compile-time flags */ +void +initialize_integrator() +{ + +#if GF_INTEGRATOR==INTEGRATOR_LUSCHER + N_stages = 3; + // Luscher coefficients in proper 2N-storage format + A_2N[0] = 0; + A_2N[1] = -17/32.; + A_2N[2] = -32/27.; + B_2N[0] = 1/4.; + B_2N[1] = 8/9.; + B_2N[2] = 3/4.; + node0_printf("Integrator = INTEGRATOR_LUSCHER\n"); +#elif GF_INTEGRATOR==INTEGRATOR_CK + N_stages = 5; + // Carpenter, Kennedy coefficients + A_2N[0] = 0; + A_2N[1] = -567301805773/1357537059087.; + A_2N[2] = -2404267990393/2016746695238.; + A_2N[3] = -3550918686646/2091501179385.; + A_2N[4] = -1275806237668/842570457699.; + B_2N[0] = 1432997174477/9575080441755.; + B_2N[1] = 5161836677717/13612068292357.; + B_2N[2] = 1720146321549/2090206949498.; + B_2N[3] = 3134564353537/4481467310338.; + B_2N[4] = 2277821191437/14882151754819.; + node0_printf("Integrator = INTEGRATOR_CK\n"); +#elif GF_INTEGRATOR==INTEGRATOR_RKMK3 + N_stages = 3; + p_order = 3; + // Ralston coefficients + // NOTE: indexing is shifted by -1 in C compared to usual Bucher tables + a_RK[1][0] = 1/2.; + a_RK[2][0] = 0; a_RK[2][1] = 3/4.; + b_RK[0] = 2/9.; b_RK[1] = 1/3.; b_RK[2] = 4/9.; + node0_printf("Integrator = INTEGRATOR_RKMK3\n"); +#elif GF_INTEGRATOR==INTEGRATOR_RKMK4 + N_stages = 4; + p_order = 4; + // NOTE: indexing is shifted by -1 in C compared to usual Bucher tables + a_RK[1][0] = 1/3.; + a_RK[2][0] = -1/3.; + a_RK[2][1] = 1; + a_RK[3][0] = 1; + a_RK[3][1] = -1; + a_RK[3][2] = 1; + b_RK[0] = 1/8.; + b_RK[1] = 3/8.; + b_RK[2] = 3/8.; + b_RK[3] = 1/8.; +/* this set of coefficients gives higher truncation error + a_RK[1][0] = 1/2.; + a_RK[2][0] = 0; a_RK[2][1] = 1/2.; + a_RK[3][0] = 0; a_RK[3][1] = 0; a_RK[3][2] = 1; + b_RK[0] = 1/6.; b_RK[1] = 1/3.; b_RK[2] = 1/3.; b_RK[3] = 1/6.; */ + node0_printf("Integrator = INTEGRATOR_RKMK4\n"); +#elif GF_INTEGRATOR==INTEGRATOR_RKMK5 + N_stages = 6; + p_order = 5; + // Butcher coefficients + // NOTE: indexing is shifted by -1 in C compared to usual Bucher tables + a_RK[1][0] = 1/4.; + a_RK[2][0] = 1/8.; a_RK[2][1] = 1/8.; + a_RK[3][0] = 0; a_RK[3][1] = -1/2.; a_RK[3][2] = 1; + a_RK[4][0] = 3/16.; a_RK[4][1] = 0; a_RK[4][2] = 0; a_RK[4][3] = 9/16.; + a_RK[5][0] = -3/7.; a_RK[5][1] = 2/7.; a_RK[5][2] = 12/7.; + a_RK[5][3] = -12/7.; a_RK[5][4] = 8/7.; + b_RK[0] = 7/90.; b_RK[1] = 0; b_RK[2] = 32/90.; b_RK[3] = 12/90.; + b_RK[4] = 32/90.; b_RK[5] = 7/90.; + // Dormand-Prince coefficients + // NOTE: indexing is shifted by -1 in C compared to usual Bucher tables +/* a_RK[1][0] = 1/5.; + a_RK[2][0] = 3/40.; a_RK[2][1] = 9/40.; + a_RK[3][0] = 44/45.; a_RK[3][1] = -56/15.; a_RK[3][2] = 32/9.; + a_RK[4][0] = 19372/6561.; a_RK[4][1] = -25360/2187.; + a_RK[4][2] = 64448/6561.; a_RK[4][3] = -212/729.; + a_RK[5][0] = 9017/3168.; a_RK[5][1] = -355/33.; a_RK[5][2] = 46732/5247.; + a_RK[5][3] = 49/176.; a_RK[5][4] = -5103/18656.; + b_RK[0] = 35/384.; b_RK[1] = 0; b_RK[2] = 500/1113.; b_RK[3] = 125/192.; + b_RK[4] = -2187/6784.; b_RK[5] = 11/84.;*/ + node0_printf("Integrator = INTEGRATOR_RKMK5\n"); +#elif GF_INTEGRATOR==INTEGRATOR_RKMK8 + N_stages = 13; + p_order = 8; + // Dormand-Prince coefficients + // NOTE: indexing is shifted by -1 in C compared to usual Bucher tables + a_RK[1][0] = 1/18.; + a_RK[2][0] = 1/48.; a_RK[2][1] = 1/16.; + a_RK[3][0] = 1/32.; a_RK[3][1] = 0; a_RK[3][2] = 3/32.; + a_RK[4][0] = 5/16.; a_RK[4][1] = 0; a_RK[4][2] = -75/64.; a_RK[4][3] = 75/64.; + a_RK[5][0] = 3/80.; a_RK[5][1] = 0; a_RK[5][2] = 0; + a_RK[5][3] = 3/16.; a_RK[5][4] = 3/20.; + a_RK[6][0] = 29443841/614563906.; a_RK[6][1] = 0; a_RK[6][2] = 0; + a_RK[6][3] = 77736538/692538347.; a_RK[6][4] = -28693883/1125000000.; + a_RK[6][5] = 23124283/1800000000.; + a_RK[7][0] = 16016141/946692911.; a_RK[7][1] = 0; a_RK[7][2] = 0; + a_RK[7][3] = 61564180/158732637.; a_RK[7][4] = 22789713/633445777.; + a_RK[7][5] = 545815736/2771057229.; a_RK[7][6] = -180193667/1043307555.; + a_RK[8][0] = 39632708/573591083.; a_RK[8][1] = 0; a_RK[8][2] = 0; + a_RK[8][3] = -433636366/683701615.; a_RK[8][4] = -421739975/2616292301.; + a_RK[8][5] = 100302831/723423059.; a_RK[8][6] = 790204164/839813087.; + a_RK[8][7] = 800635310/3783071287.; + a_RK[9][0] = 246121993/1340847787.; a_RK[9][1] = 0; a_RK[9][2] = 0; + a_RK[9][3] = -37695042795/15268766246.; a_RK[9][4] = -309121744/1061227803.; + a_RK[9][5] = -12992083/490766935.; a_RK[9][6] = 6005943493/2108947869.; + a_RK[9][7] = 393006217/1396673457.; a_RK[9][8] = 123872331/1001029789.; + a_RK[10][0] = -1028468189/846180014.; a_RK[10][1] = 0; a_RK[10][2] = 0; + a_RK[10][3] = 8478235783/508512852.; a_RK[10][4] = 1311729495/1432422823.; + a_RK[10][5] = -10304129995/1701304382.; a_RK[10][6] = -48777925059/3047939560.; + a_RK[10][7] = 15336726248/1032824649.; a_RK[10][8] = -45442868181/3398467696.; + a_RK[10][9] = 3065993473/597172653.; + a_RK[11][0] = 185892177/718116043.; a_RK[11][1] = 0; a_RK[11][2] = 0; + a_RK[11][3] = -3185094517/667107341.; a_RK[11][4] = -477755414/1098053517.; + a_RK[11][5] = -703635378/230739211.; a_RK[11][6] = 5731566787/1027545527.; + a_RK[11][7] = 5232866602/850066563.; a_RK[11][8] = -4093664535/808688257.; + a_RK[11][9] = 3962137247/1805957418.; a_RK[11][10] = 65686358/487910083.; + a_RK[12][0] = 403863854/491063109.; a_RK[12][1] = 0; a_RK[12][2] = 0; + a_RK[12][3] = -5068492393/434740067.; a_RK[12][4] = -411421997/543043805.; + a_RK[12][5] = 652783627/914296604.; a_RK[12][6] = 11173962825/925320556.; + a_RK[12][7] = -13158990841/6184727034.; a_RK[12][8] = 3936647629/1978049680.; + a_RK[12][9] = -160528059/685178525.; a_RK[12][10] = 248638103/1413531060.; + a_RK[12][11] = 0; + b_RK[0] = 14005451/335480064.; b_RK[1] = 0; b_RK[2] = 0; b_RK[3] = 0; + b_RK[4] = 0; b_RK[5] = -59238493/1068277825.; b_RK[6] = 181606767/758867731.; + b_RK[7] = 561292985/797845732.; b_RK[8] = -1041891430/1371343529.; + b_RK[9] = 760417239/1151165299.; b_RK[10] = 118820643/751138087.; + b_RK[11] = -528747749/2220607170.; b_RK[12] = 1/4.; + + node0_printf("Integrator = INTEGRATOR_RKMK8\n"); +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER + N_stages = 3; + // Luscher coefficients in proper 2N-storage format + A_2N[0] = 0; + A_2N[1] = -17/32.; + A_2N[2] = -32/27.; + B_2N[0] = 1/4.; + B_2N[1] = 8/9.; + B_2N[2] = 3/4.; + node0_printf("Integrator = INTEGRATOR_ADAPT_LUSCHER\n"); +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + // Bogacki-Shampine integrator based on Ralston coefficients + // NOTE: there is a fourth stage that produces a lower order approximation + N_stages = 3; + // NOTE: indexing is shifted by -1 in C compared to usual Bucher tables + a_RK[1][0] = 1/2.; + a_RK[2][0] = 0; a_RK[2][1] = 3/4.; + b_RK[0] = 2/9.; b_RK[1] = 1/3.; b_RK[2] = 4/9.; + // additional fourth stage coefficients + a_RK[3][0] = 7/24.; a_RK[3][1] = 1/4.; + a_RK[3][2] = 1/3.; a_RK[3][3] = 1/8.; + node0_printf("Integrator = INTEGRATOR_ADAPT_BS\n"); +#endif + +} diff --git a/wilson_flow/wilson_flow_includes.h b/wilson_flow/wilson_flow_includes.h index 782a9d4e6..ae8ec379d 100644 --- a/wilson_flow/wilson_flow_includes.h +++ b/wilson_flow/wilson_flow_includes.h @@ -10,7 +10,6 @@ #include "../include/complex.h" #include "../include/su3.h" #include "lattice.h" -#include "gf_globals.h" #include "../include/macros.h" #include "../include/comdefs.h" #include "../include/io_lat.h" @@ -21,6 +20,9 @@ int setup(); int readin(int prompt); void flow_step(); -void stout_step_rk(); +//void stout_step_rk(); void staple(); void fmunu_fmunu(double *time, double *space, double *charge); +void initialize_integrator(); +void integrate_RK_2N(); +void integrate_RK_2N_one_step( Real cA, Real cB ); From 78f08d8836a995fae9d832a3c4bcb9e79b6cc7bb Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Sat, 27 Jun 2020 18:35:39 -0400 Subject: [PATCH 04/49] Fix adaptive macros --- wilson_flow/integrate.c | 3 --- wilson_flow/setup.c | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wilson_flow/integrate.c b/wilson_flow/integrate.c index 7c0ac5378..3087b8b05 100644 --- a/wilson_flow/integrate.c +++ b/wilson_flow/integrate.c @@ -554,7 +554,6 @@ integrate_adapt_bs() { do { // loop over RK stages for( i_rk=1; i_rklink0[dir]), &(s->link[dir]) ); } -//} // get the right hand side of the flow equation from the staple // and store in s->K[i_rk] // NOTE: here FSAL property is used, so the force in K[0] is @@ -581,7 +579,6 @@ integrate_adapt_bs() { mult_su3_na( &(s->link[dir]), &(s->staple[dir]), &tempS1 ); anti_hermitian_traceless_proj( &tempS1, &(s->K[indK[i_rk]][dir]) ); } -// } } // final RK stage that gives fourth-order local approximation FORALLUPDIR(dir) diff --git a/wilson_flow/setup.c b/wilson_flow/setup.c index 22d8ea450..f5174a76c 100644 --- a/wilson_flow/setup.c +++ b/wilson_flow/setup.c @@ -170,7 +170,10 @@ readin(int prompt) exp_order = par_buf.exp_order; stepsize = par_buf.stepsize; stoptime = par_buf.stoptime; +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS local_tol = par_buf.local_tol; +#endif saveflag = par_buf.saveflag; strcpy(savefile, par_buf.savefile); From d77be964a747123a2c4415802aea378caca4e52e Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Sun, 28 Jun 2020 01:49:23 -0400 Subject: [PATCH 05/49] Faster commutator for antihermitian matrices --- wilson_flow/integrate.c | 69 ++++++++++++++++++++++++++++++++++++++--- 1 file changed, 64 insertions(+), 5 deletions(-) diff --git a/wilson_flow/integrate.c b/wilson_flow/integrate.c index 3087b8b05..cb44faf26 100644 --- a/wilson_flow/integrate.c +++ b/wilson_flow/integrate.c @@ -169,7 +169,7 @@ exp_anti_hermitian( anti_hermitmat *a, su3_matrix *dest, int n ) } -/* copy antihermitian matrix */ +/* copy antihermitian matrix: a->b */ void ahmat_copy( anti_hermitmat *a, anti_hermitmat *b ) { b->m01 = a->m01; b->m02 = a->m02; @@ -179,7 +179,8 @@ void ahmat_copy( anti_hermitmat *a, anti_hermitmat *b ) { b->m22im = a->m22im; } - +//#define USE_SLOW_COMMUTATOR_AH +#ifdef USE_SLOW_COMMUTATOR_AH /* commutator of anti-Hermitian matrices, this is a slow version that relies on uncompressing the matrices and generic multiplication */ @@ -196,7 +197,63 @@ commutator_ah( anti_hermitmat *a, anti_hermitmat *b, anti_hermitmat *c ) { sub_su3_matrix( &temp3, &temp4, &temp1 ); compress_anti_hermitian( &temp1, c ); } +#else +/* commutator of anti-Hermitian matrices, + direct calculation */ +void +commutator_ah( anti_hermitmat *a, anti_hermitmat *b, anti_hermitmat *c ) { + Real temp01r, temp02r, temp12r; + Real temp01i, temp02i, temp12i; + + temp01r = b->m00im*a->m01.imag-a->m00im*b->m01.imag; + temp01r += b->m01.imag*a->m11im-a->m01.imag*b->m11im; + temp01r += b->m02.real*a->m12.real-a->m02.real*b->m12.real; + temp01r += b->m02.imag*a->m12.imag-a->m02.imag*b->m12.imag; + + temp02r = b->m00im*a->m02.imag-a->m00im*b->m02.imag; + temp02r += a->m01.real*b->m12.real-b->m01.real*a->m12.real; + temp02r += b->m02.imag*a->m22im-a->m02.imag*b->m22im; + temp02r += b->m01.imag*a->m12.imag-a->m01.imag*b->m12.imag; + + temp12r = b->m11im*a->m12.imag-a->m11im*b->m12.imag; + temp12r += b->m01.real*a->m02.real-a->m01.real*b->m02.real; + temp12r += b->m12.imag*a->m22im-a->m12.imag*b->m22im; + temp12r += b->m01.imag*a->m02.imag-a->m01.imag*b->m02.imag; + + temp01i = a->m00im*b->m01.real-b->m00im*a->m01.real; + temp01i += a->m01.real*b->m11im-b->m01.real*a->m11im; + temp01i += b->m02.imag*a->m12.real-a->m02.imag*b->m12.real; + temp01i += a->m02.real*b->m12.imag-b->m02.real*a->m12.imag; + + temp02i = a->m00im*b->m02.real-b->m00im*a->m02.real; + temp02i += a->m02.real*b->m22im-b->m02.real*a->m22im; + temp02i += a->m01.imag*b->m12.real-b->m01.imag*a->m12.real; + temp02i += a->m01.real*b->m12.imag-b->m01.real*a->m12.imag; + + temp12i = a->m11im*b->m12.real-b->m11im*a->m12.real; + temp12i += a->m12.real*b->m22im-b->m12.real*a->m22im; + temp12i += a->m01.imag*b->m02.real-b->m01.imag*a->m02.real; + temp12i += b->m01.real*a->m02.imag-a->m01.real*b->m02.imag; + + + c->m00im = b->m01.imag*a->m01.real-a->m01.imag*b->m01.real; + c->m00im += b->m02.imag*a->m02.real-a->m02.imag*b->m02.real; + c->m00im *= 2; + c->m11im = a->m01.imag*b->m01.real-b->m01.imag*a->m01.real; + c->m11im += b->m12.imag*a->m12.real-a->m12.imag*b->m12.real; + c->m11im *= 2; + c->m22im = a->m02.imag*b->m02.real-b->m02.imag*a->m02.real; + c->m22im += a->m12.imag*b->m12.real-b->m12.imag*a->m12.real; + c->m22im *= 2; + c->m01.real = temp01r; + c->m01.imag = temp01i; + c->m02.real = temp02r; + c->m02.imag = temp02i; + c->m12.real = temp12r; + c->m12.imag = temp12i; +} +#endif /* derivative of the inverse matrix exponential, required for generic RKMK methods */ @@ -217,7 +274,9 @@ dexpinv( anti_hermitmat *u, anti_hermitmat *v, int q, anti_hermitmat *d ) { } } -/* distance between SU(3) matrices */ +/* distance between SU(3) matrices: + maximum difference between the real or imaginary part + elementwise */ Real su3mat_distance( su3_matrix *a, su3_matrix *b ) { @@ -482,7 +541,7 @@ integrate_adapt_RK_2N() } do { - /* Infinitesimal stout smearing */ + /* Make one RK step */ for( i=0; i Date: Sun, 28 Jun 2020 02:01:06 -0400 Subject: [PATCH 06/49] Minor cleanups --- wilson_flow/control.c | 6 +++++- wilson_flow/integrate.c | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/wilson_flow/control.c b/wilson_flow/control.c index becfcee0b..062b160e4 100644 --- a/wilson_flow/control.c +++ b/wilson_flow/control.c @@ -78,7 +78,8 @@ main( int argc, char **argv ) #endif #if GF_INTEGRATOR==INTEGRATOR_ADAPT_BS is_first_step = 1; // need to know the first step for FSAL - // set the permutation array for FSAL + // set the permutation array for FSAL, this saves copying + // K[3] to K[0] after each step indK[0] = 0; indK[1] = 1; indK[2] = 2; indK[3] = 3; #endif is_final_step = 0; @@ -86,6 +87,9 @@ main( int argc, char **argv ) i = 0; /* Loop over the flow time */ while( stoptime==AUTO_STOPTIME || ( flowtime Date: Mon, 29 Jun 2020 03:58:41 -0400 Subject: [PATCH 07/49] Changed label WFLOW -> GFLOW: --- wilson_flow/control.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/wilson_flow/control.c b/wilson_flow/control.c index 062b160e4..9468f72ec 100644 --- a/wilson_flow/control.c +++ b/wilson_flow/control.c @@ -58,16 +58,16 @@ main( int argc, char **argv ) /* Calculate and print initial flow output */ fmunu_fmunu(&Et, &Es, &charge); #if (MILC_PRECISION==1) - node0_printf("WFLOW: %g %g %g %g\n", 0.0, Et, Es, charge); + node0_printf("GFLOW: %g %g %g %g\n", 0.0, Et, Es, charge); #else - node0_printf("WFLOW: %g %.16g %.16g %.16g\n", 0.0, Et, Es, charge); + node0_printf("GFLOW: %g %.16g %.16g %.16g\n", 0.0, Et, Es, charge); #endif #if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS #if (MILC_PRECISION==1) node0_printf("ADAPT: %g %g %g %g\n", 0.0, stepsize, 0.0, 0.0 ); #else - node0_printf("ADAPT: %g %.16g %.16g %.16g\n", 0.0, stepsize, 0.0, 0.0 ); + node0_printf("ADAPT: %.16g %.16g %.16g %.16g\n", 0.0, stepsize, 0.0, 0.0 ); #endif #endif fflush(stdout); @@ -109,9 +109,9 @@ main( int argc, char **argv ) /* Calculate and print current flow output */ fmunu_fmunu(&Et, &Es, &charge); #if (MILC_PRECISION==1) - node0_printf("WFLOW: %g %g %g %g\n", flowtime, Et, Es, charge); + node0_printf("GFLOW: %g %g %g %g\n", flowtime, Et, Es, charge); #else - node0_printf("WFLOW: %g %.16g %.16g %.16g\n", flowtime, Et, Es, charge); + node0_printf("GFLOW: %.16g %.16g %.16g %.16g\n", flowtime, Et, Es, charge); #endif #if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS From 8aa6cc3653564497647d672fe6e100eaa7f17ad6 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Mon, 29 Jun 2020 03:59:43 -0400 Subject: [PATCH 08/49] Added placeholder function to evaluate 1x1 + 1x2 action --- wilson_flow/fmunu.c | 11 ++++++++++- wilson_flow/wilson_flow_includes.h | 6 ++++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/wilson_flow/fmunu.c b/wilson_flow/fmunu.c index 7c5402475..221b79148 100644 --- a/wilson_flow/fmunu.c +++ b/wilson_flow/fmunu.c @@ -42,7 +42,7 @@ fmunu_fmunu( double *time, double *space, double *charge ) /* Loop over each site to sum F_mu,nu components */ FORALLSITES(i, s) { - + fs = &(s->fieldstrength[FS_XY]); ft = &(s->fieldstrength[FS_ZT]); *time -= real_trace_nn(ft, ft); @@ -72,3 +72,12 @@ fmunu_fmunu( double *time, double *space, double *charge ) *space /= (volume*64.0); *charge *= 0.0003957858736028819197; /* normalization of 1/(8^2 * 4 * PI^2) */ } + + +/* Compute loops for Wilson (one-plaquette) and + Symanzik tree-level (plaquette and rectangle) action */ +void +gauge_action_w_s( double *gact_w_s, double *gact_w_t, + double *gact_s_s, double *gact_s_t ) { + +} diff --git a/wilson_flow/wilson_flow_includes.h b/wilson_flow/wilson_flow_includes.h index ae8ec379d..fa1a42ed6 100644 --- a/wilson_flow/wilson_flow_includes.h +++ b/wilson_flow/wilson_flow_includes.h @@ -24,5 +24,7 @@ void flow_step(); void staple(); void fmunu_fmunu(double *time, double *space, double *charge); void initialize_integrator(); -void integrate_RK_2N(); -void integrate_RK_2N_one_step( Real cA, Real cB ); +//void integrate_RK_2N(); +//void integrate_RK_2N_one_step( Real cA, Real cB ); +void gauge_action_w_s( double *gact_w_s, double *gact_w_t, + double *gact_s_s, double *gact_s_t ); From 44e3c27801b81998a7467a251bc4883868b42b9f Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Mon, 29 Jun 2020 20:47:23 -0400 Subject: [PATCH 09/49] Fix typo in comments --- wilson_flow/lattice.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wilson_flow/lattice.h b/wilson_flow/lattice.h index 958a95513..41e1b11ba 100644 --- a/wilson_flow/lattice.h +++ b/wilson_flow/lattice.h @@ -147,7 +147,7 @@ EXTERN char hostname[128]; EXTERN Real boundary_phase[4]; EXTERN site *lattice; -/* Temporary su3 matricies for gathers */ +/* Temporary su3 matrices for gathers */ #define N_TEMPORARY 7 EXTERN su3_matrix *tempmat[N_TEMPORARY]; From 1022567205d71ac4d8a98a1cdb079a6dcb060b17 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Mon, 29 Jun 2020 20:48:37 -0400 Subject: [PATCH 10/49] Move definition of flow_step macro here (based on the integrator choice) --- wilson_flow/defines.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/wilson_flow/defines.h b/wilson_flow/defines.h index 64e17ce45..4baf6ef67 100644 --- a/wilson_flow/defines.h +++ b/wilson_flow/defines.h @@ -33,4 +33,17 @@ #define SAFETY 0.95 +/* one step of the flow, here branching into different integrators happens */ +#if GF_INTEGRATOR==INTEGRATOR_LUSCHER || GF_INTEGRATOR==INTEGRATOR_CK +#define flow_step integrate_RK_2N +#elif GF_INTEGRATOR==INTEGRATOR_RKMK3 +#define flow_step integrate_RKMK3 +#elif GF_INTEGRATOR==INTEGRATOR_RKMK4 || GF_INTEGRATOR==INTEGRATOR_RKMK5 || GF_INTEGRATOR==INTEGRATOR_RKMK8 +#define flow_step integrate_RKMK_generic +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER +#define flow_step integrate_adapt_RK_2N +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_BS +#define flow_step integrate_adapt_bs +#endif + #endif /* _DEFINES_H */ From caf40a7dca77e9e9da954143953cac6226c682cf Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Mon, 29 Jun 2020 20:49:31 -0400 Subject: [PATCH 11/49] Remove flow_step function, replace with flow_step macro in defines.h --- wilson_flow/integrate.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wilson_flow/integrate.c b/wilson_flow/integrate.c index f0c5288a6..f0ddbc2d2 100644 --- a/wilson_flow/integrate.c +++ b/wilson_flow/integrate.c @@ -702,6 +702,9 @@ integrate_adapt_bs() { } #endif +#ifdef ABA +//TODO: remove once all integrators are tested, flow_step is now +// chosen inside defines.h /* one step of the flow, here branching into different integrators happens */ void flow_step() @@ -720,7 +723,7 @@ flow_step() #endif } - +#endif // original Nathan's routines that are being phased out From 23ecfdc40902a040a68bb4a7d79f532d6ae8be44 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Mon, 29 Jun 2020 20:50:47 -0400 Subject: [PATCH 12/49] Add function to measure Wilson and Symanzik tree-level flow observable --- wilson_flow/control.c | 20 +++-- wilson_flow/fmunu.c | 131 +++++++++++++++++++++++++++++ wilson_flow/wilson_flow_includes.h | 6 ++ 3 files changed, 148 insertions(+), 9 deletions(-) diff --git a/wilson_flow/control.c b/wilson_flow/control.c index 9468f72ec..4c611a367 100644 --- a/wilson_flow/control.c +++ b/wilson_flow/control.c @@ -25,7 +25,7 @@ main( int argc, char **argv ) double flowtime; /* Wilson flow output variables */ - double Et, Es, charge; + double Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge; double old_value=0, new_value=0; double der_value=0; @@ -52,15 +52,16 @@ main( int argc, char **argv ) dtimec = -dclock(); /* Print flow output column labels */ - node0_printf("#LABEL time Et Es charge\n"); + node0_printf("#LABEL time Et_C Es_C Et_W Es_W Et_S Es_S charge\n"); fflush(stdout); /* Calculate and print initial flow output */ - fmunu_fmunu(&Et, &Es, &charge); + fmunu_fmunu(&Et_C, &Es_C, &charge); + gauge_action_w_s( &Et_W, &Es_W, &Et_S, &Es_S ); #if (MILC_PRECISION==1) - node0_printf("GFLOW: %g %g %g %g\n", 0.0, Et, Es, charge); + node0_printf("GFLOW: %g %g %g %g %g %g %g %g\n", 0.0, Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge); #else - node0_printf("GFLOW: %g %.16g %.16g %.16g\n", 0.0, Et, Es, charge); + node0_printf("GFLOW: %g %.16g %.16g %.16g %.16g %.16g %.16g %.16g\n", 0.0, Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge); #endif #if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS @@ -107,11 +108,12 @@ main( int argc, char **argv ) i++; /* Calculate and print current flow output */ - fmunu_fmunu(&Et, &Es, &charge); + fmunu_fmunu(&Et_C, &Es_C, &charge); + gauge_action_w_s( &Et_W, &Es_W, &Et_S, &Es_S ); #if (MILC_PRECISION==1) - node0_printf("GFLOW: %g %g %g %g\n", flowtime, Et, Es, charge); + node0_printf("GFLOW: %g %g %g %g %g %g %g %g\n", flowtime, Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge); #else - node0_printf("GFLOW: %.16g %.16g %.16g %.16g\n", flowtime, Et, Es, charge); + node0_printf("GFLOW: %.16g %.16g %.16g %.16g %.16g %.16g %.16g %.16g\n", flowtime, Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge); #endif #if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS @@ -129,7 +131,7 @@ main( int argc, char **argv ) if( stoptime==AUTO_STOPTIME ) { old_value = new_value; - new_value = flowtime*flowtime*(Et+Es); + new_value = flowtime*flowtime*(Et_C+Es_C); der_value = flowtime*(new_value-old_value)/stepsize; if( new_value > 0.45 && der_value > 0.35 ) diff --git a/wilson_flow/fmunu.c b/wilson_flow/fmunu.c index 221b79148..6ae116f4b 100644 --- a/wilson_flow/fmunu.c +++ b/wilson_flow/fmunu.c @@ -74,10 +74,141 @@ fmunu_fmunu( double *time, double *space, double *charge ) } +//TODO: debug Symanzik part, compare to GACTION from other applications +// (e.g. HMC with 0 steps) /* Compute loops for Wilson (one-plaquette) and Symanzik tree-level (plaquette and rectangle) action */ void gauge_action_w_s( double *gact_w_s, double *gact_w_t, double *gact_s_s, double *gact_s_t ) { +#define NTEMP_STORAGE 6 + register int i, dir1, dir2; + register site *s; + msg_tag *tag0, *tag1, *tag2, *tag3, *tag4, *tag5, *tag6, *tag7, *tag8; + su3_matrix *su3mat[NTEMP_STORAGE]; + su3_matrix tempmat; + double wl1x1s, wl1x1t, wl1x2s, wl1x2t, tt; + + for( i=0; ilink[dir2]), &(s->link[dir1]), &(su3mat[0][i]) ); + + wait_gather(tag0); + + // form a staple for "right" link in the plaquette + FORALLSITES(i, s) + mult_su3_nn( &(su3mat[0][i]), (su3_matrix *)(gen_pt[0][i]), &(su3mat[3][i]) ); + + wait_gather(tag1); + +//fflush(stdout);printf("dir1=%d dir2=%d\n",dir1,dir2);fflush(stdout); + // form a staple for "left" link in the plaquette + FORALLSITES(i, s) { + mult_su3_nn( &(s->link[dir2]), (su3_matrix *)(gen_pt[1][i]), &tempmat ); + mult_su3_na( &tempmat, (su3_matrix *)(gen_pt[0][i]), &(su3mat[5][i]) ); + } + + // request staple for "left" = su3mat[5] from dir2 + tag2 = start_gather_field( su3mat[5], sizeof(su3_matrix), + dir2, EVENANDODD, gen_pt[2]); + +//fflush(stdout);printf("dir1=%d dir2=%d\n",dir1,dir2);fflush(stdout); + // form a staple for "bottom" link in the plaquette + FORALLSITES(i, s) { + mult_su3_na( (su3_matrix *)(gen_pt[1][i]), (su3_matrix *)(gen_pt[0][i]), &(su3mat[1][i]) ); + mult_su3_na( &(su3mat[1][i]), &(s->link[dir1]), &(su3mat[4][i]) ); + } + + // request staple for "bottom" = su3mat[4] from dir1 + tag3 = start_gather_field( su3mat[4], sizeof(su3_matrix), + dir1, EVENANDODD, gen_pt[3]); + + wait_gather(tag2); + + FORALLSITES(i, s) { + // form a staple for "top" link in the plaquette + mult_su3_an( (su3_matrix *)(gen_pt[1][i]), &(su3mat[0][i]), &(su3mat[2][i]) ); + // get the contribution of 1x2 rectangle extended in dir2 + // to the accumulator + if( dir1==TUP ) wl1x2t += 3 - + realtrace_su3( (su3_matrix *)(gen_pt[2][i]), &(su3mat[3][i]) ); + else wl1x2s += 3 - + realtrace_su3( (su3_matrix *)(gen_pt[2][i]), &(su3mat[3][i]) ); + } + + wait_gather(tag3); + + FORALLSITES(i, s) { + // get the contribution of 1x2 rectangle extended in dir1 + // and of 1x1 plaquette to the accumulators + if( dir1==TUP ) { + wl1x2t += 3 - + realtrace_su3( (su3_matrix *)(gen_pt[3][i]), &(su3mat[2][i]) ); + wl1x1t += 3 - + realtrace_su3( &(su3mat[1][i]), &(su3mat[0][i]) ); + } + else { + wl1x2s += 3 - + realtrace_su3( (su3_matrix *)(gen_pt[3][i]), &(su3mat[2][i]) ); + wl1x1s += 3 - + realtrace_su3( &(su3mat[1][i]), &(su3mat[0][i]) ); + } + } + + // clean up all gathers + cleanup_gather(tag0); + cleanup_gather(tag1); + cleanup_gather(tag2); + cleanup_gather(tag3); + + } // dir2 + } // dir1 + + // global sum + g_doublesum( &wl1x1s ); + g_doublesum( &wl1x1t ); + g_doublesum( &wl1x2s ); + g_doublesum( &wl1x2t ); + + // get densities + wl1x1s /= volume; + wl1x1t /= volume; + wl1x2s /= volume; + wl1x2t /= volume; + wl1x1s /= 3; + wl1x1t /= 3; + wl1x2s /= 3; + wl1x2t /= 3; + + *gact_w_s = wl1x1s; + *gact_w_t = wl1x1t; + *gact_s_s = (5*wl1x1s)/3 - wl1x2s/12; + *gact_s_t = (5*wl1x1t)/3 - wl1x2t/12; + +#undef NTEMP_STORAGE } diff --git a/wilson_flow/wilson_flow_includes.h b/wilson_flow/wilson_flow_includes.h index fa1a42ed6..41fdad0db 100644 --- a/wilson_flow/wilson_flow_includes.h +++ b/wilson_flow/wilson_flow_includes.h @@ -28,3 +28,9 @@ void initialize_integrator(); //void integrate_RK_2N_one_step( Real cA, Real cB ); void gauge_action_w_s( double *gact_w_s, double *gact_w_t, double *gact_s_s, double *gact_s_t ); +// various integrators, compile-time choice +void integrate_RK_2N(); +void integrate_RKMK3(); +void integrate_RKMK_generic(); +void integrate_adapt_RK_2N(); +void integrate_adapt_bs(); From b8e0e3c746e99ef08a74612164089e8332520a20 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Tue, 30 Jun 2020 04:10:56 -0400 Subject: [PATCH 13/49] Fixed memory leak in the observable measurement --- wilson_flow/fmunu.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/wilson_flow/fmunu.c b/wilson_flow/fmunu.c index 6ae116f4b..74c27b509 100644 --- a/wilson_flow/fmunu.c +++ b/wilson_flow/fmunu.c @@ -200,15 +200,20 @@ gauge_action_w_s( double *gact_w_s, double *gact_w_t, wl1x1t /= volume; wl1x2s /= volume; wl1x2t /= volume; - wl1x1s /= 3; - wl1x1t /= 3; - wl1x2s /= 3; - wl1x2t /= 3; + wl1x1s *= 2; + wl1x1t *= 2; + wl1x2s *= 2; + wl1x2t *= 2; *gact_w_s = wl1x1s; *gact_w_t = wl1x1t; *gact_s_s = (5*wl1x1s)/3 - wl1x2s/12; *gact_s_t = (5*wl1x1t)/3 - wl1x2t/12; + // deallocate temporary storage + for( i=0; i Date: Sat, 4 Jul 2020 00:11:37 -0400 Subject: [PATCH 14/49] Fixed labels for adaptive integrators --- wilson_flow/control.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wilson_flow/control.c b/wilson_flow/control.c index 4c611a367..c6f33814d 100644 --- a/wilson_flow/control.c +++ b/wilson_flow/control.c @@ -52,7 +52,11 @@ main( int argc, char **argv ) dtimec = -dclock(); /* Print flow output column labels */ - node0_printf("#LABEL time Et_C Es_C Et_W Es_W Et_S Es_S charge\n"); + node0_printf("#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge\n"); +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + node0_printf("#ADAPT time stepsize distance local_tol/distance\n"); +#endif fflush(stdout); /* Calculate and print initial flow output */ From 2455567c0e470030e98a4f3bf379dfd9fc8704d0 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Sat, 4 Jul 2020 00:12:47 -0400 Subject: [PATCH 15/49] Change calculation of 1x1, 1x2 loops: average plaq and rect outputted now --- wilson_flow/fmunu.c | 61 ++++++++++++++---------------- wilson_flow/wilson_flow_includes.h | 4 +- 2 files changed, 31 insertions(+), 34 deletions(-) diff --git a/wilson_flow/fmunu.c b/wilson_flow/fmunu.c index 74c27b509..e1c721b9f 100644 --- a/wilson_flow/fmunu.c +++ b/wilson_flow/fmunu.c @@ -76,11 +76,13 @@ fmunu_fmunu( double *time, double *space, double *charge ) //TODO: debug Symanzik part, compare to GACTION from other applications // (e.g. HMC with 0 steps) -/* Compute loops for Wilson (one-plaquette) and - Symanzik tree-level (plaquette and rectangle) action */ +/* Compute loops: 1x1 -- plaquette, 1x2 + 2x1 -- rectangle + for Wilson (one-plaquette) and + Symanzik tree-level (plaquette and rectangle) action, + spatial and temporal part separately */ void -gauge_action_w_s( double *gact_w_s, double *gact_w_t, - double *gact_s_s, double *gact_s_t ) { +gauge_action_w_s( double *wl1x1s, double *wl1x1t, + double *wl1x2s, double *wl1x2t ) { #define NTEMP_STORAGE 6 register int i, dir1, dir2; @@ -88,7 +90,7 @@ gauge_action_w_s( double *gact_w_s, double *gact_w_t, msg_tag *tag0, *tag1, *tag2, *tag3, *tag4, *tag5, *tag6, *tag7, *tag8; su3_matrix *su3mat[NTEMP_STORAGE]; su3_matrix tempmat; - double wl1x1s, wl1x1t, wl1x2s, wl1x2t, tt; + double tt; for( i=0; i Date: Sat, 4 Jul 2020 15:31:59 -0400 Subject: [PATCH 16/49] Add definitions for Zeuthen flow --- wilson_flow/defines.h | 1 + wilson_flow/staple.c | 22 ++++++++++++---------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/wilson_flow/defines.h b/wilson_flow/defines.h index 4baf6ef67..41bfe8bd1 100644 --- a/wilson_flow/defines.h +++ b/wilson_flow/defines.h @@ -7,6 +7,7 @@ #define WILSON 0 #define SYMANZIK 1 +#define ZEUTHEN 2 // low-storage schemes // 3-stage third order diff --git a/wilson_flow/staple.c b/wilson_flow/staple.c index 75135d5f4..9fbdf1fb6 100644 --- a/wilson_flow/staple.c +++ b/wilson_flow/staple.c @@ -66,7 +66,7 @@ wilson_staple(int dir1, int dir2, field_offset lnk1, void symanzik1x2_staple(int dir1, int dir2, field_offset lnk1, field_offset lnk2, Real coeff, field_offset stp) -{ +{ register int i; register site *s; msg_tag *tag0, *tag1, *tag2, *tag3, *tag4, *tag5, *tag6, *tag7, *tag8; @@ -82,7 +82,7 @@ symanzik1x2_staple(int dir1, int dir2, field_offset lnk1, wait_gather(tag0); wait_gather(tag1); - + //Calculate upper 1x1 staple FORALLSITES(i, s) { mult_su3_nn(SU3_PT(lnk2), (su3_matrix *)gen_pt[1][i], &tmat1); @@ -102,7 +102,7 @@ symanzik1x2_staple(int dir1, int dir2, field_offset lnk1, //Gather lower staple from direction -dir2 tag3 = start_gather_field(TM(3), sizeof(su3_matrix), OPP_DIR(dir2), EVENANDODD, gen_pt[3]); - + //Start construction of 2(dir1)x1(dir2) staple protruding in +dir1 FORALLSITES(i, s) { mult_su3_nn(SU3_PT(lnk1), (su3_matrix *)gen_pt[0][i], &tmat1); @@ -151,7 +151,7 @@ symanzik1x2_staple(int dir1, int dir2, field_offset lnk1, mult_su3_an((su3_matrix *)gen_pt[5][i], SU3_PT(lnk1), &tmat1); mult_su3_nn(&tmat1, (su3_matrix *)gen_pt[0][i], TM(8)+i); } - + //Gather 2(dir1)x1(dir2) left, lower staple from direction -dir2 tag8 = start_gather_field(TM(8), sizeof(su3_matrix), OPP_DIR(dir2), EVENANDODD, gen_pt[8]); @@ -177,18 +177,18 @@ symanzik1x2_staple(int dir1, int dir2, field_offset lnk1, //Finish lower 1(dir1)x2(dir2) staple wait_gather(tag6); FORALLSITES(i, s) - scalar_mult_add_su3_matrix(SU3_PT(stp), (su3_matrix *)gen_pt[6][i], coeff, + scalar_mult_add_su3_matrix(SU3_PT(stp), (su3_matrix *)gen_pt[6][i], coeff, SU3_PT(stp)); //Add lower 2(dir1)x1(dir2) staple protruding in +dir1 wait_gather(tag7); FORALLSITES(i, s) - scalar_mult_add_su3_matrix(SU3_PT(stp), (su3_matrix *)gen_pt[7][i], coeff, + scalar_mult_add_su3_matrix(SU3_PT(stp), (su3_matrix *)gen_pt[7][i], coeff, SU3_PT(stp)); //Add lower 2(dir1)x1(dir2) staple protruding in -dir1 wait_gather(tag8); - FORALLSITES(i, s) + FORALLSITES(i, s) scalar_mult_add_su3_matrix(SU3_PT(stp), (su3_matrix *)gen_pt[8][i], coeff, SU3_PT(stp)); @@ -206,7 +206,7 @@ symanzik1x2_staple(int dir1, int dir2, field_offset lnk1, /* Compiles all contributions to the staple */ void -staple() +staple() { register int i; register site *s; @@ -219,7 +219,7 @@ staple() coeff1x1 = 1.0; coeff1x2 = 0.0; } - else { /* stapleflag==SYMANZIK */ + else { /* stapleflag==SYMANZIK || ZEUTHEN */ coeff1x1 = 5.0/3.0; coeff1x2 = -1.0/12.0; } @@ -240,10 +240,12 @@ staple() /* Adds 1x1 (Wilson) contributions */ wilson_staple(dir1, dir2, lnk1, lnk2, coeff1x1, stp); - /* Adds 1x2 (Symanzik tree level) contributions */ + /* Adds 1x2 (Symanzik tree level) contributions -- both + for Symanzik and Zeuthen flow */ if( stapleflag!=WILSON ) symanzik1x2_staple(dir1, dir2, lnk1, lnk2, coeff1x2, stp); + if( stapleflag==ZEUTHEN ) ; //TODO: add Zeuthen correction to the flow equation } /* end: dir2 loop */ } /* end: dir1 loop */ } From d26ca07abef1b290d67bc09c41f10ad0e5aa2ef0 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Wed, 8 Jul 2020 13:41:20 -0400 Subject: [PATCH 17/49] Add Zeuthen flow placeholder function --- wilson_flow/staple.c | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/wilson_flow/staple.c b/wilson_flow/staple.c index 9fbdf1fb6..322d8270f 100644 --- a/wilson_flow/staple.c +++ b/wilson_flow/staple.c @@ -204,6 +204,16 @@ symanzik1x2_staple(int dir1, int dir2, field_offset lnk1, cleanup_gather(tag8); } +/* Correction to Symanzik flow -- Zeuthen flow, + Ramos, Sint, 1408.05552 */ +void +zeuthen_correction( int dir1, field_offset lnk1, + Real coeff, field_offset stp ) { + + //TODO: add Zeuthen correction to the flow equation + +} + /* Compiles all contributions to the staple */ void staple() @@ -211,7 +221,7 @@ staple() register int i; register site *s; int dir1, dir2; - Real coeff1x1, coeff1x2; + Real coeff1x1, coeff1x2, coeffz=1/12.; field_offset lnk1, lnk2, stp; /* Pick the coefficients for each loop contributing to the staple */ @@ -245,7 +255,11 @@ staple() if( stapleflag!=WILSON ) symanzik1x2_staple(dir1, dir2, lnk1, lnk2, coeff1x2, stp); - if( stapleflag==ZEUTHEN ) ; //TODO: add Zeuthen correction to the flow equation } /* end: dir2 loop */ + + if( stapleflag==ZEUTHEN ) //TODO: this is doing nothing at the moment + zeuthen_correction(dir1,lnk1,coeffz,stp); + + } /* end: dir1 loop */ } From cb6b61ab8d4003d2912f4608f9b4ec4e1daf645e Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Fri, 17 Jul 2020 00:05:19 -0400 Subject: [PATCH 18/49] Add less strict distance metric for adaptive --- wilson_flow/integrate.c | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/wilson_flow/integrate.c b/wilson_flow/integrate.c index f0ddbc2d2..9cc454b08 100644 --- a/wilson_flow/integrate.c +++ b/wilson_flow/integrate.c @@ -274,9 +274,13 @@ dexpinv( anti_hermitmat *u, anti_hermitmat *v, int q, anti_hermitmat *d ) { } } + +//#define USE_STRICT_DISTANCE +#ifdef USE_STRICT_DISTANCE /* distance between SU(3) matrices: - maximum difference elementwise, - real and imaginary parts are treated separately */ + maximum difference element-wise, + real and imaginary parts are treated separately, + this is the strictest criterium */ Real su3mat_distance( su3_matrix *a, su3_matrix *b ) { @@ -293,6 +297,30 @@ su3mat_distance( su3_matrix *a, su3_matrix *b ) { } return dmax; } +#else +/* distance between SU(3) matrices: + normalized root of the average element-wise + distance squared -- milder and smoother criteria, + defined in Ramos, Fritzsch, 1301.4388 */ +Real +su3mat_distance( su3_matrix *a, su3_matrix *b ) { + + Real temp = 0, re, im; + int register i, j; + + for( i=0; i<3; i++ ) { + for( j=0; j<3; j++ ) { + re = a->e[i][j].real-b->e[i][j].real; + im = a->e[i][j].imag-b->e[i][j].imag; + temp += re*re + im*im; + } + } + // NOTE: the normalization in 1301.4388 + // is 1/N_c^2 outside the square root + temp = sqrt(temp) / 9; + return temp; +} +#endif #if GF_INTEGRATOR==INTEGRATOR_LUSCHER || GF_INTEGRATOR==INTEGRATOR_CK From 4decd82b1c96764daa0c46ff015322884f6933a3 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Mon, 20 Jul 2020 01:56:29 -0400 Subject: [PATCH 19/49] Add one more low-storage integrator --- wilson_flow/Make_template | 4 ++++ wilson_flow/defines.h | 5 ++++- wilson_flow/integrate.c | 3 ++- wilson_flow/lattice.h | 3 ++- wilson_flow/setup.c | 24 +++++++++++++++++++++++- 5 files changed, 35 insertions(+), 4 deletions(-) diff --git a/wilson_flow/Make_template b/wilson_flow/Make_template index d1a2f011e..ba7561f40 100644 --- a/wilson_flow/Make_template +++ b/wilson_flow/Make_template @@ -115,6 +115,10 @@ wilson_flow_ck:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_CK" \ +wilson_flow_bbb:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_BBB" \ + wilson_flow_rkmk3:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_RKMK3" \ diff --git a/wilson_flow/defines.h b/wilson_flow/defines.h index 41bfe8bd1..1cbf872f6 100644 --- a/wilson_flow/defines.h +++ b/wilson_flow/defines.h @@ -14,6 +14,8 @@ #define INTEGRATOR_LUSCHER 0 // 5-stage fourth order #define INTEGRATOR_CK 1 +// 6-stage fourth order +#define INTEGRATOR_BBB 2 // Runge-Kutta-Munthe-Kaas schemes // 3-stage third order @@ -35,7 +37,8 @@ /* one step of the flow, here branching into different integrators happens */ -#if GF_INTEGRATOR==INTEGRATOR_LUSCHER || GF_INTEGRATOR==INTEGRATOR_CK +#if GF_INTEGRATOR==INTEGRATOR_LUSCHER || GF_INTEGRATOR==INTEGRATOR_CK \ + || GF_INTEGRATOR==INTEGRATOR_BBB #define flow_step integrate_RK_2N #elif GF_INTEGRATOR==INTEGRATOR_RKMK3 #define flow_step integrate_RKMK3 diff --git a/wilson_flow/integrate.c b/wilson_flow/integrate.c index 9cc454b08..c2c987243 100644 --- a/wilson_flow/integrate.c +++ b/wilson_flow/integrate.c @@ -323,7 +323,8 @@ su3mat_distance( su3_matrix *a, su3_matrix *b ) { #endif -#if GF_INTEGRATOR==INTEGRATOR_LUSCHER || GF_INTEGRATOR==INTEGRATOR_CK +#if GF_INTEGRATOR==INTEGRATOR_LUSCHER || GF_INTEGRATOR==INTEGRATOR_CK \ + || GF_INTEGRATOR==INTEGRATOR_BBB /* A single step for a 2N-storage Runge-Kutta scheme * where the right hand side of the flow equation is evaluated * and the fields are updated diff --git a/wilson_flow/lattice.h b/wilson_flow/lattice.h index 41e1b11ba..6164f26df 100644 --- a/wilson_flow/lattice.h +++ b/wilson_flow/lattice.h @@ -89,7 +89,8 @@ EXTERN int N_stages; // order of the method EXTERN int p_order; /* 2N-storage schemes */ -#if GF_INTEGRATOR==INTEGRATOR_LUSCHER || GF_INTEGRATOR==INTEGRATOR_CK +#if GF_INTEGRATOR==INTEGRATOR_LUSCHER || GF_INTEGRATOR==INTEGRATOR_CK \ + || GF_INTEGRATOR==INTEGRATOR_BBB // A, B coefficients EXTERN Real A_2N[MAX_RK_NS]; EXTERN Real B_2N[MAX_RK_NS]; diff --git a/wilson_flow/setup.c b/wilson_flow/setup.c index f5174a76c..869ebcb07 100644 --- a/wilson_flow/setup.c +++ b/wilson_flow/setup.c @@ -127,6 +127,10 @@ readin(int prompt) par_buf.stapleflag = SYMANZIK; printf("set staple to symanzik\n"); } + else if( strcmp("zeuthen", par_buf.flow_description) == 0 ) { + par_buf.stapleflag = ZEUTHEN; + printf("set staple to zeuthen\n"); + } else { printf("Error: flow_description %s is invalid\n", par_buf.flow_description); @@ -203,7 +207,8 @@ initialize_integrator() node0_printf("Integrator = INTEGRATOR_LUSCHER\n"); #elif GF_INTEGRATOR==INTEGRATOR_CK N_stages = 5; - // Carpenter, Kennedy coefficients + // Carpenter, Kennedy coefficients, + // Technical Memorandum NASA-TM-109112 A_2N[0] = 0; A_2N[1] = -567301805773/1357537059087.; A_2N[2] = -2404267990393/2016746695238.; @@ -215,6 +220,23 @@ initialize_integrator() B_2N[3] = 3134564353537/4481467310338.; B_2N[4] = 2277821191437/14882151754819.; node0_printf("Integrator = INTEGRATOR_CK\n"); +#elif GF_INTEGRATOR==INTEGRATOR_BBB + N_stages = 6; + // Berland, Bogey, Bailly coefficients, + // Computers and Fluids 35 (2006) 1459-1463 + A_2N[0] = 0; + A_2N[1] = -0.737101392796; + A_2N[2] = -1.634740794341; + A_2N[3] = -0.744739003780; + A_2N[4] = -1.469897351522; + A_2N[5] = -2.813971388035; + B_2N[0] = 0.032918605146; + B_2N[1] = 0.823256998200; + B_2N[2] = 0.381530948900; + B_2N[3] = 0.200092213184; + B_2N[4] = 1.718581042715; + B_2N[5] = 0.27; + node0_printf("Integrator = INTEGRATOR_BBB\n"); #elif GF_INTEGRATOR==INTEGRATOR_RKMK3 N_stages = 3; p_order = 3; From 27efea9dc161d36a38284afc50dcf34b4397a05f Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Mon, 20 Jul 2020 03:36:52 -0400 Subject: [PATCH 20/49] Add CF3 integrator to experiment with coefficients --- wilson_flow/Make_template | 4 ++++ wilson_flow/defines.h | 4 +++- wilson_flow/integrate.c | 2 +- wilson_flow/lattice.h | 2 +- wilson_flow/setup.c | 35 +++++++++++++++++++++++++++++++++++ 5 files changed, 44 insertions(+), 3 deletions(-) diff --git a/wilson_flow/Make_template b/wilson_flow/Make_template index ba7561f40..15fd033ab 100644 --- a/wilson_flow/Make_template +++ b/wilson_flow/Make_template @@ -111,6 +111,10 @@ wilson_flow:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_LUSCHER" \ +wilson_flow_cf3:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_CF3" \ + wilson_flow_ck:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_CK" \ diff --git a/wilson_flow/defines.h b/wilson_flow/defines.h index 1cbf872f6..6a0c35327 100644 --- a/wilson_flow/defines.h +++ b/wilson_flow/defines.h @@ -16,6 +16,8 @@ #define INTEGRATOR_CK 1 // 6-stage fourth order #define INTEGRATOR_BBB 2 +// 3-stage third order +#define INTEGRATOR_CF3 3 // Runge-Kutta-Munthe-Kaas schemes // 3-stage third order @@ -38,7 +40,7 @@ /* one step of the flow, here branching into different integrators happens */ #if GF_INTEGRATOR==INTEGRATOR_LUSCHER || GF_INTEGRATOR==INTEGRATOR_CK \ - || GF_INTEGRATOR==INTEGRATOR_BBB + || GF_INTEGRATOR==INTEGRATOR_BBB || GF_INTEGRATOR==INTEGRATOR_CF3 #define flow_step integrate_RK_2N #elif GF_INTEGRATOR==INTEGRATOR_RKMK3 #define flow_step integrate_RKMK3 diff --git a/wilson_flow/integrate.c b/wilson_flow/integrate.c index c2c987243..4fcb21a10 100644 --- a/wilson_flow/integrate.c +++ b/wilson_flow/integrate.c @@ -324,7 +324,7 @@ su3mat_distance( su3_matrix *a, su3_matrix *b ) { #if GF_INTEGRATOR==INTEGRATOR_LUSCHER || GF_INTEGRATOR==INTEGRATOR_CK \ - || GF_INTEGRATOR==INTEGRATOR_BBB + || GF_INTEGRATOR==INTEGRATOR_BBB || GF_INTEGRATOR==INTEGRATOR_CF3 /* A single step for a 2N-storage Runge-Kutta scheme * where the right hand side of the flow equation is evaluated * and the fields are updated diff --git a/wilson_flow/lattice.h b/wilson_flow/lattice.h index 6164f26df..df34da57d 100644 --- a/wilson_flow/lattice.h +++ b/wilson_flow/lattice.h @@ -90,7 +90,7 @@ EXTERN int N_stages; EXTERN int p_order; /* 2N-storage schemes */ #if GF_INTEGRATOR==INTEGRATOR_LUSCHER || GF_INTEGRATOR==INTEGRATOR_CK \ - || GF_INTEGRATOR==INTEGRATOR_BBB + || GF_INTEGRATOR==INTEGRATOR_BBB || GF_INTEGRATOR==INTEGRATOR_CF3 // A, B coefficients EXTERN Real A_2N[MAX_RK_NS]; EXTERN Real B_2N[MAX_RK_NS]; diff --git a/wilson_flow/setup.c b/wilson_flow/setup.c index 869ebcb07..d147ac9fa 100644 --- a/wilson_flow/setup.c +++ b/wilson_flow/setup.c @@ -237,6 +237,41 @@ initialize_integrator() B_2N[4] = 1.718581042715; B_2N[5] = 0.27; node0_printf("Integrator = INTEGRATOR_BBB\n"); +#elif GF_INTEGRATOR==INTEGRATOR_CF3 + N_stages = 3; + // Commutator-free 2N-storage for experiments + // with coefficients + +//TODO: this is experimental, it should be removed once +// the optimal set of coefficients is found +// (lowest truncation error) +#define READ_CF3_FROM_FILE +#ifdef READ_CF3_FROM_FILE + FILE *fp; + fp = fopen( "cf3_coeff.dat", "rt" ); + fscanf( fp, "%le", &(A_2N[0]) ); + fscanf( fp, "%le", &(A_2N[1]) ); + fscanf( fp, "%le", &(A_2N[2]) ); + fscanf( fp, "%le", &(B_2N[0]) ); + fscanf( fp, "%le", &(B_2N[1]) ); + fscanf( fp, "%le", &(B_2N[2]) ); + fclose( fp ); +/* printf( "%.16g\n", A_2N[0] ); + printf( "%.16g\n", A_2N[1] ); + printf( "%.16g\n", A_2N[2] ); + printf( "%.16g\n", B_2N[0] ); + printf( "%.16g\n", B_2N[1] ); + printf( "%.16g\n", B_2N[2] );*/ +#else + // optimized with Ralston procedure + A_2N[0] = 0; + A_2N[1] = -0.637694471842202; + A_2N[2] = -1.306647717737108; + B_2N[0] = 0.457379997569388; + B_2N[1] = 0.925296410920922; + B_2N[2] = 0.393813594675071;*/ +#endif + node0_printf("Integrator = INTEGRATOR_CF3\n"); #elif GF_INTEGRATOR==INTEGRATOR_RKMK3 N_stages = 3; p_order = 3; From 11d93186d7e97f01f08f8b7cb78d749d93d1ea29 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Mon, 20 Jul 2020 03:38:56 -0400 Subject: [PATCH 21/49] Add CF3 integrator to experiment with coefficients --- wilson_flow/setup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wilson_flow/setup.c b/wilson_flow/setup.c index d147ac9fa..dd777ad75 100644 --- a/wilson_flow/setup.c +++ b/wilson_flow/setup.c @@ -245,7 +245,7 @@ initialize_integrator() //TODO: this is experimental, it should be removed once // the optimal set of coefficients is found // (lowest truncation error) -#define READ_CF3_FROM_FILE +//#define READ_CF3_FROM_FILE #ifdef READ_CF3_FROM_FILE FILE *fp; fp = fopen( "cf3_coeff.dat", "rt" ); @@ -269,7 +269,7 @@ initialize_integrator() A_2N[2] = -1.306647717737108; B_2N[0] = 0.457379997569388; B_2N[1] = 0.925296410920922; - B_2N[2] = 0.393813594675071;*/ + B_2N[2] = 0.393813594675071; #endif node0_printf("Integrator = INTEGRATOR_CF3\n"); #elif GF_INTEGRATOR==INTEGRATOR_RKMK3 From f3887e2d0b404599922f33c650d1c8e6cdf3d340 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Fri, 25 Sep 2020 21:08:24 -0400 Subject: [PATCH 22/49] Add a switch to dump the fields in double precision for debugging --- wilson_flow/control.c | 7 +++++ wilson_flow/defines.h | 3 ++ wilson_flow/integrate.c | 64 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 74 insertions(+) diff --git a/wilson_flow/control.c b/wilson_flow/control.c index c6f33814d..640e682cd 100644 --- a/wilson_flow/control.c +++ b/wilson_flow/control.c @@ -13,6 +13,10 @@ #include "../include/io_scidac.h" #endif +#ifdef DEBUG_FIELDS +void dump_double_lattice(); +#endif + int main( int argc, char **argv ) { @@ -164,6 +168,9 @@ main( int argc, char **argv ) /* Save lattice if requested */ if( saveflag != FORGET ) save_lattice( saveflag, savefile, stringLFN ); +#ifdef DEBUG_FIELDS + dump_double_lattice(); +#endif /* Stop and print timer for this configuration */ dtimec += dclock(); diff --git a/wilson_flow/defines.h b/wilson_flow/defines.h index 6a0c35327..cc66f1742 100644 --- a/wilson_flow/defines.h +++ b/wilson_flow/defines.h @@ -52,4 +52,7 @@ #define flow_step integrate_adapt_bs #endif +// dump lattice in double precision for debugging purposes +#define DEBUG_FIELDS + #endif /* _DEFINES_H */ diff --git a/wilson_flow/integrate.c b/wilson_flow/integrate.c index 4fcb21a10..f55843167 100644 --- a/wilson_flow/integrate.c +++ b/wilson_flow/integrate.c @@ -731,6 +731,70 @@ integrate_adapt_bs() { } #endif + + +#ifdef DEBUG_FIELDS +#define REPACK_TO_DOUBLE +#ifdef REPACK_TO_DOUBLE +#define MATRIX_TYPE dsu3_matrix +#else +#define MATRIX_TYPE fsu3_matrix +#endif + +void repack_site( su3_matrix *a, MATRIX_TYPE *b ) { + int dir,i,j; + + for(dir = 0; dir < 4; dir++){ + for(i = 0; i < 3; i++)for(j = 0; j < 3; j++){ + b[dir].e[i][j].real = a[dir].e[i][j].real; + b[dir].e[i][j].imag = a[dir].e[i][j].imag; + } + } +} + +void dump_double_lattice() { + + int i, x, y, z, t; + char filename[1024]; + MATRIX_TYPE *tbuf = NULL; + char myname[] = "dump_double_lattice"; + FILE *fp; + + // make a node file name + sprintf( filename, "fields_on_node.%04d", this_node ); + + tbuf = (MATRIX_TYPE *)malloc(nx*4*sizeof(MATRIX_TYPE)); + if(tbuf == NULL){ + printf("%s(%d): No room for tbuf\n",myname,this_node); + terminate(1); + } + + fp = fopen( filename, "wb" ); + + // loop over fields and store + for( t=0; t Date: Mon, 28 Sep 2020 21:30:10 -0400 Subject: [PATCH 23/49] Fix storing links state in double precision for multiple nodes --- wilson_flow/integrate.c | 18 +++++++++++++----- wilson_flow/setup.c | 2 +- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/wilson_flow/integrate.c b/wilson_flow/integrate.c index f55843167..ccca342b5 100644 --- a/wilson_flow/integrate.c +++ b/wilson_flow/integrate.c @@ -754,16 +754,24 @@ void repack_site( su3_matrix *a, MATRIX_TYPE *b ) { void dump_double_lattice() { - int i, x, y, z, t; + int i, x, y, z, t, nxa, nya, nza, nta; + const int *nsq; char filename[1024]; MATRIX_TYPE *tbuf = NULL; char myname[] = "dump_double_lattice"; FILE *fp; + // local sizes + nsq = get_logical_dimensions(); + nxa = nx/nsq[0]; + nya = ny/nsq[1]; + nza = nz/nsq[2]; + nta = nt/nsq[3]; + // make a node file name sprintf( filename, "fields_on_node.%04d", this_node ); - tbuf = (MATRIX_TYPE *)malloc(nx*4*sizeof(MATRIX_TYPE)); + tbuf = (MATRIX_TYPE *)malloc(nxa*4*sizeof(MATRIX_TYPE)); if(tbuf == NULL){ printf("%s(%d): No room for tbuf\n",myname,this_node); terminate(1); @@ -772,13 +780,13 @@ void dump_double_lattice() { fp = fopen( filename, "wb" ); // loop over fields and store - for( t=0; t Date: Wed, 7 Oct 2020 01:19:46 -0400 Subject: [PATCH 24/49] Check if coefficients file in CF3 is not present and give error --- wilson_flow/setup.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wilson_flow/setup.c b/wilson_flow/setup.c index 45eaa6c54..22f468c93 100644 --- a/wilson_flow/setup.c +++ b/wilson_flow/setup.c @@ -249,6 +249,10 @@ initialize_integrator() #ifdef READ_CF3_FROM_FILE FILE *fp; fp = fopen( "cf3_coeff.dat", "rt" ); + if( fp==NULL ) { + node0_printf( "ERROR: cf3_coeff.dat file cannot be read\n" ); + terminate(1); + } fscanf( fp, "%le", &(A_2N[0]) ); fscanf( fp, "%le", &(A_2N[1]) ); fscanf( fp, "%le", &(A_2N[2]) ); From d64184de85d5f7c3b1ee5697d81cf4d97b4c4761 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Tue, 5 Jan 2021 20:25:02 -0500 Subject: [PATCH 25/49] Minor cleanups, tests for all targets --- wilson_flow/Make_template | 4 + wilson_flow/control.c | 12 +- wilson_flow/defines.h | 6 +- wilson_flow/fmunu.c | 2 - wilson_flow/integrate.c | 111 ++---------------- wilson_flow/lattice.h | 7 +- wilson_flow/params.h | 1 + wilson_flow/setup.c | 88 +++++++++++--- wilson_flow/test_new/cf3_coeff.dat | 6 + wilson_flow/test_new/cf3adpt_coeff.dat | 9 ++ .../test_new/wilson_flow.symanzik.1.sample-in | 12 ++ .../wilson_flow.symanzik.1.sample-out | 67 +++++++++++ .../test_new/wilson_flow.symanzik.2.sample-in | 12 ++ .../wilson_flow.symanzik.2.sample-out | 67 +++++++++++ .../test_new/wilson_flow.wilson.1.sample-in | 12 ++ .../test_new/wilson_flow.wilson.1.sample-out | 67 +++++++++++ .../test_new/wilson_flow.wilson.2.sample-in | 12 ++ .../test_new/wilson_flow.wilson.2.sample-out | 67 +++++++++++ .../wilson_flow_adpt.symanzik.1.sample-in | 13 ++ .../wilson_flow_adpt.symanzik.1.sample-out | 75 ++++++++++++ .../wilson_flow_adpt.symanzik.2.sample-in | 13 ++ .../wilson_flow_adpt.symanzik.2.sample-out | 75 ++++++++++++ .../wilson_flow_adpt.wilson.1.sample-in | 13 ++ .../wilson_flow_adpt.wilson.1.sample-out | 69 +++++++++++ .../wilson_flow_adpt.wilson.2.sample-in | 13 ++ .../wilson_flow_adpt.wilson.2.sample-out | 69 +++++++++++ .../wilson_flow_adpt_bs.symanzik.1.sample-in | 13 ++ .../wilson_flow_adpt_bs.symanzik.1.sample-out | 75 ++++++++++++ .../wilson_flow_adpt_bs.symanzik.2.sample-in | 13 ++ .../wilson_flow_adpt_bs.symanzik.2.sample-out | 75 ++++++++++++ .../wilson_flow_adpt_bs.wilson.1.sample-in | 13 ++ .../wilson_flow_adpt_bs.wilson.1.sample-out | 67 +++++++++++ .../wilson_flow_adpt_bs.wilson.2.sample-in | 13 ++ .../wilson_flow_adpt_bs.wilson.2.sample-out | 67 +++++++++++ .../wilson_flow_adpt_cf3.symanzik.1.sample-in | 13 ++ ...wilson_flow_adpt_cf3.symanzik.1.sample-out | 84 +++++++++++++ .../wilson_flow_adpt_cf3.symanzik.2.sample-in | 13 ++ ...wilson_flow_adpt_cf3.symanzik.2.sample-out | 84 +++++++++++++ .../wilson_flow_adpt_cf3.wilson.1.sample-in | 13 ++ .../wilson_flow_adpt_cf3.wilson.1.sample-out | 78 ++++++++++++ .../wilson_flow_adpt_cf3.wilson.2.sample-in | 13 ++ .../wilson_flow_adpt_cf3.wilson.2.sample-out | 78 ++++++++++++ .../wilson_flow_bbb.symanzik.1.sample-in | 12 ++ .../wilson_flow_bbb.symanzik.1.sample-out | 67 +++++++++++ .../wilson_flow_bbb.symanzik.2.sample-in | 12 ++ .../wilson_flow_bbb.symanzik.2.sample-out | 67 +++++++++++ .../wilson_flow_bbb.wilson.1.sample-in | 12 ++ .../wilson_flow_bbb.wilson.1.sample-out | 67 +++++++++++ .../wilson_flow_bbb.wilson.2.sample-in | 12 ++ .../wilson_flow_bbb.wilson.2.sample-out | 67 +++++++++++ .../wilson_flow_cf3.symanzik.1.sample-in | 12 ++ .../wilson_flow_cf3.symanzik.1.sample-out | 73 ++++++++++++ .../wilson_flow_cf3.symanzik.2.sample-in | 12 ++ .../wilson_flow_cf3.symanzik.2.sample-out | 73 ++++++++++++ .../wilson_flow_cf3.wilson.1.sample-in | 12 ++ .../wilson_flow_cf3.wilson.1.sample-out | 73 ++++++++++++ .../wilson_flow_cf3.wilson.2.sample-in | 12 ++ .../wilson_flow_cf3.wilson.2.sample-out | 73 ++++++++++++ .../wilson_flow_ck.symanzik.1.sample-in | 12 ++ .../wilson_flow_ck.symanzik.1.sample-out | 67 +++++++++++ .../wilson_flow_ck.symanzik.2.sample-in | 12 ++ .../wilson_flow_ck.symanzik.2.sample-out | 67 +++++++++++ .../wilson_flow_ck.wilson.1.sample-in | 12 ++ .../wilson_flow_ck.wilson.1.sample-out | 67 +++++++++++ .../wilson_flow_ck.wilson.2.sample-in | 12 ++ .../wilson_flow_ck.wilson.2.sample-out | 67 +++++++++++ .../wilson_flow_rkmk3.symanzik.1.sample-in | 12 ++ .../wilson_flow_rkmk3.symanzik.1.sample-out | 67 +++++++++++ .../wilson_flow_rkmk3.symanzik.2.sample-in | 12 ++ .../wilson_flow_rkmk3.symanzik.2.sample-out | 67 +++++++++++ .../wilson_flow_rkmk3.wilson.1.sample-in | 12 ++ .../wilson_flow_rkmk3.wilson.1.sample-out | 67 +++++++++++ .../wilson_flow_rkmk3.wilson.2.sample-in | 12 ++ .../wilson_flow_rkmk3.wilson.2.sample-out | 67 +++++++++++ .../wilson_flow_rkmk4.symanzik.1.sample-in | 12 ++ .../wilson_flow_rkmk4.symanzik.1.sample-out | 67 +++++++++++ .../wilson_flow_rkmk4.symanzik.2.sample-in | 12 ++ .../wilson_flow_rkmk4.symanzik.2.sample-out | 67 +++++++++++ .../wilson_flow_rkmk4.wilson.1.sample-in | 12 ++ .../wilson_flow_rkmk4.wilson.1.sample-out | 67 +++++++++++ .../wilson_flow_rkmk4.wilson.2.sample-in | 12 ++ .../wilson_flow_rkmk4.wilson.2.sample-out | 67 +++++++++++ .../wilson_flow_rkmk5.symanzik.1.sample-in | 12 ++ .../wilson_flow_rkmk5.symanzik.1.sample-out | 67 +++++++++++ .../wilson_flow_rkmk5.symanzik.2.sample-in | 12 ++ .../wilson_flow_rkmk5.symanzik.2.sample-out | 67 +++++++++++ .../wilson_flow_rkmk5.wilson.1.sample-in | 12 ++ .../wilson_flow_rkmk5.wilson.1.sample-out | 67 +++++++++++ .../wilson_flow_rkmk5.wilson.2.sample-in | 12 ++ .../wilson_flow_rkmk5.wilson.2.sample-out | 67 +++++++++++ .../wilson_flow_rkmk8.symanzik.1.sample-in | 12 ++ .../wilson_flow_rkmk8.symanzik.1.sample-out | 67 +++++++++++ .../wilson_flow_rkmk8.symanzik.2.sample-in | 12 ++ .../wilson_flow_rkmk8.symanzik.2.sample-out | 67 +++++++++++ .../wilson_flow_rkmk8.wilson.1.sample-in | 12 ++ .../wilson_flow_rkmk8.wilson.1.sample-out | 67 +++++++++++ .../wilson_flow_rkmk8.wilson.2.sample-in | 12 ++ .../wilson_flow_rkmk8.wilson.2.sample-out | 67 +++++++++++ wilson_flow/wilson_flow_includes.h | 2 - 99 files changed, 3721 insertions(+), 131 deletions(-) create mode 100644 wilson_flow/test_new/cf3_coeff.dat create mode 100644 wilson_flow/test_new/cf3adpt_coeff.dat create mode 100644 wilson_flow/test_new/wilson_flow.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow.wilson.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt.wilson.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs.wilson.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_bbb.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_bbb.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_bbb.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_bbb.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_bbb.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_bbb.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_bbb.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_bbb.wilson.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_ck.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_ck.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_ck.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_ck.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_ck.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_ck.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_ck.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_ck.wilson.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3.wilson.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4.wilson.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5.wilson.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8.wilson.2.sample-out diff --git a/wilson_flow/Make_template b/wilson_flow/Make_template index 15fd033ab..262882ecc 100644 --- a/wilson_flow/Make_template +++ b/wilson_flow/Make_template @@ -143,6 +143,10 @@ wilson_flow_adpt:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_ADAPT_LUSCHER" \ +wilson_flow_adpt_cf3:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_ADAPT_CF3" \ + wilson_flow_adpt_bs:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_ADAPT_BS" \ diff --git a/wilson_flow/control.c b/wilson_flow/control.c index 640e682cd..26de5339a 100644 --- a/wilson_flow/control.c +++ b/wilson_flow/control.c @@ -58,6 +58,7 @@ main( int argc, char **argv ) /* Print flow output column labels */ node0_printf("#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge\n"); #if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS node0_printf("#ADAPT time stepsize distance local_tol/distance\n"); #endif @@ -72,6 +73,7 @@ main( int argc, char **argv ) node0_printf("GFLOW: %g %.16g %.16g %.16g %.16g %.16g %.16g %.16g\n", 0.0, Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge); #endif #if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS #if (MILC_PRECISION==1) node0_printf("ADAPT: %g %g %g %g\n", 0.0, stepsize, 0.0, 0.0 ); @@ -82,6 +84,7 @@ main( int argc, char **argv ) fflush(stdout); #if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS steps_rejected = 0; // count rejected steps in adaptive schemes #endif @@ -96,12 +99,6 @@ main( int argc, char **argv ) i = 0; /* Loop over the flow time */ while( stoptime==AUTO_STOPTIME || ( flowtimestoptime-flowtime && stoptime!=AUTO_STOPTIME ) { stepsize = stoptime-flowtime; @@ -124,6 +121,7 @@ main( int argc, char **argv ) node0_printf("GFLOW: %.16g %.16g %.16g %.16g %.16g %.16g %.16g %.16g\n", flowtime, Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge); #endif #if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS #if (MILC_PRECISION==1) node0_printf("ADAPT: %g %g %g %g\n", flowtime, stepsize, dist, local_tol/dist ); @@ -147,6 +145,7 @@ main( int argc, char **argv ) } /* end: auto stoptime */ #if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS if( is_final_step==0 ) { // adjust step size for the next step except if it is final @@ -160,6 +159,7 @@ main( int argc, char **argv ) total_steps = i; node0_printf("Number of steps = %i\n", total_steps); #if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS node0_printf("Number of rejected steps = %i\n", steps_rejected); #endif diff --git a/wilson_flow/defines.h b/wilson_flow/defines.h index cc66f1742..719e4abd5 100644 --- a/wilson_flow/defines.h +++ b/wilson_flow/defines.h @@ -32,6 +32,7 @@ // adaptive schemes #define INTEGRATOR_ADAPT_LUSCHER 20 #define INTEGRATOR_ADAPT_BS 21 +#define INTEGRATOR_ADAPT_CF3 22 // Safety factor for adaptive schemes // to prevent too many rejected steps @@ -46,13 +47,14 @@ #define flow_step integrate_RKMK3 #elif GF_INTEGRATOR==INTEGRATOR_RKMK4 || GF_INTEGRATOR==INTEGRATOR_RKMK5 || GF_INTEGRATOR==INTEGRATOR_RKMK8 #define flow_step integrate_RKMK_generic -#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 #define flow_step integrate_adapt_RK_2N #elif GF_INTEGRATOR==INTEGRATOR_ADAPT_BS #define flow_step integrate_adapt_bs #endif // dump lattice in double precision for debugging purposes -#define DEBUG_FIELDS +// BE CAREFULL with this +//#define DEBUG_FIELDS #endif /* _DEFINES_H */ diff --git a/wilson_flow/fmunu.c b/wilson_flow/fmunu.c index e1c721b9f..ac1ea7036 100644 --- a/wilson_flow/fmunu.c +++ b/wilson_flow/fmunu.c @@ -74,8 +74,6 @@ fmunu_fmunu( double *time, double *space, double *charge ) } -//TODO: debug Symanzik part, compare to GACTION from other applications -// (e.g. HMC with 0 steps) /* Compute loops: 1x1 -- plaquette, 1x2 + 2x1 -- rectangle for Wilson (one-plaquette) and Symanzik tree-level (plaquette and rectangle) action, diff --git a/wilson_flow/integrate.c b/wilson_flow/integrate.c index ccca342b5..f043274a9 100644 --- a/wilson_flow/integrate.c +++ b/wilson_flow/integrate.c @@ -255,7 +255,7 @@ commutator_ah( anti_hermitmat *a, anti_hermitmat *b, anti_hermitmat *c ) { } #endif -/* derivative of the inverse matrix exponential, +/* inverse derivative of the matrix exponential, required for generic RKMK methods */ void dexpinv( anti_hermitmat *u, anti_hermitmat *v, int q, anti_hermitmat *d ) { @@ -338,7 +338,7 @@ su3mat_distance( su3_matrix *a, su3_matrix *b ) { * U = exp(cB*A)*U -> update gauge links */ void -integrate_RK_2N_one_step( Real cA, Real cB ) +integrate_RK_2N_one_stage( Real cA, Real cB ) { register int dir, i; register site *s; @@ -387,7 +387,7 @@ integrate_RK_2N() for( i=0; ilink0[dir]), &(s->link[dir]) ); } } -#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 void -integrate_adapt_RK_2N_one_step( Real cA, Real cB, int istep ) +integrate_adapt_RK_2N_one_stage( Real cA, Real cB, int istep ) { register int dir, i; register site *s; @@ -574,15 +574,18 @@ integrate_adapt_RK_2N() for( i=0; iK[0][dir]), &(s->K[1][dir]), -2, &tempA1 ); - scalar_mult_ah( &tempA1, stepsize, &tempA1 ); + scalar_mult_ah( &(s->K[0][dir]), Lambda[0], &tempA1 ); + scalar_mult_add_ah( &tempA1, &(s->K[1][dir]), Lambda[1], &tempA1 ); + scalar_mult_add_ah( &tempA1, &(s->K[2][dir]), Lambda[2], &tempA1 ); + // NOTE: Nathan Brown's convention: stepsize is negative + scalar_mult_ah( &tempA1, -stepsize, &tempA1 ); exp_anti_hermitian( &tempA1, &tempS1, exp_order ); mult_su3_nn( &tempS1, &(s->link0[dir]), &tempS2 ); /* Calculate distance between the two approximations */ @@ -800,95 +803,3 @@ void dump_double_lattice() { } #endif - - - -#ifdef ABA -//TODO: remove once all integrators are tested, flow_step is now -// chosen inside defines.h -/* one step of the flow, here branching into different integrators happens */ -void -flow_step() -{ - -#if GF_INTEGRATOR==INTEGRATOR_LUSCHER || GF_INTEGRATOR==INTEGRATOR_CK - integrate_RK_2N(); -#elif GF_INTEGRATOR==INTEGRATOR_RKMK3 - integrate_RKMK3(); -#elif GF_INTEGRATOR==INTEGRATOR_RKMK4 || GF_INTEGRATOR==INTEGRATOR_RKMK5 || GF_INTEGRATOR==INTEGRATOR_RKMK8 - integrate_RKMK_generic(); -#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER - integrate_adapt_RK_2N(); -#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_BS - integrate_adapt_bs(); -#endif - -} -#endif - - -// original Nathan's routines that are being phased out -#ifdef ABA - -/* Computes a single smearing steps (three smear steps per time step) - * A: accumulating matrix over all smear steps in a single time step - * S: staple (action dependent); recalculated before each smear step - * U: gauge links - * c1,c2: constants - * Calculating a single smear step is done by: - * A += c1*proj(S*U) -> update accumulation matrix - * U = exp(c2*A)*U -> update gauge links - */ -void -stout_smear_step( Real c1, Real c2 ) -{ - register int dir, i; - register site *s; - - /* Temporary matrix holders */ - anti_hermitmat *Acur, tempA1; - su3_matrix *U, tempS1, tempS2; - - /* Calculate the new staple */ - staple(); - - FORALLUPDIR(dir) - FORALLSITES(i, s) { - /* Retrieve the current link and accumulation matrix */ - U = &(s->link[dir]); - Acur = &(s->accumulate[dir]); - - /* Update the accumulation matrix A += c1*proj(U*S) */ - mult_su3_na( U, &(s->staple[dir]), &tempS1 ); - anti_hermitian_traceless_proj( &tempS1, &tempA1 ); - scalar_mult_add_ah( Acur, &tempA1, c1, Acur ); - - /* Update the links U = exp(c2*A)*U */ - scalar_mult_ah( Acur, c2, &tempA1 ); - exp_anti_hermitian( &tempA1, &tempS1, exp_order ); - mult_su3_nn( &tempS1, U, &tempS2 ); - su3mat_copy( &tempS2, U ); - } -} - -/* Luscher's integration routine (essentially Runga-Kutta) */ -/* Outlined in 'arXiv:1006.4518 [hep-lat]' */ -void -stout_step_rk() -{ - register int dir, i; - register site *s; - - /* Clear the accumulation matrix */ - FORALLSITES(i, s) - FORALLUPDIR(dir) - clear_anti_hermitian(&(s->accumulate[dir])); - - /* Infinitesimal stout smearing */ - stout_smear_step( 17./36.*stepsize, -9./17. ); - stout_smear_step( -8./9.*stepsize, 1. ); - stout_smear_step( 3./4.*stepsize, -1. ); -} - - -#endif diff --git a/wilson_flow/lattice.h b/wilson_flow/lattice.h index df34da57d..f0381a140 100644 --- a/wilson_flow/lattice.h +++ b/wilson_flow/lattice.h @@ -32,6 +32,7 @@ typedef struct { #if GF_INTEGRATOR==INTEGRATOR_RKMK3 || GF_INTEGRATOR==INTEGRATOR_RKMK4 || \ GF_INTEGRATOR==INTEGRATOR_RKMK5 || GF_INTEGRATOR==INTEGRATOR_RKMK8 || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS /* gauge field at the beginning of RK step */ su3_matrix link0[4] ALIGNMENT; @@ -46,7 +47,7 @@ typedef struct { anti_hermitmat K[6][4]; /* right-hand-side in RK method for all stages */ #elif GF_INTEGRATOR==INTEGRATOR_RKMK8 anti_hermitmat K[13][4]; /* right-hand-side in RK method for all stages */ -#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 anti_hermitmat K[3][4]; /* right-hand-side in RK method for all stages */ #elif GF_INTEGRATOR==INTEGRATOR_ADAPT_BS anti_hermitmat K[4][4]; /* right-hand-side in RK method for all stages */ @@ -99,10 +100,12 @@ EXTERN Real B_2N[MAX_RK_NS]; // RK coefficients in Butcher table EXTERN Real a_RK[MAX_RK_NS][MAX_RK_NS]; EXTERN Real b_RK[MAX_RK_NS]; -#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 // A, B coefficients EXTERN Real A_2N[MAX_RK_NS]; EXTERN Real B_2N[MAX_RK_NS]; +// second-order coefficients +EXTERN Real Lambda[3]; // rejeted steps in adaptive integrators EXTERN int steps_rejected; // local tolerance for adaptive integrators diff --git a/wilson_flow/params.h b/wilson_flow/params.h index 6f0a8bbe2..174fd3ef9 100644 --- a/wilson_flow/params.h +++ b/wilson_flow/params.h @@ -15,6 +15,7 @@ typedef struct { Real stoptime; /* maximum flow time, -1 means auto-determined */ int exp_order; /* where to end series expansion of exponential */ #if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS Real local_tol; /* local tolerance for adaptive integrators */ #endif diff --git a/wilson_flow/setup.c b/wilson_flow/setup.c index 22f468c93..5b6afbe07 100644 --- a/wilson_flow/setup.c +++ b/wilson_flow/setup.c @@ -141,6 +141,7 @@ readin(int prompt) IF_OK status += get_i(stdin, prompt, "exp_order", &par_buf.exp_order); IF_OK status += get_f(stdin, prompt, "stepsize", &par_buf.stepsize); #if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS IF_OK status += get_f(stdin, prompt, "local_tol", &par_buf.local_tol); #endif @@ -175,6 +176,7 @@ readin(int prompt) stepsize = par_buf.stepsize; stoptime = par_buf.stoptime; #if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS local_tol = par_buf.local_tol; #endif @@ -239,33 +241,39 @@ initialize_integrator() node0_printf("Integrator = INTEGRATOR_BBB\n"); #elif GF_INTEGRATOR==INTEGRATOR_CF3 N_stages = 3; - // Commutator-free 2N-storage for experiments - // with coefficients + // Commutator-free 2N-storage with arbitrary coefficients -//TODO: this is experimental, it should be removed once -// the optimal set of coefficients is found -// (lowest truncation error) #define READ_CF3_FROM_FILE #ifdef READ_CF3_FROM_FILE FILE *fp; + int st = 0; fp = fopen( "cf3_coeff.dat", "rt" ); if( fp==NULL ) { node0_printf( "ERROR: cf3_coeff.dat file cannot be read\n" ); terminate(1); } - fscanf( fp, "%le", &(A_2N[0]) ); - fscanf( fp, "%le", &(A_2N[1]) ); - fscanf( fp, "%le", &(A_2N[2]) ); - fscanf( fp, "%le", &(B_2N[0]) ); - fscanf( fp, "%le", &(B_2N[1]) ); - fscanf( fp, "%le", &(B_2N[2]) ); +#if (MILC_PRECISION==1) + st += fscanf( fp, "%e", &(A_2N[0]) ); + st += fscanf( fp, "%e", &(A_2N[1]) ); + st += fscanf( fp, "%e", &(A_2N[2]) ); + st += fscanf( fp, "%e", &(B_2N[0]) ); + st += fscanf( fp, "%e", &(B_2N[1]) ); + st += fscanf( fp, "%e", &(B_2N[2]) ); +#else + st += fscanf( fp, "%le", &(A_2N[0]) ); + st += fscanf( fp, "%le", &(A_2N[1]) ); + st += fscanf( fp, "%le", &(A_2N[2]) ); + st += fscanf( fp, "%le", &(B_2N[0]) ); + st += fscanf( fp, "%le", &(B_2N[1]) ); + st += fscanf( fp, "%le", &(B_2N[2]) ); +#endif fclose( fp ); -/* printf( "%.16g\n", A_2N[0] ); - printf( "%.16g\n", A_2N[1] ); - printf( "%.16g\n", A_2N[2] ); - printf( "%.16g\n", B_2N[0] ); - printf( "%.16g\n", B_2N[1] ); - printf( "%.16g\n", B_2N[2] );*/ + node0_printf( "%.16g\n", A_2N[0] ); + node0_printf( "%.16g\n", A_2N[1] ); + node0_printf( "%.16g\n", A_2N[2] ); + node0_printf( "%.16g\n", B_2N[0] ); + node0_printf( "%.16g\n", B_2N[1] ); + node0_printf( "%.16g\n", B_2N[2] ); #else // optimized with Ralston procedure A_2N[0] = 0; @@ -387,7 +395,53 @@ initialize_integrator() B_2N[0] = 1/4.; B_2N[1] = 8/9.; B_2N[2] = 3/4.; + Lambda[0] = -1; + Lambda[1] = 2; + Lambda[2] = 0; node0_printf("Integrator = INTEGRATOR_ADAPT_LUSCHER\n"); +#elif GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 + N_stages = 3; + // Commutator-free 2N-storage with arbitrary coefficients + + FILE *fp; + int st; + fp = fopen( "cf3adpt_coeff.dat", "rt" ); + if( fp==NULL ) { + node0_printf( "ERROR: cf3adpt_coeff.dat file cannot be read\n" ); + terminate(1); + } +#if (MILC_PRECISION==1) + st = fscanf( fp, "%e", &(A_2N[0]) ); + st += fscanf( fp, "%e", &(A_2N[1]) ); + st += fscanf( fp, "%e", &(A_2N[2]) ); + st += fscanf( fp, "%e", &(B_2N[0]) ); + st += fscanf( fp, "%e", &(B_2N[1]) ); + st += fscanf( fp, "%e", &(B_2N[2]) ); + st += fscanf( fp, "%e", &(Lambda[0]) ); + st += fscanf( fp, "%e", &(Lambda[1]) ); + st += fscanf( fp, "%e", &(Lambda[2]) ); +#else + st = fscanf( fp, "%le", &(A_2N[0]) ); + st += fscanf( fp, "%le", &(A_2N[1]) ); + st += fscanf( fp, "%le", &(A_2N[2]) ); + st += fscanf( fp, "%le", &(B_2N[0]) ); + st += fscanf( fp, "%le", &(B_2N[1]) ); + st += fscanf( fp, "%le", &(B_2N[2]) ); + st += fscanf( fp, "%le", &(Lambda[0]) ); + st += fscanf( fp, "%le", &(Lambda[1]) ); + st += fscanf( fp, "%le", &(Lambda[2]) ); +#endif + fclose( fp ); + node0_printf( "%.16g\n", A_2N[0] ); + node0_printf( "%.16g\n", A_2N[1] ); + node0_printf( "%.16g\n", A_2N[2] ); + node0_printf( "%.16g\n", B_2N[0] ); + node0_printf( "%.16g\n", B_2N[1] ); + node0_printf( "%.16g\n", B_2N[2] ); + node0_printf( "%.16g\n", Lambda[0] ); + node0_printf( "%.16g\n", Lambda[1] ); + node0_printf( "%.16g\n", Lambda[2] ); + node0_printf("Integrator = INTEGRATOR_ADAPT_CF3\n"); #elif GF_INTEGRATOR==INTEGRATOR_ADAPT_BS // Bogacki-Shampine integrator based on Ralston coefficients // NOTE: there is a fourth stage that produces a lower order approximation diff --git a/wilson_flow/test_new/cf3_coeff.dat b/wilson_flow/test_new/cf3_coeff.dat new file mode 100644 index 000000000..47ac1770f --- /dev/null +++ b/wilson_flow/test_new/cf3_coeff.dat @@ -0,0 +1,6 @@ +0.0000000000000000e+00 +-5.5555555555555558e-01 +-1.1953125000000000e+00 +3.3333333333333331e-01 +9.3750000000000000e-01 +5.3333333333333333e-01 diff --git a/wilson_flow/test_new/cf3adpt_coeff.dat b/wilson_flow/test_new/cf3adpt_coeff.dat new file mode 100644 index 000000000..90ebe7665 --- /dev/null +++ b/wilson_flow/test_new/cf3adpt_coeff.dat @@ -0,0 +1,9 @@ +0.0000000000000000e+00 +-5.3125000000000000e-01 +-1.1851851851851851e+00 +2.5000000000000000e-01 +8.8888888888888884e-01 +7.5000000000000000e-01 +-1.0000000000000000e+00 +2.0000000000000000e+00 +0.0000000000000000e+00 diff --git a/wilson_flow/test_new/wilson_flow.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow.symanzik.1.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow.symanzik.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow.symanzik.1.sample-out new file mode 100644 index 000000000..98431fc59 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:09 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 8.101463e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 2.670288e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.854375 0.829395 2.37618 2.36268 1.8023 1.77541 0.0472255 +GFLOW: 0.125 0.607297 0.583634 2.68539 2.68053 2.29016 2.27337 0.0232906 +GFLOW: 0.1875 0.424347 0.398777 2.82903 2.82518 2.56851 2.55221 0.0153032 +GFLOW: 0.25 0.305483 0.277945 2.89913 2.89473 2.72367 2.70586 0.0124005 +GFLOW: 0.3125 0.228908 0.20082 2.93569 2.93084 2.81268 2.79394 0.010123 +GFLOW: 0.375 0.177994 0.150526 2.95616 2.95117 2.86627 2.84746 0.00788821 +GFLOW: 0.4375 0.142745 0.11655 2.96845 2.96353 2.90028 2.88201 0.00591792 +GFLOW: 0.5 0.117393 0.0927492 2.97629 2.97157 2.92296 2.90556 0.00433489 +GFLOW: 0.5625 0.0985555 0.0755244 2.98156 2.97709 2.93873 2.92235 0.00312764 +GFLOW: 0.625 0.0841774 0.0627063 2.98525 2.98107 2.95012 2.93477 0.00223009 +GFLOW: 0.6875 0.0729572 0.0529411 2.98794 2.98403 2.95858 2.94423 0.00156921 +GFLOW: 0.75 0.0640376 0.045353 2.98995 2.9863 2.96502 2.95161 0.00108288 +GFLOW: 0.8125 0.0568333 0.0393561 2.99149 2.98807 2.97002 2.95748 0.000723537 +GFLOW: 0.875 0.0509329 0.0345465 2.99269 2.9895 2.97398 2.96222 0.000456401 +GFLOW: 0.9375 0.0460398 0.0306385 2.99364 2.99065 2.97716 2.96611 0.000256605 +GFLOW: 1 0.0419356 0.0274253 2.99441 2.9916 2.97974 2.96935 0.000106462 +Number of steps = 16 +Time to complete flow = 3.218560e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 3.265660e-01 seconds +exit: Tue Jan 5 19:00:10 2021 + diff --git a/wilson_flow/test_new/wilson_flow.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow.symanzik.2.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow.symanzik.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow.symanzik.2.sample-out new file mode 100644 index 000000000..2f477baab --- /dev/null +++ b/wilson_flow/test_new/wilson_flow.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:16 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 7.860661e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.055956e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.8543748488315552 0.8293947648705751 2.376179304698458 2.362677101758874 1.802304115569335 1.775411064068106 0.04722547316371967 +GFLOW: 0.125 0.607296732005826 0.583634030515743 2.685386163777981 2.680527317794402 2.290155760576929 2.273370299644372 0.02329054038883645 +GFLOW: 0.1875 0.424346914969508 0.398777176668798 2.829029548444025 2.825180755353612 2.568505309536181 2.552213406175068 0.01530322134500398 +GFLOW: 0.25 0.3054830745527156 0.2779451337352716 2.899132697478956 2.894732870665771 2.723672463682794 2.705855811093686 0.01240047069847497 +GFLOW: 0.3125 0.2289075986696237 0.2008195858893897 2.935686911031598 2.930843784563374 2.812679074146463 2.79393810197508 0.01012296017063545 +GFLOW: 0.375 0.1779941179405538 0.1505257177249438 2.956162885645582 2.951173141766001 2.866269823240481 2.847464846379687 0.007888198958358414 +GFLOW: 0.4375 0.1427453109661756 0.1165495351757126 2.968449003526571 2.963530728687906 2.900280682119246 2.88201391134504 0.005917924755511772 +GFLOW: 0.5 0.1173930477397642 0.09274914305917904 2.97628702949801 2.971566184115716 2.922955165595177 2.9055578989782 0.004334884670204418 +GFLOW: 0.5625 0.09855547921308999 0.07552442955003591 2.981555115073407 2.977091784182832 2.938734312273377 2.922347847436767 0.003127635812480354 +GFLOW: 0.625 0.08417735434996666 0.06270631676714256 2.985251982487954 2.981065693164012 2.950117238929032 2.934768340128928 0.002230094133999229 +GFLOW: 0.6875 0.07295719890145635 0.0529410944085849 2.987939075683805 2.98402672259278 2.958576222594195 2.94422974032048 0.001569209632452986 +GFLOW: 0.75 0.0640375622899487 0.04535299482269756 2.989948801398805 2.986295912398262 2.965018005099284 2.95160941527986 0.001082884959947411 +GFLOW: 0.8125 0.05683329443880113 0.03935610083939756 2.991487453707733 2.98807475863344 2.970024431615372 2.957478471540453 0.000723537308480697 +GFLOW: 0.875 0.0509329296473873 0.03454650834311609 2.992688534541917 2.989495558752868 2.973982813719553 2.96222344775222 0.0004564043284416487 +GFLOW: 0.9375 0.04603982348521207 0.03063847099215955 2.993641647248294 2.990648540586426 2.977159335473908 2.966114645475173 0.0002566117660345612 +GFLOW: 1 0.0419356489459576 0.02742531139858422 2.994408837275467 2.991597206925263 2.979741995823919 2.969346241070383 0.0001064621400328506 +Number of steps = 16 +Time to complete flow = 3.676491e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 3.742211e-01 seconds +exit: Tue Jan 5 19:01:17 2021 + diff --git a/wilson_flow/test_new/wilson_flow.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow.wilson.1.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow.wilson.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow.wilson.1.sample-out new file mode 100644 index 000000000..dd4b3aadb --- /dev/null +++ b/wilson_flow/test_new/wilson_flow.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:10 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 7.960796e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 2.679825e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.905792 0.879676 2.21651 2.1972 1.61657 1.58347 0.0557441 +GFLOW: 0.125 0.711623 0.687151 2.53069 2.52162 2.05964 2.03792 0.0304034 +GFLOW: 0.1875 0.536268 0.511769 2.71711 2.71206 2.37249 2.35509 0.017865 +GFLOW: 0.25 0.401488 0.375439 2.82519 2.82085 2.57836 2.56099 0.0125646 +GFLOW: 0.3125 0.304704 0.277192 2.88802 2.88339 2.71027 2.69186 0.010197 +GFLOW: 0.375 0.236398 0.208318 2.92524 2.92027 2.79485 2.77572 0.00859013 +GFLOW: 0.4375 0.187792 0.160037 2.94795 2.94284 2.85002 2.83077 0.00710069 +GFLOW: 0.5 0.15253 0.125713 2.96232 2.95723 2.88693 2.86807 0.00569573 +GFLOW: 0.5625 0.126358 0.100824 2.97175 2.96681 2.91236 2.89421 0.00445253 +GFLOW: 0.625 0.106494 0.0823917 2.97817 2.97345 2.93039 2.91314 0.00341352 +GFLOW: 0.6875 0.0911071 0.0684636 2.98269 2.97823 2.94352 2.92725 0.00257786 +GFLOW: 0.75 0.0789703 0.0577435 2.98597 2.98178 2.95333 2.93803 0.00192112 +GFLOW: 0.8125 0.069245 0.0493554 2.98841 2.98448 2.9608 2.94645 0.00141134 +GFLOW: 0.875 0.061343 0.042695 2.99027 2.98659 2.96661 2.95314 0.00101776 +GFLOW: 0.9375 0.0548423 0.0373368 2.99172 2.98826 2.9712 2.95856 0.000714273 +GFLOW: 1 0.0494345 0.0329748 2.99285 2.98962 2.97487 2.963 0.000479992 +Number of steps = 16 +Time to complete flow = 1.324608e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.371360e-01 seconds +exit: Tue Jan 5 19:00:10 2021 + diff --git a/wilson_flow/test_new/wilson_flow.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow.wilson.2.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow.wilson.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow.wilson.2.sample-out new file mode 100644 index 000000000..1f3c76418 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:17 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 7.898808e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.055956e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.9057920856915209 0.8796763820494508 2.216509410522774 2.197197056299902 1.616570355489586 1.58347344130154 0.05574407551897611 +GFLOW: 0.125 0.7116231893510799 0.6871512384089046 2.530686004526462 2.521619636170544 2.059635795465515 2.037916588776743 0.03040341675612073 +GFLOW: 0.1875 0.5362683370489634 0.5117685144155256 2.717106409327169 2.712064857451038 2.37249113004078 2.35508718362237 0.01786499326463283 +GFLOW: 0.25 0.4014877620284962 0.3754393031999623 2.825194702561463 2.820848903916266 2.578358690422992 2.56099213510236 0.01256460153466077 +GFLOW: 0.3125 0.3047040872626624 0.2771915277782775 2.888018817177403 2.883388666669195 2.710269854022654 2.691863333188723 0.01019696614464195 +GFLOW: 0.375 0.2363977722715255 0.2083181377439789 2.925235549991512 2.920273265366244 2.794850151851901 2.77571975961539 0.008590122464952192 +GFLOW: 0.4375 0.1877920835750984 0.1600370295706649 2.947950689705598 2.942836143320951 2.850015570180885 2.830766666107731 0.00710066867191912 +GFLOW: 0.5 0.1525295784207318 0.1257130828695857 2.962317615721992 2.957228134672858 2.886931259365751 2.868068886288411 0.005695719209967151 +GFLOW: 0.5625 0.1263582356378827 0.100823769026754 2.971750366838974 2.966809733897068 2.912360240743764 2.894214475159307 0.004452522090587669 +GFLOW: 0.625 0.1064944601674812 0.08239170669210551 2.97817231166793 2.973452929870674 2.930390478434733 2.91314139012025 0.003413504210852579 +GFLOW: 0.6875 0.09110706201326449 0.06846365042047078 2.982693282727868 2.978229876795076 2.943524755461226 2.927246406522338 0.002577856831121481 +GFLOW: 0.75 0.07897031407901907 0.0577435012311146 2.985972437963431 2.98177519278301 2.953327843559659 2.938026790246562 0.001921116471623334 +GFLOW: 0.8125 0.06924504376911778 0.04935539218397436 2.988413668882677 2.984478081512274 2.960802884124881 2.946446240476888 0.001411337269360107 +GFLOW: 0.875 0.0613429742027722 0.04269504883572837 2.990272420817325 2.986585949207697 2.966610237623441 2.953144377194535 0.001017767408788298 +GFLOW: 0.9375 0.05484232116236083 0.0373367933048642 2.991715320551761 2.988261588306987 2.971196164946877 2.958558453908063 0.0007142723612204322 +GFLOW: 1 0.04943445691703316 0.03297478460438698 2.992854278477389 2.989615598876857 2.974869836345496 2.962995615162936 0.0004799888742834227 +Number of steps = 16 +Time to complete flow = 1.491899e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.557589e-01 seconds +exit: Tue Jan 5 19:01:17 2021 + diff --git a/wilson_flow/test_new/wilson_flow_adpt.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_adpt.symanzik.1.sample-in new file mode 100644 index 000000000..e87d6d63d --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt.symanzik.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_adpt.symanzik.1.sample-out new file mode 100644 index 000000000..c267de8d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt.symanzik.1.sample-out @@ -0,0 +1,75 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:01 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.709461e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 5.602837e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.854375 0.829395 2.37618 2.36268 1.8023 1.77541 0.0472255 +ADAPT: 0.0625 0.0625 0.0047192 2.119 +GFLOW: 0.138763 0.560706 0.536835 2.72759 2.72336 2.36671 2.35062 0.0209253 +ADAPT: 0.138763 0.076263 0.00738167 1.35471 +GFLOW: 0.218928 0.357882 0.331197 2.87059 2.86654 2.65803 2.64104 0.0137614 +ADAPT: 0.218928 0.0801652 0.00363115 2.75395 +GFLOW: 0.325677 0.216143 0.188118 2.94141 2.93652 2.82693 2.80814 0.00968091 +ADAPT: 0.325677 0.106748 0.00468429 2.13479 +GFLOW: 0.456255 0.134023 0.108266 2.97138 2.96651 2.90847 2.89044 0.00542774 +ADAPT: 0.456255 0.130578 0.00343094 2.91465 +GFLOW: 0.633452 0.0822926 0.0610077 2.98567 2.98154 2.95167 2.93644 0.00214519 +ADAPT: 0.633452 0.177197 0.00378754 2.64024 +GFLOW: 0.789816 0.0591954 0.041288 2.98835 2.98547 2.96814 2.95526 0.000865788 +ADAPT: 0.789816 0.156364 0.00858512 1.16481 +GFLOW: 0.88015 0.0504692 0.0341702 2.99155 2.98874 2.97422 2.96251 0.000445196 +ADAPT: 0.88015 0.0903338 0.00859996 1.1628 +GFLOW: 0.970392 0.0437911 0.0288741 2.9934 2.99074 2.97855 2.96786 0.000174927 +ADAPT: 0.970392 0.090242 0.0060064 1.66489 +GFLOW: 1 0.0419416 0.0274348 2.99427 2.99151 2.97973 2.96934 0.000107674 +ADAPT: 1 0.0296079 0.000153453 65.1664 +Number of steps = 10 +Number of rejected steps = 2 +Time to complete flow = 2.402999e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.414088e-01 seconds +exit: Tue Jan 5 19:00:01 2021 + diff --git a/wilson_flow/test_new/wilson_flow_adpt.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_adpt.symanzik.2.sample-in new file mode 100644 index 000000000..e87d6d63d --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt.symanzik.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_adpt.symanzik.2.sample-out new file mode 100644 index 000000000..6d88191f1 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt.symanzik.2.sample-out @@ -0,0 +1,75 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:08 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 8.320808e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.060009e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.8543748488315552 0.8293947648705751 2.376179304698458 2.362677101758874 1.802304115569335 1.775411064068106 0.04722547316371967 +ADAPT: 0.0625 0.0625 0.004719202039531842 2.119002305099874 +GFLOW: 0.1387630375188174 0.5607061075767752 0.5368345201426489 2.727593715411787 2.723356271593063 2.366709314388901 2.350623046899389 0.02092527400154888 +ADAPT: 0.138763 0.07626303751881737 0.007381689026071324 1.354703505482429 +GFLOW: 0.2189282206782907 0.3578818300023276 0.3311969856062997 2.870593898467302 2.866535873253456 2.658029501349826 2.641043746696456 0.01376142583907406 +ADAPT: 0.218928 0.08016518315947334 0.003631151142836851 2.753947606870327 +GFLOW: 0.325676598891913 0.216142613638687 0.1881183054358119 2.941407331082634 2.936519350018415 2.826929858524579 2.808140809891487 0.009680913270332671 +ADAPT: 0.325677 0.1067483782136223 0.004684266846803418 2.134805792890318 +GFLOW: 0.4562549003806881 0.1340225814999241 0.108266450767241 2.971378194652041 2.966506606310527 2.90847307168652 2.890439452395144 0.005427745934847398 +ADAPT: 0.456255 0.130578301488775 0.003430935630303189 2.914656839282149 +GFLOW: 0.633452199136845 0.08229254129193055 0.0610076693586727 2.985670478315039 2.98153621595215 2.951670030884185 2.936443810336556 0.002145198376551098 +ADAPT: 0.633452 0.177197298756157 0.003787639840253783 2.640166547442898 +GFLOW: 0.7898137639195856 0.05919563761558863 0.04128823391684992 2.988349628063147 2.985472659890409 2.968141540256848 2.955260248164089 0.0008657837068862899 +ADAPT: 0.789814 0.1563615647827406 0.008585164651795422 1.164800024878811 +GFLOW: 0.8801476788007746 0.05046936757875957 0.03417032433581461 2.991552910704261 2.988742545205744 2.974218103279707 2.962508000665926 0.0004452028331794332 +ADAPT: 0.880148 0.09033391488118898 0.008599978434365446 1.162793613532806 +GFLOW: 0.9703896659353608 0.04379121749740365 0.02887417613134534 2.993403958793609 2.99073569978351 2.978552487615881 2.967854973309751 0.0001749344734665034 +ADAPT: 0.97039 0.09024198713458623 0.006006370243853228 1.664899031196712 +GFLOW: 1 0.04194154668274509 0.0274348058969209 2.99427469462497 2.991508411318257 2.979732171043291 2.969337488056075 0.0001076712428776674 +ADAPT: 1 0.0296103340646392 0.00015349341050008 65.14937655903336 +Number of steps = 10 +Number of rejected steps = 2 +Time to complete flow = 2.866352e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.942119e-01 seconds +exit: Tue Jan 5 19:01:08 2021 + diff --git a/wilson_flow/test_new/wilson_flow_adpt.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_adpt.wilson.1.sample-in new file mode 100644 index 000000000..ce4f25bda --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt.wilson.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_adpt.wilson.1.sample-out new file mode 100644 index 000000000..9322ef97b --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt.wilson.1.sample-out @@ -0,0 +1,69 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:01 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 7.998943e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 2.691746e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.905792 0.879676 2.21651 2.1972 1.61657 1.58347 0.0557441 +ADAPT: 0.0625 0.0625 0.00103211 9.68891 +GFLOW: 0.189079 0.533008 0.508515 2.72229 2.71727 2.37955 2.36232 0.0184883 +ADAPT: 0.189079 0.126579 0.00930747 1.07441 +GFLOW: 0.312241 0.305016 0.277569 2.88853 2.88397 2.7105 2.69226 0.010484 +ADAPT: 0.312241 0.123161 0.0046648 2.14371 +GFLOW: 0.463105 0.171655 0.144234 2.95512 2.95001 2.8677 2.84858 0.00657103 +ADAPT: 0.463105 0.150865 0.00499195 2.00322 +GFLOW: 0.643776 0.101197 0.0775124 2.97993 2.97527 2.93523 2.91825 0.00316599 +ADAPT: 0.643776 0.180671 0.00392557 2.5474 +GFLOW: 0.878186 0.0608037 0.0422015 2.99045 2.98677 2.96711 2.95367 0.00100735 +ADAPT: 0.878186 0.23441 0.00286522 3.49013 +GFLOW: 1 0.0493726 0.032906 2.99289 2.98965 2.97495 2.96307 0.000482842 +ADAPT: 1 0.121814 0.000226299 44.1893 +Number of steps = 7 +Number of rejected steps = 0 +Time to complete flow = 8.409286e-02 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 8.938813e-02 seconds +exit: Tue Jan 5 19:00:01 2021 + diff --git a/wilson_flow/test_new/wilson_flow_adpt.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_adpt.wilson.2.sample-in new file mode 100644 index 000000000..ce4f25bda --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt.wilson.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_adpt.wilson.2.sample-out new file mode 100644 index 000000000..3dfc1b530 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt.wilson.2.sample-out @@ -0,0 +1,69 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:08 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 7.989407e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.181530e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.9057920856915209 0.8796763820494508 2.216509410522774 2.197197056299902 1.616570355489586 1.58347344130154 0.05574407551897611 +ADAPT: 0.0625 0.0625 0.001032095916181361 9.689021963190084 +GFLOW: 0.189079566136834 0.5330063254290119 0.5085142606665809 2.722290099017613 2.717272522951315 2.379554089502183 2.36232191962173 0.01848828122776391 +ADAPT: 0.18908 0.126579566136834 0.009307581649904509 1.074392938589219 +GFLOW: 0.3122410529634178 0.3050158582707601 0.2775686486293933 2.8885290288248 2.88397255919851 2.710503741943249 2.692256813773762 0.01048397749453917 +ADAPT: 0.312241 0.1231614868265838 0.004664779294079845 2.143724144182166 +GFLOW: 0.4631059363957019 0.1716548642658613 0.1442337211189632 2.955120445069396 2.950006642121069 2.867700109279364 2.848584909653975 0.006571006254997598 +ADAPT: 0.463106 0.1508648834322841 0.00499197386563035 2.003215615540342 +GFLOW: 0.643776610852913 0.1011969138211975 0.07751218743658897 2.979925359542488 2.975272286416414 2.935232582097214 2.918253335137282 0.003165963158196718 +ADAPT: 0.643777 0.1806706744572111 0.003925569958451302 2.547400786596898 +GFLOW: 0.8781870943375 0.06080359827001013 0.04220142826857681 2.990449917618641 2.986771000616521 2.96710915776975 2.953672662653165 0.001007336805078151 +ADAPT: 0.878187 0.2344104834845869 0.002865213054923497 3.49014185273807 +GFLOW: 1 0.04937260171838897 0.03290598594763042 2.992888213650807 2.989647291085301 2.974954425343912 2.96307348170519 0.0004828399513138239 +ADAPT: 1 0.1218129056625 0.0002262791389213261 44.1932033490584 +Number of steps = 7 +Number of rejected steps = 0 +Time to complete flow = 5.868578e-02 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 6.438303e-02 seconds +exit: Tue Jan 5 19:01:08 2021 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.1.sample-in new file mode 100644 index 000000000..e87d6d63d --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.1.sample-out new file mode 100644 index 000000000..327f3f02f --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.1.sample-out @@ -0,0 +1,75 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:00 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.1 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_BS +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 8.051395e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 2.679825e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.854382 0.829414 2.37915 2.36573 1.80473 1.77801 0.0474035 +ADAPT: 0.0625 0.0625 0.0010118 9.88338 +GFLOW: 0.18992 0.415819 0.390509 2.82878 2.82601 2.57925 2.56407 0.0182095 +ADAPT: 0.18992 0.12742 0.00633066 1.57961 +GFLOW: 0.322942 0.217398 0.189283 2.91749 2.91661 2.81917 2.80045 0.00935435 +ADAPT: 0.322942 0.133021 0.00791021 1.26419 +GFLOW: 0.431288 0.145619 0.119236 2.94206 2.944 2.89332 2.8751 0.00635583 +ADAPT: 0.431288 0.108346 0.00639348 1.56409 +GFLOW: 0.539493 0.105082 0.0815663 2.93995 2.94832 2.92835 2.91191 0.00388524 +ADAPT: 0.539493 0.108205 0.0075358 1.327 +GFLOW: 0.641222 0.081508 0.0607793 2.94213 2.95345 2.94766 2.93306 0.00243417 +ADAPT: 0.641222 0.101729 0.00749671 1.33392 +GFLOW: 0.747606 0.0647678 0.046687 2.91618 2.93916 2.95806 2.94537 0.00173045 +ADAPT: 0.747606 0.106384 0.00979703 1.02072 +GFLOW: 0.843993 0.054537 0.0385325 2.93561 2.9527 2.96688 2.95557 0.0010434 +ADAPT: 0.843993 0.0963871 0.00799194 1.25126 +GFLOW: 0.942665 0.0465388 0.0322871 2.9376 2.95466 2.97243 2.96236 0.000687721 +ADAPT: 0.942665 0.0986715 0.00801477 1.2477 +GFLOW: 1 0.0431623 0.0296096 2.99359 2.99109 2.97809 2.96837 0.000100566 +ADAPT: 1 0.0573351 0.000518214 19.2971 +Number of steps = 10 +Number of rejected steps = 5 +Time to complete flow = 3.338871e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 3.392401e-01 seconds +exit: Tue Jan 5 19:00:00 2021 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.2.sample-in new file mode 100644 index 000000000..e87d6d63d --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.2.sample-out new file mode 100644 index 000000000..8c44c6e33 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.2.sample-out @@ -0,0 +1,75 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:06 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_BS +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 9.739399e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.062870e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.8543821081090931 0.8294143032164626 2.379153297732387 2.365728299275925 1.804732423553656 1.778009568228787 0.04740354964843416 +ADAPT: 0.0625 0.0625 0.001011798003245868 9.883395665854062 +GFLOW: 0.1899204154148049 0.4158189112768273 0.3905084716747329 2.82878228468181 2.826007008552427 2.579249760791946 2.564066303676889 0.01820951011365494 +ADAPT: 0.18992 0.1274204154148049 0.006330678933848369 1.579609407536496 +GFLOW: 0.3229418199837181 0.217397713351089 0.1892833960823865 2.917485431628525 2.91660963002138 2.819174675900809 2.800445881039798 0.009354360446403972 +ADAPT: 0.322942 0.1330214045689132 0.007910215999285153 1.264187981833075 +GFLOW: 0.4312880803148139 0.1456185466512634 0.1192363830118573 2.942062426330642 2.943998645300422 2.893318714818222 2.875097618538742 0.006355827814719987 +ADAPT: 0.431288 0.1083462603310958 0.006393487846899503 1.5640915005179 +GFLOW: 0.5394929685508356 0.1050822846954147 0.08156627454753153 2.939954030590924 2.948319102874579 2.928354394244353 2.91191470084798 0.003885234380599928 +ADAPT: 0.539493 0.1082048882360217 0.007535799344717837 1.326999239570972 +GFLOW: 0.641221926055499 0.08150798455003649 0.06077932516191891 2.94212908378 2.953448528790339 2.947658043257685 2.933056649592278 0.00243417515692954 +ADAPT: 0.641222 0.1017289575046634 0.007496701414837232 1.333920006498901 +GFLOW: 0.7476063700203542 0.06476778913247201 0.04668702359851508 2.916176308641154 2.939160002863427 2.958062853405519 2.945367276251263 0.001730452805792527 +ADAPT: 0.747606 0.1063844439648552 0.009797040509456574 1.020716408220168 +GFLOW: 0.8439934205484093 0.05453701695462754 0.03853245719863453 2.93560643418932 2.95269578139757 2.966880117996945 2.955568388029734 0.001043396144284228 +ADAPT: 0.843993 0.09638705052805507 0.007991945047814024 1.251259854787818 +GFLOW: 0.9426648606053106 0.04653883611724765 0.03228708608329768 2.937597004981976 2.954661877001631 2.972429857432209 2.962364714569488 0.0006877201373186207 +ADAPT: 0.942665 0.0986714400569013 0.008014767516395051 1.247696827081253 +GFLOW: 1 0.04316226745587198 0.02960955443443196 2.993589530629894 2.991086678262472 2.978094944343573 2.968374422072086 0.0001005644901726803 +ADAPT: 1 0.05733513939468937 0.0005182155946722611 19.29698778425295 +Number of steps = 10 +Number of rejected steps = 5 +Time to complete flow = 3.536539e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 3.614480e-01 seconds +exit: Tue Jan 5 19:01:07 2021 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.1.sample-in new file mode 100644 index 000000000..ce4f25bda --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.1.sample-out new file mode 100644 index 000000000..b5737505c --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:00 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.1 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_BS +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.730919e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 9.012222e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.905813 0.879699 2.21718 2.19787 1.61709 1.58402 0.0557593 +ADAPT: 0.0625 0.0625 0.000305105 32.7756 +GFLOW: 0.252515 0.394062 0.368306 2.82604 2.82317 2.5887 2.57288 0.0164885 +ADAPT: 0.252515 0.190015 0.00681128 1.46815 +GFLOW: 0.457678 0.173829 0.146201 2.9367 2.93461 2.86006 2.84091 0.00638609 +ADAPT: 0.457678 0.205164 0.00652053 1.53362 +GFLOW: 0.639327 0.102557 0.078665 2.95506 2.95646 2.92891 2.91177 0.00335084 +ADAPT: 0.639327 0.181648 0.00651675 1.53451 +GFLOW: 0.816428 0.0688252 0.0490046 2.95187 2.95908 2.95585 2.94141 0.00152367 +ADAPT: 0.816428 0.177101 0.00735989 1.35872 +GFLOW: 1 0.0494375 0.0331527 2.91175 2.93562 2.96599 2.95378 0.00081349 +ADAPT: 1 0.183572 0.0107831 0.927381 +Number of steps = 6 +Number of rejected steps = 2 +Time to complete flow = 6.551790e-02 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 6.672192e-02 seconds +exit: Tue Jan 5 19:00:00 2021 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.2.sample-in new file mode 100644 index 000000000..ce4f25bda --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.2.sample-out new file mode 100644 index 000000000..175b50a33 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:07 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_BS +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 9.121895e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.063108e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.9058132281572296 0.8796992037234977 2.217180550948812 2.197869838719706 1.617090518681119 1.58401604382473 0.05575934074905174 +ADAPT: 0.0625 0.0625 0.0003051000715670042 32.77613128256465 +GFLOW: 0.2525157146801129 0.3940595205757169 0.3683035897692976 2.826036554969603 2.823173857023059 2.588704733221091 2.572877971712322 0.01648846189509281 +ADAPT: 0.252516 0.1900157146801129 0.006811450635019679 1.468116049845102 +GFLOW: 0.4576791300835819 0.1738289709450043 0.1462009845382908 2.936699083419908 2.934610808771165 2.860060993896163 2.840907650667175 0.006386072827915823 +ADAPT: 0.457679 0.2051634154034689 0.006520623659183634 1.533595637882891 +GFLOW: 0.6393270852587887 0.1025567936670745 0.07866495062436649 2.955055330945495 2.956455743735408 2.928905195707536 2.911773994971274 0.003350843817088197 +ADAPT: 0.639327 0.1816479551752068 0.006516791242787131 1.534497519936384 +GFLOW: 0.816427864134861 0.06882516195837721 0.04900462084939212 2.951869088303494 2.959082421028461 2.955846832877499 2.941413272123506 0.001523669457146111 +ADAPT: 0.816428 0.1771007788760723 0.007359935781629628 1.358707507334502 +GFLOW: 1 0.04943750065083356 0.03315273085490399 2.911750219454325 2.935624562976177 2.965993194942641 2.953778163020873 0.0008134907117585562 +ADAPT: 1 0.183572135865139 0.01078307604393198 0.9273791596440941 +Number of steps = 6 +Number of rejected steps = 2 +Time to complete flow = 9.064603e-02 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 9.840178e-02 seconds +exit: Tue Jan 5 19:01:07 2021 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-in new file mode 100644 index 000000000..e87d6d63d --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-out new file mode 100644 index 000000000..9fdd071d9 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-out @@ -0,0 +1,84 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:00 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.0 MBytes per node for lattice +Made lattice +Made nn gathers +0 +-0.53125 +-1.185185194015503 +0.25 +0.8888888955116272 +0.75 +-1 +2 +0 +Integrator = INTEGRATOR_ADAPT_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 7.548332e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 2.679825e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.854375 0.829395 2.37618 2.36268 1.8023 1.77541 0.0472255 +ADAPT: 0.0625 0.0625 0.0047192 2.119 +GFLOW: 0.138763 0.560706 0.536835 2.72759 2.72336 2.36671 2.35062 0.0209253 +ADAPT: 0.138763 0.076263 0.00738167 1.35471 +GFLOW: 0.218928 0.357882 0.331197 2.87059 2.86654 2.65803 2.64104 0.0137614 +ADAPT: 0.218928 0.0801652 0.00363115 2.75395 +GFLOW: 0.325677 0.216143 0.188118 2.94141 2.93652 2.82693 2.80814 0.00968091 +ADAPT: 0.325677 0.106748 0.00468429 2.13479 +GFLOW: 0.456255 0.134023 0.108266 2.97138 2.96651 2.90847 2.89044 0.00542774 +ADAPT: 0.456255 0.130578 0.00343094 2.91465 +GFLOW: 0.633452 0.0822926 0.0610077 2.98567 2.98154 2.95167 2.93644 0.00214519 +ADAPT: 0.633452 0.177197 0.00378754 2.64024 +GFLOW: 0.789816 0.0591954 0.041288 2.98835 2.98547 2.96814 2.95526 0.000865788 +ADAPT: 0.789816 0.156364 0.00858512 1.16481 +GFLOW: 0.88015 0.0504692 0.0341702 2.99155 2.98874 2.97422 2.96251 0.000445196 +ADAPT: 0.88015 0.0903338 0.00859996 1.1628 +GFLOW: 0.970392 0.0437911 0.0288741 2.9934 2.99074 2.97855 2.96786 0.000174927 +ADAPT: 0.970392 0.090242 0.0060064 1.66489 +GFLOW: 1 0.0419416 0.0274348 2.99427 2.99151 2.97973 2.96934 0.000107674 +ADAPT: 1 0.0296079 0.000153453 65.1664 +Number of steps = 10 +Number of rejected steps = 2 +Time to complete flow = 2.637889e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.691021e-01 seconds +exit: Tue Jan 5 19:00:01 2021 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-in new file mode 100644 index 000000000..e87d6d63d --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-out new file mode 100644 index 000000000..da24d4aba --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-out @@ -0,0 +1,84 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:07 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.0 MBytes per node for lattice +Made lattice +Made nn gathers +0 +-0.53125 +-1.185185185185185 +0.25 +0.8888888888888888 +0.75 +-1 +2 +0 +Integrator = INTEGRATOR_ADAPT_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 8.180141e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.056910e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.8543748488315552 0.8293947648705751 2.376179304698458 2.362677101758874 1.802304115569335 1.775411064068106 0.04722547316371967 +ADAPT: 0.0625 0.0625 0.004719202039531842 2.119002305099874 +GFLOW: 0.1387630375188174 0.5607061075767752 0.5368345201426489 2.727593715411787 2.723356271593063 2.366709314388901 2.350623046899389 0.02092527400154888 +ADAPT: 0.138763 0.07626303751881737 0.007381689026071324 1.354703505482429 +GFLOW: 0.2189282206782907 0.3578818300023276 0.3311969856062997 2.870593898467302 2.866535873253456 2.658029501349826 2.641043746696456 0.01376142583907406 +ADAPT: 0.218928 0.08016518315947334 0.003631151142836851 2.753947606870327 +GFLOW: 0.325676598891913 0.216142613638687 0.1881183054358119 2.941407331082634 2.936519350018415 2.826929858524579 2.808140809891487 0.009680913270332671 +ADAPT: 0.325677 0.1067483782136223 0.004684266846803418 2.134805792890318 +GFLOW: 0.4562549003806881 0.1340225814999241 0.108266450767241 2.971378194652041 2.966506606310527 2.90847307168652 2.890439452395144 0.005427745934847398 +ADAPT: 0.456255 0.130578301488775 0.003430935630303189 2.914656839282149 +GFLOW: 0.633452199136845 0.08229254129193055 0.0610076693586727 2.985670478315039 2.98153621595215 2.951670030884185 2.936443810336556 0.002145198376551098 +ADAPT: 0.633452 0.177197298756157 0.003787639840253783 2.640166547442898 +GFLOW: 0.7898137639195856 0.05919563761558863 0.04128823391684992 2.988349628063147 2.985472659890409 2.968141540256848 2.955260248164089 0.0008657837068862899 +ADAPT: 0.789814 0.1563615647827406 0.008585164651795422 1.164800024878811 +GFLOW: 0.8801476788007746 0.05046936757875957 0.03417032433581461 2.991552910704261 2.988742545205744 2.974218103279707 2.962508000665926 0.0004452028331794332 +ADAPT: 0.880148 0.09033391488118898 0.008599978434365446 1.162793613532806 +GFLOW: 0.9703896659353608 0.04379121749740365 0.02887417613134534 2.993403958793609 2.99073569978351 2.978552487615881 2.967854973309751 0.0001749344734665034 +ADAPT: 0.97039 0.09024198713458623 0.006006370243853228 1.664899031196712 +GFLOW: 1 0.04194154668274509 0.0274348058969209 2.99427469462497 2.991508411318257 2.979732171043291 2.969337488056075 0.0001076712428776674 +ADAPT: 1 0.0296103340646392 0.00015349341050008 65.14937655903336 +Number of steps = 10 +Number of rejected steps = 2 +Time to complete flow = 2.901208e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.977202e-01 seconds +exit: Tue Jan 5 19:01:07 2021 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-in new file mode 100644 index 000000000..ce4f25bda --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-out new file mode 100644 index 000000000..301924ed6 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-out @@ -0,0 +1,78 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:01 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.0 MBytes per node for lattice +Made lattice +Made nn gathers +0 +-0.53125 +-1.185185194015503 +0.25 +0.8888888955116272 +0.75 +-1 +2 +0 +Integrator = INTEGRATOR_ADAPT_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.909733e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 5.698204e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.905792 0.879676 2.21651 2.1972 1.61657 1.58347 0.0557441 +ADAPT: 0.0625 0.0625 0.00103211 9.68891 +GFLOW: 0.189079 0.533008 0.508515 2.72229 2.71727 2.37955 2.36232 0.0184883 +ADAPT: 0.189079 0.126579 0.00930747 1.07441 +GFLOW: 0.312241 0.305016 0.277569 2.88853 2.88397 2.7105 2.69226 0.010484 +ADAPT: 0.312241 0.123161 0.0046648 2.14371 +GFLOW: 0.463105 0.171655 0.144234 2.95512 2.95001 2.8677 2.84858 0.00657103 +ADAPT: 0.463105 0.150865 0.00499195 2.00322 +GFLOW: 0.643776 0.101197 0.0775124 2.97993 2.97527 2.93523 2.91825 0.00316599 +ADAPT: 0.643776 0.180671 0.00392557 2.5474 +GFLOW: 0.878186 0.0608037 0.0422015 2.99045 2.98677 2.96711 2.95367 0.00100735 +ADAPT: 0.878186 0.23441 0.00286522 3.49013 +GFLOW: 1 0.0493726 0.032906 2.99289 2.98965 2.97495 2.96307 0.000482842 +ADAPT: 1 0.121814 0.000226299 44.1893 +Number of steps = 7 +Number of rejected steps = 0 +Time to complete flow = 5.745602e-02 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 5.866694e-02 seconds +exit: Tue Jan 5 19:00:01 2021 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-in new file mode 100644 index 000000000..ce4f25bda --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-out new file mode 100644 index 000000000..f837c7d44 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-out @@ -0,0 +1,78 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:07 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.0 MBytes per node for lattice +Made lattice +Made nn gathers +0 +-0.53125 +-1.185185185185185 +0.25 +0.8888888888888888 +0.75 +-1 +2 +0 +Integrator = INTEGRATOR_ADAPT_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 8.060932e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.076937e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.9057920856915209 0.8796763820494508 2.216509410522774 2.197197056299902 1.616570355489586 1.58347344130154 0.05574407551897611 +ADAPT: 0.0625 0.0625 0.001032095916181361 9.689021963190084 +GFLOW: 0.189079566136834 0.5330063254290119 0.5085142606665809 2.722290099017613 2.717272522951315 2.379554089502183 2.36232191962173 0.01848828122776391 +ADAPT: 0.18908 0.126579566136834 0.009307581649904509 1.074392938589219 +GFLOW: 0.3122410529634178 0.3050158582707601 0.2775686486293933 2.8885290288248 2.88397255919851 2.710503741943249 2.692256813773762 0.01048397749453917 +ADAPT: 0.312241 0.1231614868265838 0.004664779294079845 2.143724144182166 +GFLOW: 0.4631059363957019 0.1716548642658613 0.1442337211189632 2.955120445069396 2.950006642121069 2.867700109279364 2.848584909653975 0.006571006254997598 +ADAPT: 0.463106 0.1508648834322841 0.00499197386563035 2.003215615540342 +GFLOW: 0.643776610852913 0.1011969138211975 0.07751218743658897 2.979925359542488 2.975272286416414 2.935232582097214 2.918253335137282 0.003165963158196718 +ADAPT: 0.643777 0.1806706744572111 0.003925569958451302 2.547400786596898 +GFLOW: 0.8781870943375 0.06080359827001013 0.04220142826857681 2.990449917618641 2.986771000616521 2.96710915776975 2.953672662653165 0.001007336805078151 +ADAPT: 0.878187 0.2344104834845869 0.002865213054923497 3.49014185273807 +GFLOW: 1 0.04937260171838897 0.03290598594763042 2.992888213650807 2.989647291085301 2.974954425343912 2.96307348170519 0.0004828399513138239 +ADAPT: 1 0.1218129056625 0.0002262791389213261 44.1932033490584 +Number of steps = 7 +Number of rejected steps = 0 +Time to complete flow = 9.189200e-02 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 9.943485e-02 seconds +exit: Tue Jan 5 19:01:07 2021 + diff --git a/wilson_flow/test_new/wilson_flow_bbb.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_bbb.symanzik.1.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb.symanzik.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_bbb.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_bbb.symanzik.1.sample-out new file mode 100644 index 000000000..fbbeae8b8 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:02 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_BBB +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.690388e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 5.483627e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.853779 0.828724 2.37564 2.36228 1.80287 1.77599 0.0467978 +GFLOW: 0.125 0.606984 0.5833 2.68457 2.67971 2.28986 2.273 0.0229981 +GFLOW: 0.1875 0.424309 0.398718 2.82861 2.82473 2.56817 2.5518 0.0151546 +GFLOW: 0.25 0.305523 0.27797 2.89893 2.89452 2.72345 2.70559 0.012355 +GFLOW: 0.3125 0.22895 0.200855 2.93559 2.93074 2.81254 2.79379 0.010112 +GFLOW: 0.375 0.178024 0.150554 2.95611 2.95112 2.86619 2.84738 0.00788574 +GFLOW: 0.4375 0.142764 0.116568 2.96842 2.96351 2.90024 2.88197 0.00591766 +GFLOW: 0.5 0.117404 0.0927609 2.97627 2.97155 2.92293 2.90553 0.00433516 +GFLOW: 0.5625 0.0985616 0.0755316 2.98155 2.97709 2.93872 2.92233 0.00312793 +GFLOW: 0.625 0.0841808 0.0627107 2.98525 2.98106 2.95011 2.93476 0.00223027 +GFLOW: 0.6875 0.0729592 0.0529437 2.98794 2.98402 2.95857 2.94422 0.00156929 +GFLOW: 0.75 0.0640388 0.0453545 2.98995 2.98629 2.96501 2.95161 0.00108291 +GFLOW: 0.8125 0.0568342 0.039357 2.99149 2.98807 2.97002 2.95748 0.000723524 +GFLOW: 0.875 0.0509336 0.034547 2.99269 2.98949 2.97398 2.96222 0.000456387 +GFLOW: 0.9375 0.0460404 0.0306387 2.99364 2.99065 2.97716 2.96611 0.000256592 +GFLOW: 1 0.0419362 0.0274254 2.99441 2.9916 2.97974 2.96934 0.000106452 +Number of steps = 16 +Time to complete flow = 5.497410e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 5.507300e-01 seconds +exit: Tue Jan 5 19:00:02 2021 + diff --git a/wilson_flow/test_new/wilson_flow_bbb.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_bbb.symanzik.2.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb.symanzik.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_bbb.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_bbb.symanzik.2.sample-out new file mode 100644 index 000000000..d413ce256 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:08 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_BBB +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.790524e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.179146e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.8537791928208965 0.8287240968808836 2.375643633023483 2.362284203906573 1.802873881578759 1.775991399513947 0.04679780936959217 +GFLOW: 0.125 0.6069838542621798 0.5832995093312132 2.68457098687868 2.679706297840479 2.289857585933801 2.273001423386724 0.02299809809596206 +GFLOW: 0.1875 0.4243094247936046 0.3987181553572725 2.828607830906286 2.824724960976151 2.568168155910834 2.551804254685677 0.0151546079920649 +GFLOW: 0.25 0.305522857389336 0.2779703918128796 2.898929695693953 2.894515187472412 2.723444999987568 2.705594215766336 0.01235503766884978 +GFLOW: 0.3125 0.2289502587838233 0.2008554538183179 2.935588354107676 2.930741040478668 2.812543936127359 2.79379005599356 0.01011202627439342 +GFLOW: 0.375 0.1780240123666937 0.1505535433289596 2.956114189099194 2.951123741355408 2.866193247385862 2.847384285168926 0.007885753260771946 +GFLOW: 0.4375 0.1427636470905618 0.1165681002662142 2.968424324207035 2.963506347317284 2.900237792597339 2.881970610176726 0.005917666636974396 +GFLOW: 0.5 0.117403702179087 0.09276085673695628 2.976274142220278 2.971553825089231 2.922931011632822 2.905534611909141 0.004335163536557374 +GFLOW: 0.5625 0.09856155770745485 0.075531647203344 2.981548173427214 2.977085350744979 2.938720534485372 2.922335205591073 0.003127933934238648 +GFLOW: 0.625 0.08418084313928531 0.06271070937095113 2.985248130432501 2.981062249006399 2.950109262308255 2.934761354771757 0.00223028226019094 +GFLOW: 0.6875 0.07295926410213203 0.05294374002975917 2.987936879102621 2.984024818511024 2.9585715388701 2.944225771897889 0.001569295005260621 +GFLOW: 0.75 0.0640388616126613 0.04535456563813499 2.989947518151962 2.986294817370721 2.965015222026336 2.951607065753264 0.00108290581209524 +GFLOW: 0.8125 0.05683419054264106 0.03935701103809086 2.991486688070039 2.988074096632298 2.970022763717392 2.957476996976707 0.0007235266085676951 +GFLOW: 0.875 0.05093361906063142 0.03454701239412665 2.992688069522625 2.989495132918531 2.973981810341561 2.962222449984895 0.0004563829219921707 +GFLOW: 0.9375 0.04604041073010706 0.03063872534515245 2.993641360825576 2.99064824620643 2.977158733915813 2.966113910241789 0.000256590732256303 +GFLOW: 1 0.04193618824726883 0.02742541248477937 2.994408659258282 2.991596987481982 2.979741640651542 2.969345652558458 0.0001064464610807303 +Number of steps = 16 +Time to complete flow = 6.469951e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 6.483922e-01 seconds +exit: Tue Jan 5 19:01:09 2021 + diff --git a/wilson_flow/test_new/wilson_flow_bbb.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_bbb.wilson.1.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb.wilson.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_bbb.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_bbb.wilson.1.sample-out new file mode 100644 index 000000000..6aa06b470 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:02 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_BBB +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 7.810593e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 2.651215e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.905712 0.879582 2.21652 2.19723 1.61673 1.58364 0.0556851 +GFLOW: 0.125 0.711522 0.687046 2.53049 2.52146 2.05962 2.03792 0.0303339 +GFLOW: 0.1875 0.536229 0.511727 2.71689 2.71185 2.37236 2.35494 0.0177949 +GFLOW: 0.25 0.4015 0.375446 2.82503 2.82068 2.57821 2.56082 0.0125149 +GFLOW: 0.3125 0.304737 0.277219 2.88791 2.88327 2.71015 2.69173 0.0101717 +GFLOW: 0.375 0.236432 0.20835 2.92517 2.9202 2.79476 2.77562 0.00857894 +GFLOW: 0.4375 0.187821 0.160065 2.94791 2.94279 2.84995 2.8307 0.00709562 +GFLOW: 0.5 0.152552 0.125735 2.96229 2.9572 2.88689 2.86802 0.00569324 +GFLOW: 0.5625 0.126374 0.10084 2.97173 2.96679 2.91233 2.89419 0.00445124 +GFLOW: 0.625 0.106506 0.0824039 2.97816 2.97344 2.93037 2.91312 0.00341284 +GFLOW: 0.6875 0.0911154 0.0684726 2.98269 2.97822 2.94351 2.92723 0.00257754 +GFLOW: 0.75 0.0789764 0.05775 2.98597 2.98177 2.95332 2.93802 0.00192097 +GFLOW: 0.8125 0.0692496 0.0493602 2.98841 2.98447 2.9608 2.94644 0.00141127 +GFLOW: 0.875 0.0613464 0.0426987 2.99027 2.98658 2.9666 2.95314 0.00101774 +GFLOW: 0.9375 0.054845 0.0373395 2.99171 2.98826 2.97119 2.95855 0.000714281 +GFLOW: 1 0.0494366 0.0329769 2.99285 2.98961 2.97487 2.96299 0.000480002 +Number of steps = 16 +Time to complete flow = 1.742561e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.789451e-01 seconds +exit: Tue Jan 5 19:00:02 2021 + diff --git a/wilson_flow/test_new/wilson_flow_bbb.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_bbb.wilson.2.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb.wilson.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_bbb.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_bbb.wilson.2.sample-out new file mode 100644 index 000000000..e32c2c53d --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:09 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_BBB +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 8.580685e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.055002e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.905711924174415 0.8795823886599846 2.216518730478592 2.197233362651558 1.616726756610125 1.583637066719202 0.05568514304979461 +GFLOW: 0.125 0.711522423129211 0.6870460810513032 2.530494197172282 2.521456327165419 2.05962269906663 2.037915268991382 0.03033382914887884 +GFLOW: 0.1875 0.5362286669718576 0.5117265709882266 2.716889345108934 2.711849683704697 2.372359706981394 2.354943609431932 0.01779490527571135 +GFLOW: 0.25 0.4014997224577447 0.3754455135200294 2.825031674764043 2.820678004917023 2.578210632975761 2.5608244033032 0.01251496373197063 +GFLOW: 0.3125 0.3047369163282934 0.277219136930123 2.887910678848256 2.883274388776195 2.710145845893708 2.691725501676013 0.01017171540358322 +GFLOW: 0.375 0.2364323857956322 0.2083498594877199 2.925167176818857 2.920201932855317 2.794757958646183 2.775620559728354 0.008578980858966811 +GFLOW: 0.4375 0.1878210922758932 0.1600650393507442 2.947908390616641 2.942792842415077 2.849951108399702 2.83069943883018 0.007095627402219638 +GFLOW: 0.5 0.1525516723985905 0.1257352414542339 2.962291638894631 2.957202052386899 2.886887591095865 2.868024563695418 0.005693234493227321 +GFLOW: 0.5625 0.126374371132329 0.1008404245992138 2.971734365965625 2.966793954498745 2.912331039974763 2.894185518026199 0.004451233647911503 +GFLOW: 0.625 0.1065060798295703 0.08240395227899848 2.978162350240985 2.973443261497689 2.930370963489944 2.913122411900289 0.0034128375124081 +GFLOW: 0.6875 0.09111545039296982 0.0684725989562498 2.982686980387196 2.978223839733353 2.943511612916111 2.927233817706963 0.002577524393841613 +GFLOW: 0.75 0.07897644663047985 0.05775006116884802 2.985968370536724 2.981771333020356 2.953318875645929 2.93801828262259 0.001920960766121068 +GFLOW: 0.8125 0.06924961124169626 0.04936024268140615 2.988410984643498 2.984475545827949 2.960796662667578 2.946440355104535 0.001411271633914374 +GFLOW: 0.875 0.06134645016697105 0.0426986777399866 2.99027060701742 2.986584233347069 2.966605840715741 2.953140197108692 0.001017745789371597 +GFLOW: 0.9375 0.05484502628887294 0.03733954501336152 2.991714064983201 2.988260390791079 2.97119299631294 2.958555401455756 0.0007142713288834686 +GFLOW: 1 0.04943660827674597 0.03297690098381909 2.992853388258293 2.989614736783057 2.974867507444884 2.962993323511122 0.0004799970003007463 +Number of steps = 16 +Time to complete flow = 2.285290e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.351310e-01 seconds +exit: Tue Jan 5 19:01:09 2021 + diff --git a/wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-out new file mode 100644 index 000000000..5bf4cf23a --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-out @@ -0,0 +1,73 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:03 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +0 +-0.5555555820465088 +-1.1953125 +0.3333333432674408 +0.9375 +0.5333333611488342 +Integrator = INTEGRATOR_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.718998e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 5.507469e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.854372 0.829399 2.37781 2.36435 1.80364 1.77682 0.0473395 +GFLOW: 0.125 0.607062 0.583412 2.6861 2.68128 2.29102 2.2743 0.0233457 +GFLOW: 0.1875 0.424171 0.398606 2.8293 2.82546 2.56892 2.55265 0.0153113 +GFLOW: 0.25 0.305386 0.277847 2.89924 2.89484 2.72386 2.70605 0.0124034 +GFLOW: 0.3125 0.228858 0.200768 2.93573 2.93089 2.81276 2.79402 0.0101269 +GFLOW: 0.375 0.177969 0.150499 2.95618 2.95119 2.86631 2.8475 0.00789145 +GFLOW: 0.4375 0.142733 0.116536 2.96846 2.96354 2.9003 2.88203 0.0059202 +GFLOW: 0.5 0.117387 0.0927417 2.97629 2.97157 2.92296 2.90557 0.00433641 +GFLOW: 0.5625 0.0985524 0.0755203 2.98156 2.97709 2.93874 2.92235 0.00312867 +GFLOW: 0.625 0.0841759 0.0627039 2.98525 2.98107 2.95012 2.93477 0.00223081 +GFLOW: 0.6875 0.0729567 0.0529397 2.98794 2.98403 2.95858 2.94423 0.00156972 +GFLOW: 0.75 0.0640375 0.0453522 2.98995 2.9863 2.96502 2.95161 0.00108325 +GFLOW: 0.8125 0.0568335 0.0393556 2.99149 2.98807 2.97002 2.95748 0.000723803 +GFLOW: 0.875 0.0509333 0.0345462 2.99269 2.9895 2.97398 2.96222 0.000456608 +GFLOW: 0.9375 0.0460403 0.0306383 2.99364 2.99065 2.97716 2.96611 0.000256768 +GFLOW: 1 0.0419362 0.0274252 2.99441 2.9916 2.97974 2.96935 0.000106591 +Number of steps = 16 +Time to complete flow = 2.946661e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.956889e-01 seconds +exit: Tue Jan 5 19:00:03 2021 + diff --git a/wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-out new file mode 100644 index 000000000..f88853dd9 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-out @@ -0,0 +1,73 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:09 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +0 +-0.5555555555555556 +-1.1953125 +0.3333333333333333 +0.9375 +0.5333333333333333 +Integrator = INTEGRATOR_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 8.640289e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.058102e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.8543716615679702 0.8293993621997977 2.377809180202705 2.364347685635683 1.803642126471845 1.776821884930114 0.04733953641862654 +GFLOW: 0.125 0.6070615472535063 0.583412072201284 2.686098382891526 2.681283326688696 2.291021967849539 2.274301161866702 0.02334573817033725 +GFLOW: 0.1875 0.4241706914514222 0.3986060180426955 2.829300413438675 2.825462924255241 2.568918221116132 2.552645104881279 0.01531132161373118 +GFLOW: 0.25 0.3053858820854688 0.2778474485193334 2.899238468681683 2.894840698370923 2.723858811564664 2.706045853573701 0.01240347246005401 +GFLOW: 0.3125 0.2288582261341722 0.2007684723952321 2.935730159387276 2.930887239533776 2.812763611841593 2.794022708762464 0.01012687646871752 +GFLOW: 0.375 0.1779694179823419 0.1504993077902839 2.956181591113007 2.9511916766996 2.866309372197026 2.84750360927066 0.007891454800069175 +GFLOW: 0.4375 0.1427328930674051 0.116535665366636 2.968457577037361 2.963539059782639 2.900299946052304 2.882032251002508 0.005920198714325913 +GFLOW: 0.5 0.1173867847953298 0.09274166168163774 2.976291182093405 2.971570097308534 2.922964953683221 2.905566815907157 0.004336412982742761 +GFLOW: 0.5625 0.09855237275379003 0.07552027500117037 2.981557229786773 2.977093679973887 2.938739490105734 2.922352242355589 0.00312866864476507 +GFLOW: 0.625 0.08417591263426089 0.06270394516977144 2.985253107810475 2.981066621075649 2.950120079240035 2.934770477426801 0.002230804630514611 +GFLOW: 0.6875 0.07295665862272881 0.052939707388424 2.987939697265004 2.984027165216425 2.958577830094577 2.94423070888798 0.001569708868035846 +GFLOW: 0.75 0.06403752003631237 0.04535216697410249 2.989949155349164 2.986296102503258 2.965018938575671 2.951609760376023 0.00108324388645091 +GFLOW: 0.8125 0.05683353000498685 0.03935559830687298 2.991487660101361 2.988074813591431 2.970024984808129 2.957478477028555 0.0007238017573907747 +GFLOW: 0.875 0.05093331922520593 0.0345461986078126 2.992688657026303 2.989495540173986 2.973983146758902 2.962223266764893 0.000456604278112681 +GFLOW: 0.9375 0.04604029570896043 0.03063827683561837 2.993641720857155 2.990648481963264 2.977159538622672 2.96611436320869 0.0002567670485341259 +GFLOW: 1 0.04193616190544152 0.0274251867371391 2.994408881949181 2.991597126998047 2.979742121488842 2.969345906113011 0.0001065860117359313 +Number of steps = 16 +Time to complete flow = 3.672922e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 3.739510e-01 seconds +exit: Tue Jan 5 19:01:10 2021 + diff --git a/wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-out new file mode 100644 index 000000000..5df57ce57 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-out @@ -0,0 +1,73 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:03 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +0 +-0.5555555820465088 +-1.1953125 +0.3333333432674408 +0.9375 +0.5333333611488342 +Integrator = INTEGRATOR_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 7.498264e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 2.670288e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.905807 0.879692 2.21687 2.19756 1.61685 1.58376 0.0557657 +GFLOW: 0.125 0.711569 0.6871 2.531 2.52195 2.05996 2.03827 0.0304218 +GFLOW: 0.1875 0.536191 0.511696 2.7173 2.71227 2.37274 2.35535 0.0178719 +GFLOW: 0.25 0.401423 0.375377 2.8253 2.82096 2.57851 2.56115 0.0125642 +GFLOW: 0.3125 0.30466 0.277148 2.88807 2.88345 2.71036 2.69196 0.010196 +GFLOW: 0.375 0.236371 0.20829 2.92526 2.9203 2.7949 2.77577 0.00859002 +GFLOW: 0.4375 0.187776 0.16002 2.94797 2.94285 2.85004 2.83079 0.00710104 +GFLOW: 0.5 0.152521 0.125703 2.96233 2.95724 2.88695 2.86808 0.00569615 +GFLOW: 0.5625 0.126353 0.100818 2.97175 2.96681 2.91237 2.89422 0.00445287 +GFLOW: 0.625 0.106492 0.0823884 2.97817 2.97346 2.9304 2.91315 0.00341375 +GFLOW: 0.6875 0.0911056 0.0684617 2.98269 2.97823 2.94353 2.92725 0.00257803 +GFLOW: 0.75 0.0789696 0.0577424 2.98597 2.98178 2.95333 2.93803 0.00192125 +GFLOW: 0.8125 0.0692448 0.0493548 2.98841 2.98448 2.9608 2.94645 0.00141143 +GFLOW: 0.875 0.061343 0.0426947 2.99027 2.98659 2.96661 2.95314 0.00101783 +GFLOW: 0.9375 0.0548425 0.0373367 2.99172 2.98826 2.9712 2.95856 0.000714324 +GFLOW: 1 0.0494347 0.0329748 2.99285 2.98962 2.97487 2.963 0.000480026 +Number of steps = 16 +Time to complete flow = 1.344450e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.391628e-01 seconds +exit: Tue Jan 5 19:00:03 2021 + diff --git a/wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-out new file mode 100644 index 000000000..0cae898f5 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-out @@ -0,0 +1,73 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:10 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +0 +-0.5555555555555556 +-1.1953125 +0.3333333333333333 +0.9375 +0.5333333333333333 +Integrator = INTEGRATOR_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.769066e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.169609e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.9058072391974819 0.8796920652115094 2.216872106002637 2.197559518115146 1.616847827366594 1.583758555648904 0.05576565378232661 +GFLOW: 0.125 0.7115692342782103 0.6871003830707063 2.531003921693941 2.521953224719846 2.059964054371706 2.038270034128876 0.03042179674864214 +GFLOW: 0.1875 0.5361910888698285 0.5116960585512139 2.717300000458885 2.712270332678739 2.372736130523307 2.355351165557984 0.01787192950996011 +GFLOW: 0.25 0.4014234445559888 0.37537722490906 2.825300399295606 2.820959498594903 2.578513274566013 2.561154794805836 0.01256425564609647 +GFLOW: 0.3125 0.3046604847132983 0.2771479599860875 2.888074248463761 2.883445568951391 2.710360103275456 2.69195592912871 0.01019596195218075 +GFLOW: 0.375 0.2363709050918768 0.2082904779135255 2.925264233992292 2.920302238841608 2.794900908124411 2.775770774464101 0.008590038406524813 +GFLOW: 0.4375 0.1877762889021976 0.1600203275071545 2.947965571682113 2.942850972534359 2.850043720718725 2.830794461235618 0.0071010425032999 +GFLOW: 0.5 0.1525205240119165 0.1257032287546334 2.962325432423077 2.957235820782579 2.886946867918927 2.86808401887208 0.005696142737488299 +GFLOW: 0.5625 0.1263531405285459 0.1008180134556078 2.971754543635519 2.966813778451497 2.912368952969238 2.894222736813651 0.004452861462909364 +GFLOW: 0.625 0.1064916610067134 0.08238836419944108 2.978174584965453 2.973455087309061 2.930395384421841 2.913145902943409 0.003413749414388859 +GFLOW: 0.6875 0.09110559193835804 0.06846172450886191 2.982694540955041 2.978231036448013 2.943527538240369 2.927248850907649 0.002578029412265038 +GFLOW: 0.75 0.07896961546080462 0.05774240965332751 2.985973143240852 2.981775813517866 2.953329425553127 2.93802807788415 0.001921238508420313 +GFLOW: 0.8125 0.06924479396469148 0.04935479451497764 2.988414066536949 2.984478405196604 2.960803777236457 2.946446872824913 0.00141142500240056 +GFLOW: 0.875 0.06134298487857923 0.04269474465683353 2.990272643992486 2.98658610629446 2.966610730409217 2.95314463471094 0.001017831766673956 +GFLOW: 0.9375 0.05484248118210697 0.0373366634841456 2.991715443133546 2.988261650798499 2.971196422806157 2.958558496229756 0.0007143205679203317 +GFLOW: 1 0.04943470001559129 0.03297475761403763 2.992854342352627 2.989615607391197 2.974869955652791 2.962995534693379 0.0004800257456124206 +Number of steps = 16 +Time to complete flow = 1.236310e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.250379e-01 seconds +exit: Tue Jan 5 19:01:10 2021 + diff --git a/wilson_flow/test_new/wilson_flow_ck.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_ck.symanzik.1.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck.symanzik.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_ck.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_ck.symanzik.1.sample-out new file mode 100644 index 000000000..20d6e09a0 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:03 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_CK +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 8.020401e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 2.660751e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.853802 0.828745 2.37573 2.36237 1.80293 1.77604 0.0468074 +GFLOW: 0.125 0.606994 0.58331 2.68456 2.6797 2.28985 2.273 0.0230022 +GFLOW: 0.1875 0.424321 0.39873 2.82859 2.82471 2.56815 2.55178 0.0151542 +GFLOW: 0.25 0.305533 0.277981 2.89892 2.89451 2.72343 2.70558 0.0123547 +GFLOW: 0.3125 0.228958 0.200863 2.93558 2.93074 2.81253 2.79378 0.0101122 +GFLOW: 0.375 0.178029 0.150559 2.95611 2.95112 2.86619 2.84738 0.007886 +GFLOW: 0.4375 0.142767 0.116572 2.96842 2.9635 2.90023 2.88197 0.00591784 +GFLOW: 0.5 0.117406 0.0927635 2.97627 2.97155 2.92293 2.90553 0.00433525 +GFLOW: 0.5625 0.0985634 0.0755336 2.98155 2.97708 2.93872 2.92233 0.00312798 +GFLOW: 0.625 0.0841822 0.0627121 2.98525 2.98106 2.95011 2.93476 0.00223029 +GFLOW: 0.6875 0.0729603 0.0529448 2.98794 2.98402 2.95857 2.94422 0.00156929 +GFLOW: 0.75 0.0640397 0.0453554 2.98995 2.98629 2.96501 2.9516 0.0010829 +GFLOW: 0.8125 0.0568348 0.0393576 2.99149 2.98807 2.97002 2.95747 0.000723511 +GFLOW: 0.875 0.0509342 0.0345475 2.99269 2.98949 2.97398 2.96222 0.000456365 +GFLOW: 0.9375 0.0460408 0.0306391 2.99364 2.99065 2.97716 2.96611 0.000256573 +GFLOW: 1 0.0419366 0.0274257 2.99441 2.9916 2.97974 2.96934 0.000106434 +Number of steps = 16 +Time to complete flow = 4.541051e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 4.587340e-01 seconds +exit: Tue Jan 5 19:00:04 2021 + diff --git a/wilson_flow/test_new/wilson_flow_ck.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_ck.symanzik.2.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck.symanzik.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_ck.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_ck.symanzik.2.sample-out new file mode 100644 index 000000000..d33aa4fe3 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:10 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_CK +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 8.201599e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.054049e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.8538024171258738 0.8287454255568873 2.375733022008848 2.362371644705775 1.802929097356299 1.776043623868389 0.0468073501846351 +GFLOW: 0.125 0.6069941510183514 0.5833098845606514 2.684563925459105 2.679701464912458 2.289851471791427 2.272996229013717 0.02300219716150606 +GFLOW: 0.1875 0.424321004795519 0.3987304158926558 2.828593317998969 2.824709987753531 2.568148704269233 2.551783724665988 0.01515419493966593 +GFLOW: 0.25 0.3055327273438593 0.2779807227753652 2.898920737672523 2.894505829080569 2.723429892543532 2.705578489524143 0.01235474209363432 +GFLOW: 0.3125 0.2289575315576213 0.2008630569907255 2.935583341192662 2.930735936503493 2.812533996370485 2.793780019436992 0.01011226675170361 +GFLOW: 0.375 0.178029134095559 0.1505588994720508 2.956111354612482 2.951120928835126 2.866186898123232 2.847378018371787 0.007886034979185018 +GFLOW: 0.4375 0.1427672476896437 0.1165718605844971 2.968422654714486 2.9635047204105 2.900233682104328 2.881966611153967 0.005917863197937137 +GFLOW: 0.5 0.1174062773232116 0.09276353093745429 2.976273108570453 2.971552828369528 2.922928273276621 2.905531966803748 0.004335281869208479 +GFLOW: 0.5625 0.09856344486122985 0.07553358372134206 2.981547501339596 2.977084704802347 2.93871865127985 2.922333385508605 0.003127998093553576 +GFLOW: 0.625 0.08418226207375464 0.06271213815700305 2.985247674089315 2.981061808455666 2.950107927956557 2.934760053620236 0.002230312493979359 +GFLOW: 0.6875 0.07296035722837727 0.05294481298724335 2.987936557791267 2.984024504384918 2.958570568298017 2.944224809068439 0.001569305690545583 +GFLOW: 0.75 0.06403972244055553 0.04535538460825249 2.98994728507692 2.986294584793946 2.965014499964871 2.951606331556511 0.00108290622599463 +GFLOW: 0.8125 0.05683488178982769 0.03935764560905165 2.991486514808554 2.9880739189306 2.970022215980307 2.957476422546556 0.0007235222562663588 +GFLOW: 0.875 0.05093418380447465 0.03454751102613438 2.992687938055619 2.989494993537468 2.973981387679876 2.962221990588796 0.0004563768151359079 +GFLOW: 0.9375 0.04604087926300007 0.03063912237458566 2.993641259296205 2.99064813445157 2.977158402728709 2.966113535860531 0.0002565843724865501 +GFLOW: 1 0.0419365823466555 0.02742573261684322 2.994408579617042 2.991596896189359 2.979741377472791 2.969345342434051 0.0001064405011650979 +Number of steps = 16 +Time to complete flow = 5.655839e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 5.721772e-01 seconds +exit: Tue Jan 5 19:01:11 2021 + diff --git a/wilson_flow/test_new/wilson_flow_ck.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_ck.wilson.1.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck.wilson.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_ck.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_ck.wilson.1.sample-out new file mode 100644 index 000000000..493911451 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:04 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_CK +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.680851e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 5.602837e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.905716 0.879587 2.21653 2.19725 1.61673 1.58364 0.0556872 +GFLOW: 0.125 0.711525 0.687048 2.5305 2.52146 2.05963 2.03792 0.0303356 +GFLOW: 0.1875 0.53623 0.511728 2.71689 2.71185 2.37236 2.35494 0.0177958 +GFLOW: 0.25 0.401502 0.375447 2.82503 2.82068 2.57821 2.56082 0.0125149 +GFLOW: 0.3125 0.304739 0.277221 2.88791 2.88327 2.71014 2.69172 0.0101715 +GFLOW: 0.375 0.236434 0.208351 2.92517 2.9202 2.79476 2.77562 0.00857887 +GFLOW: 0.4375 0.187822 0.160066 2.94791 2.94279 2.84995 2.8307 0.0070956 +GFLOW: 0.5 0.152553 0.125736 2.96229 2.9572 2.88689 2.86802 0.00569323 +GFLOW: 0.5625 0.126375 0.100841 2.97173 2.96679 2.91233 2.89418 0.00445123 +GFLOW: 0.625 0.106507 0.0824045 2.97816 2.97344 2.93037 2.91312 0.00341285 +GFLOW: 0.6875 0.0911159 0.068473 2.98269 2.97822 2.94351 2.92723 0.00257753 +GFLOW: 0.75 0.0789768 0.0577504 2.98597 2.98177 2.95332 2.93802 0.00192096 +GFLOW: 0.8125 0.0692499 0.0493605 2.98841 2.98447 2.9608 2.94644 0.00141127 +GFLOW: 0.875 0.0613466 0.0426989 2.99027 2.98658 2.9666 2.95314 0.00101775 +GFLOW: 0.9375 0.0548452 0.0373397 2.99171 2.98826 2.97119 2.95855 0.000714273 +GFLOW: 1 0.0494367 0.032977 2.99285 2.98961 2.97487 2.96299 0.000480004 +Number of steps = 16 +Time to complete flow = 1.523640e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.533720e-01 seconds +exit: Tue Jan 5 19:00:04 2021 + diff --git a/wilson_flow/test_new/wilson_flow_ck.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_ck.wilson.2.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck.wilson.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_ck.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_ck.wilson.2.sample-out new file mode 100644 index 000000000..d73ac37d0 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:11 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_CK +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 8.158684e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.056194e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.9057161062336272 0.8795864854631501 2.216532461684175 2.197245946658469 1.616733492229816 1.583642874136251 0.05568724694142022 +GFLOW: 0.125 0.7115246856116612 0.687048119754271 2.53049989731755 2.521462604861131 2.059627046693099 2.037920062258599 0.03033557243909978 +GFLOW: 0.1875 0.5362303344775158 0.5117283787417388 2.716888287477472 2.711849173315535 2.372358588909376 2.354942969493995 0.01779575119379141 +GFLOW: 0.25 0.4015015978634898 0.3754474827238493 2.825029138613603 2.820675513545712 2.578207504767697 2.560821192323999 0.01251490755186715 +GFLOW: 0.3125 0.3047387949957674 0.2772210084303621 2.887908496914991 2.883272107460986 2.710142720718046 2.691722147996936 0.01017151912381811 +GFLOW: 0.375 0.2364340280154606 0.2083514682131738 2.925165620115127 2.920200299668791 2.794755431524462 2.775617869985821 0.008578906639404272 +GFLOW: 0.4375 0.1878224166884487 0.1600663345476213 2.947907350544321 2.942791764507341 2.849949230406613 2.830697474240983 0.007095628498215998 +GFLOW: 0.5 0.1525526974101973 0.1257362444486345 2.962290960295656 2.957201358503971 2.886886247246878 2.868023177580902 0.005693255426877902 +GFLOW: 0.5625 0.126375151434434 0.1008411868027363 2.971733924110705 2.966793507196958 2.912330090891356 2.894184547334724 0.004451253866303219 +GFLOW: 0.625 0.1065066730089616 0.08240452839745217 2.978162059326774 2.973442968511344 2.93037029217101 2.913121727139801 0.003412852889236642 +GFLOW: 0.6875 0.09111590473230985 0.06847303572394633 2.982686785173154 2.978223643084835 2.943511133174177 2.92723332691971 0.002577535334270231 +GFLOW: 0.75 0.07897679896874556 0.05775039489489908 2.985968236454973 2.981771197168751 2.953318527610918 2.938017923560914 0.001920968387524663 +GFLOW: 0.8125 0.06924988849572515 0.04936050034757671 2.988410890226512 2.984475449079231 2.960796405786113 2.946440086445061 0.001411276916941563 +GFLOW: 0.875 0.06134667165981911 0.04269887901289016 2.990270538864177 2.986584162356692 2.966605647702595 2.953139991515951 0.001017749471620342 +GFLOW: 0.9375 0.0548452058492109 0.03733970414687345 2.991714014616549 2.988260337223827 2.971192848733542 2.958555240730743 0.0007142739353339791 +GFLOW: 1 0.04943675585547579 0.03297702832885498 2.992853350217406 2.989614695326577 2.974867392713423 2.962993195380845 0.0004799988896040288 +Number of steps = 16 +Time to complete flow = 2.044120e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.110310e-01 seconds +exit: Tue Jan 5 19:01:11 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.1.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.1.sample-out new file mode 100644 index 000000000..426fc9e56 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:04 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.688004e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 5.507469e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.854382 0.829414 2.37915 2.36573 1.80473 1.77801 0.0474035 +GFLOW: 0.125 0.606902 0.583251 2.68668 2.68188 2.29169 2.27503 0.0235038 +GFLOW: 0.1875 0.424056 0.398488 2.82952 2.82568 2.56922 2.55296 0.015366 +GFLOW: 0.25 0.30533 0.277788 2.89932 2.89492 2.72399 2.70617 0.012416 +GFLOW: 0.3125 0.228836 0.200744 2.93576 2.93091 2.81281 2.79407 0.0101287 +GFLOW: 0.375 0.177964 0.150491 2.95619 2.9512 2.86633 2.84752 0.0078898 +GFLOW: 0.4375 0.142734 0.116535 2.96846 2.96354 2.90031 2.88204 0.00591715 +GFLOW: 0.5 0.11739 0.0927431 2.97629 2.97157 2.92297 2.90557 0.00433296 +GFLOW: 0.5625 0.0985561 0.0755224 2.98156 2.97709 2.93874 2.92235 0.00312535 +GFLOW: 0.625 0.0841795 0.062706 2.98525 2.98107 2.95012 2.93477 0.00222784 +GFLOW: 0.6875 0.0729598 0.0529414 2.98794 2.98403 2.95858 2.94423 0.00156717 +GFLOW: 0.75 0.0640402 0.0453535 2.98995 2.9863 2.96502 2.95161 0.00108112 +GFLOW: 0.8125 0.0568357 0.0393566 2.99149 2.98807 2.97002 2.95748 0.000722058 +GFLOW: 0.875 0.0509351 0.0345469 2.99269 2.9895 2.97398 2.96222 0.000455175 +GFLOW: 0.9375 0.0460418 0.0306387 2.99364 2.99065 2.97716 2.96611 0.000255616 +GFLOW: 1 0.0419374 0.0274254 2.99441 2.9916 2.97974 2.96934 0.000105656 +Number of steps = 16 +Time to complete flow = 3.121200e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 3.132370e-01 seconds +exit: Tue Jan 5 19:00:05 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.2.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.2.sample-out new file mode 100644 index 000000000..7b65b5279 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:11 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 8.091927e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.169609e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.8543821081090931 0.8294143032164626 2.379153297732387 2.365728299275925 1.804732423553656 1.778009568228787 0.04740354964843416 +GFLOW: 0.125 0.6069021270531422 0.5832509438725398 2.68667846045753 2.681883439823787 2.29169367291054 2.275029543662808 0.02350377449352103 +GFLOW: 0.1875 0.4240561870528933 0.3984877010085393 2.829516683904455 2.825680625211321 2.569224880471959 2.552963371343134 0.01536600546036624 +GFLOW: 0.25 0.3053300409765354 0.2777882853598944 2.899318317200924 2.894918401145713 2.723987106438473 2.70617285182506 0.01241598308410958 +GFLOW: 0.3125 0.2288364133911121 0.2007441211855019 2.935759763684834 2.930914731718105 2.812814473619533 2.794070213139761 0.0101287288063565 +GFLOW: 0.375 0.1779635851189506 0.1504913400848876 2.956192413245818 2.951200925543326 2.866328065525167 2.847519210518135 0.007889794643817762 +GFLOW: 0.4375 0.1427337369157743 0.1165345698044707 2.968461237265746 2.963541602310504 2.900305615014509 2.882035403659442 0.00591714519415807 +GFLOW: 0.5 0.1173900188930314 0.09274309864402419 2.976292105619011 2.971570216533765 2.92296556289766 2.90556540512973 0.004332970371690775 +GFLOW: 0.5625 0.09855614479321251 0.07552238550237149 2.981557149033444 2.977093000385898 2.938738330224719 2.922349435695785 0.003125349468776849 +GFLOW: 0.625 0.08417948330747864 0.06270598566805652 2.985252709665247 2.981065758559339 2.950118486115896 2.934767509308208 0.002227837915614471 +GFLOW: 0.6875 0.07295977973185895 0.05294142054341856 2.987939249972261 2.9840263429795 2.958576318089813 2.944228019867299 0.001567166983834913 +GFLOW: 0.75 0.06404015066388757 0.0453535002689337 2.989948756303563 2.986295389533847 2.965017677733942 2.951607469109421 0.001081120308202443 +GFLOW: 0.8125 0.05683570924683092 0.03935657963057476 2.991487336970563 2.988074219580792 2.970024004248257 2.95747657764516 0.0007220550647749376 +GFLOW: 0.875 0.05093511043212982 0.03454688198382789 2.99268840997204 2.989495053854194 2.973982421974547 2.962221711312756 0.0004551814204124736 +GFLOW: 0.9375 0.04604176321113369 0.03063871954166489 2.993641540327165 2.990648086494692 2.977159028698294 2.966113095305094 0.000255614820690152 +GFLOW: 1 0.04193736236334834 0.02742544045818422 2.994408756080345 2.991596805875664 2.979741784424635 2.969344873732489 0.0001056561418256736 +Number of steps = 16 +Time to complete flow = 3.392830e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 3.449728e-01 seconds +exit: Tue Jan 5 19:01:12 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk3.wilson.1.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3.wilson.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk3.wilson.1.sample-out new file mode 100644 index 000000000..e9670e148 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:05 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.671314e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 5.602837e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.905813 0.879699 2.21718 2.19787 1.61709 1.58402 0.0557593 +GFLOW: 0.125 0.711525 0.687057 2.53127 2.52222 2.06023 2.03856 0.0304548 +GFLOW: 0.1875 0.536135 0.51164 2.71746 2.71243 2.37293 2.35556 0.0179037 +GFLOW: 0.25 0.40138 0.375333 2.82538 2.82104 2.57863 2.56127 0.0125802 +GFLOW: 0.3125 0.304634 0.27712 2.88812 2.88349 2.71042 2.69202 0.010202 +GFLOW: 0.375 0.236356 0.208275 2.92528 2.92032 2.79493 2.7758 0.00859178 +GFLOW: 0.4375 0.187769 0.160013 2.94798 2.94286 2.85006 2.83081 0.007101 +GFLOW: 0.5 0.152518 0.1257 2.96233 2.95724 2.88695 2.86809 0.00569543 +GFLOW: 0.5625 0.126353 0.100817 2.97176 2.96682 2.91237 2.89423 0.00445194 +GFLOW: 0.625 0.106492 0.0823885 2.97818 2.97346 2.9304 2.91315 0.00341285 +GFLOW: 0.6875 0.0911065 0.0684623 2.98269 2.97823 2.94353 2.92725 0.00257721 +GFLOW: 0.75 0.0789707 0.0577432 2.98597 2.98178 2.95333 2.93803 0.00192053 +GFLOW: 0.8125 0.0692458 0.0493556 2.98841 2.98448 2.9608 2.94645 0.00141083 +GFLOW: 0.875 0.061344 0.0426954 2.99027 2.98659 2.96661 2.95314 0.00101734 +GFLOW: 0.9375 0.0548433 0.0373373 2.99172 2.98826 2.9712 2.95856 0.000713902 +GFLOW: 1 0.0494355 0.0329753 2.99285 2.98962 2.97487 2.96299 0.000479679 +Number of steps = 16 +Time to complete flow = 1.153760e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.164730e-01 seconds +exit: Tue Jan 5 19:00:05 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk3.wilson.2.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3.wilson.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk3.wilson.2.sample-out new file mode 100644 index 000000000..30422333c --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:12 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.959801e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.360344e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.9058132281572296 0.8796992037234977 2.217180550948812 2.197869838719706 1.617090518681119 1.58401604382473 0.05575934074905174 +GFLOW: 0.125 0.7115254582659731 0.6870568620546073 2.53126550111504 2.522223206164383 2.060232778053487 2.038560883170349 0.03045484297889786 +GFLOW: 0.1875 0.5361354296762419 0.5116402948244049 2.717456738118047 2.712431105838455 2.372928379767277 2.355555671968239 0.01790375555676558 +GFLOW: 0.25 0.4013804780293652 0.3753332903537789 2.825383973499969 2.821043357388587 2.578629264945539 2.561274133591013 0.01258025583895368 +GFLOW: 0.3125 0.3046338011192212 0.2771201551386229 2.888116503406693 2.883486959063131 2.710424100716324 2.692019676878166 0.01020205962250699 +GFLOW: 0.375 0.2363563980706052 0.2082751037248078 2.925284990113183 2.920322091099171 2.79493425510656 2.775803041839468 0.008591774263260075 +GFLOW: 0.4375 0.1877692921433338 0.1600127252991931 2.947975571957718 2.94286028540024 2.850060315069193 2.830810026368914 0.007101005891220967 +GFLOW: 0.5 0.1525177213513235 0.1256999821409268 2.962330148509587 2.957240058332201 2.886954697573132 2.868091038497541 0.005695434680888359 +GFLOW: 0.5625 0.1263525243545787 0.1008170350850017 2.971756685868732 2.966815593631594 2.912372331007211 2.894225500064104 0.00445195778278721 +GFLOW: 0.625 0.1064921055548746 0.08238848522259744 2.978175482798126 2.973455758210036 2.930396564384409 2.913146608982873 0.00341285328240314 +GFLOW: 0.6875 0.09110649459071367 0.06846232304307578 2.98269484562627 2.978231178071377 2.943527675458268 2.927248609725565 0.002577219710034277 +GFLOW: 0.75 0.07897066582170344 0.05774316808305817 2.985973174021435 2.981775721690503 2.953329103711237 2.938027441795388 0.001920537589722053 +GFLOW: 0.8125 0.06924583936900075 0.04935555842507876 2.988413979626952 2.98447822153957 2.960803285907898 2.946446111199216 0.001410830894029316 +GFLOW: 0.875 0.06134395572850838 0.04269544502149491 2.990272515017896 2.986585897546107 2.966610208847293 2.953143874280938 0.001017333326714141 +GFLOW: 0.9375 0.05484335057073104 0.03733727484505324 2.991715307722234 2.988261447229226 2.971195933971117 2.958557792416499 0.0007139043046858566 +GFLOW: 1 0.04943546225522002 0.03297527593893552 2.99285421627351 2.989615421564702 2.974869524266856 2.96299490780264 0.0004796786451075099 +Number of steps = 16 +Time to complete flow = 1.280730e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.297901e-01 seconds +exit: Tue Jan 5 19:01:12 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.1.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.1.sample-out new file mode 100644 index 000000000..e771ed8b0 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:05 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.1 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK4 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 7.379055e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 1.769066e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.853742 0.828662 2.37481 2.36149 1.80236 1.77547 0.0466932 +GFLOW: 0.125 0.607095 0.583396 2.68404 2.67917 2.28935 2.27247 0.0229433 +GFLOW: 0.1875 0.424434 0.398836 2.82838 2.82449 2.56787 2.55149 0.0151397 +GFLOW: 0.25 0.305614 0.278058 2.89883 2.89442 2.72329 2.70543 0.0123549 +GFLOW: 0.3125 0.229011 0.200913 2.93554 2.9307 2.81246 2.7937 0.0101139 +GFLOW: 0.375 0.178065 0.150592 2.95609 2.9511 2.86615 2.84733 0.00788733 +GFLOW: 0.4375 0.142792 0.116594 2.96841 2.96349 2.90021 2.88194 0.00591885 +GFLOW: 0.5 0.117424 0.0927794 2.97627 2.97155 2.92291 2.90551 0.00433604 +GFLOW: 0.5625 0.0985768 0.0755453 2.98154 2.97708 2.93871 2.92232 0.00312859 +GFLOW: 0.625 0.0841925 0.0627211 2.98525 2.98106 2.9501 2.93475 0.00223075 +GFLOW: 0.6875 0.0729684 0.0529519 2.98793 2.98402 2.95856 2.94422 0.00156962 +GFLOW: 0.75 0.0640462 0.0453611 2.98995 2.98629 2.96501 2.9516 0.00108313 +GFLOW: 0.8125 0.0568401 0.0393623 2.99149 2.98807 2.97002 2.95747 0.000723675 +GFLOW: 0.875 0.0509385 0.0345514 2.99269 2.98949 2.97398 2.96222 0.000456476 +GFLOW: 0.9375 0.0460445 0.0306424 2.99364 2.99065 2.97716 2.96611 0.000256642 +GFLOW: 1 0.0419396 0.0274286 2.99441 2.9916 2.97974 2.96934 0.000106471 +Number of steps = 16 +Time to complete flow = 4.252911e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 4.301410e-01 seconds +exit: Tue Jan 5 19:00:05 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.2.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.2.sample-out new file mode 100644 index 000000000..fcfb01937 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:12 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK4 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 9.400845e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.063108e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.8537424331834639 0.8286621639253783 2.374811455559379 2.361490389791526 1.802363517742788 1.775472646584519 0.04669314950067512 +GFLOW: 0.125 0.607095406452029 0.5833964703789585 2.684040345423609 2.679173123298073 2.289353595297895 2.272470339809181 0.02294330415942155 +GFLOW: 0.1875 0.4244341508780969 0.3988355096726819 2.828379337961957 2.824491148252754 2.567873304239035 2.551494309360159 0.01513973098536381 +GFLOW: 0.25 0.3056142261630559 0.2780576917863043 2.898833237525702 2.894416431325691 2.723288754623325 2.705431505710521 0.01235488887698554 +GFLOW: 0.3125 0.2290113898703955 0.2009134519010488 2.935544872672288 2.930696504566168 2.812460098818237 2.793702752447929 0.01011392875988417 +GFLOW: 0.375 0.1780650084747431 0.1505918378934362 2.956092753359009 2.951101624320284 2.866145803716643 2.847334419842865 0.007887331365311862 +GFLOW: 0.4375 0.142792038748734 0.1165941868732739 2.968412696255884 2.963494174601542 2.900209061531216 2.881939973892079 0.00591885039278133 +GFLOW: 0.5 0.1174241252772288 0.09277935885456737 2.976267229762504 2.971546454232524 2.922912389287964 2.905514442149159 0.0043360500528877 +GFLOW: 0.5625 0.09857676460961018 0.0755452820095442 2.98154371936193 2.977080513270302 2.938707713353151 2.922321124454312 0.003128585516213964 +GFLOW: 0.625 0.08419249453870488 0.06272109221183562 2.985245063371144 2.981058866203971 2.950099983153516 2.934751055774993 0.002230748657737632 +GFLOW: 0.6875 0.0729683994239001 0.05295186425606254 2.987934653389146 2.984022336362197 2.958564549890422 2.944217964407333 0.001569620343527843 +GFLOW: 0.75 0.06404615941017526 0.04536106729790627 2.989945835916386 2.98629292919022 2.965009789032655 2.951600981962631 0.001083126753879869 +GFLOW: 0.8125 0.05684011173203531 0.03936231379265932 2.991485375701539 2.988072620461631 2.970018432091345 2.957472153245391 0.0007236714702164986 +GFLOW: 0.875 0.05093848754452047 0.03455140853168873 2.992687019673214 2.989493954019485 2.973978284529705 2.962218526124903 0.0004564725917767287 +GFLOW: 0.9375 0.04604446051004991 0.03064242261772962 2.993640503634818 2.990647288438182 2.977155813582668 2.966110685375747 0.0002566402784533462 +GFLOW: 1 0.04193959215924965 0.02742856224906824 2.994407947271924 2.991596198187827 2.979739185206611 2.96934296921576 0.0001064666822761098 +Number of steps = 16 +Time to complete flow = 4.818871e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 4.896829e-01 seconds +exit: Tue Jan 5 19:01:13 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk4.wilson.1.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4.wilson.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk4.wilson.1.sample-out new file mode 100644 index 000000000..8fb2de125 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:06 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.1 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK4 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.869202e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.008148e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.905703 0.879571 2.21643 2.19715 1.61667 1.58359 0.0556743 +GFLOW: 0.125 0.711532 0.687053 2.53038 2.52135 2.05953 2.03782 0.0303233 +GFLOW: 0.1875 0.536252 0.511748 2.71681 2.71177 2.37227 2.35485 0.0177874 +GFLOW: 0.25 0.401525 0.375469 2.82498 2.82063 2.57815 2.56076 0.0125112 +GFLOW: 0.3125 0.304757 0.277239 2.88788 2.88324 2.7101 2.69168 0.0101703 +GFLOW: 0.375 0.236448 0.208364 2.92515 2.92019 2.79473 2.77559 0.00857856 +GFLOW: 0.4375 0.187832 0.160075 2.9479 2.94278 2.84993 2.83068 0.00709552 +GFLOW: 0.5 0.152559 0.125742 2.96229 2.9572 2.88688 2.86801 0.00569323 +GFLOW: 0.5625 0.12638 0.100845 2.97173 2.96679 2.91232 2.89418 0.00445127 +GFLOW: 0.625 0.10651 0.0824075 2.97816 2.97344 2.93037 2.91312 0.0034129 +GFLOW: 0.6875 0.0911183 0.0684751 2.98269 2.97822 2.94351 2.92723 0.00257758 +GFLOW: 0.75 0.0789786 0.0577519 2.98597 2.98177 2.95332 2.93802 0.00192101 +GFLOW: 0.8125 0.0692513 0.0493617 2.98841 2.98448 2.9608 2.94644 0.00141131 +GFLOW: 0.875 0.0613478 0.0426998 2.99027 2.98658 2.9666 2.95314 0.00101778 +GFLOW: 0.9375 0.0548461 0.0373404 2.99171 2.98826 2.97119 2.95855 0.000714291 +GFLOW: 1 0.0494375 0.0329776 2.99285 2.98961 2.97487 2.96299 0.000480007 +Number of steps = 16 +Time to complete flow = 1.503730e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.516252e-01 seconds +exit: Tue Jan 5 19:00:06 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk4.wilson.2.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4.wilson.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk4.wilson.2.sample-out new file mode 100644 index 000000000..0f4b1b0e8 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:13 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK4 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 9.429455e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.062155e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.9057031831608294 0.8795711436032624 2.216427462049307 2.197147988025131 1.616674189327134 1.583585295494178 0.05567430814614981 +GFLOW: 0.125 0.7115315097721592 0.6870529578658089 2.530382151491625 2.521346090112459 2.059529059863248 2.037818203347293 0.03032332381638751 +GFLOW: 0.1875 0.5362516954580807 0.5117475954751443 2.716806780038685 2.711765539897951 2.372272062494609 2.354850501930544 0.01778745115995515 +GFLOW: 0.25 0.4015245284577075 0.3754687741206338 2.82498119760611 2.820625896427014 2.578146642288866 2.560756432644165 0.01251120788761609 +GFLOW: 0.3125 0.3047573899877496 0.2772386280704487 2.88788186392349 2.883244654133323 2.710103848614104 2.691681324873731 0.01017033172581446 +GFLOW: 0.375 0.2364475104884237 0.2083643385991644 2.925151059587407 2.920185375074516 2.794731610440619 2.77559308743205 0.00857855556482435 +GFLOW: 0.4375 0.187831796481538 0.1600752498868001 2.94789934410893 2.942783581245404 2.849934784736223 2.830682482149395 0.007095519152639254 +GFLOW: 0.5 0.1525591878192909 0.1257423328114387 2.962286468719321 2.957196759900102 2.886877406054046 2.868013958168984 0.00569323719524353 +GFLOW: 0.5625 0.1263797040981757 0.1008453754960914 2.971731327778059 2.966790829367915 2.912324559696704 2.894178712554512 0.004451280399877092 +GFLOW: 0.625 0.1065099403118551 0.08240746504483271 2.97816050253488 2.973441340881219 2.930366727082344 2.913117899926735 0.003412899273150492 +GFLOW: 0.6875 0.09111831151110811 0.06847514475625506 2.982685813074557 2.978222606684135 2.94350875616732 2.9272307179632 0.002577585922309572 +GFLOW: 0.75 0.07897861800774829 0.05775194862852936 2.985967603459335 2.981770505703109 2.953316886360767 2.938016076454803 0.001921014669169278 +GFLOW: 0.8125 0.06925129599496832 0.04936167357594575 2.988410460747245 2.984474967010265 2.960795233518316 2.946438732281042 0.001411315381868171 +GFLOW: 0.875 0.06134778341502817 0.0426997853211387 2.990270236012725 2.98658381277202 2.966604783736956 2.953138967747658 0.001017779504313533 +GFLOW: 0.9375 0.054846099742266 0.03734041874314368 2.99171379346905 2.988260074949406 2.97119219381856 2.95855444611783 0.0007142962930980275 +GFLOW: 1 0.04943748561527679 0.03297760211092378 2.992853183680449 2.989614492842532 2.974866883827142 2.96299256481089 0.0004800148085506874 +Number of steps = 16 +Time to complete flow = 1.869872e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.947908e-01 seconds +exit: Tue Jan 5 19:01:13 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.1.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.1.sample-out new file mode 100644 index 000000000..e4d1b27f5 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:06 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.3 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK5 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.729893e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 9.012222e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.853792 0.828736 2.37561 2.36225 1.80284 1.77595 0.0467987 +GFLOW: 0.125 0.606998 0.583313 2.68456 2.67969 2.28984 2.27298 0.0229986 +GFLOW: 0.1875 0.424319 0.398728 2.8286 2.82472 2.56816 2.55179 0.0151548 +GFLOW: 0.25 0.305529 0.277977 2.89893 2.89451 2.72344 2.70559 0.012355 +GFLOW: 0.3125 0.228954 0.20086 2.93559 2.93074 2.81254 2.79379 0.0101119 +GFLOW: 0.375 0.178027 0.150556 2.95611 2.95112 2.86619 2.84738 0.0078857 +GFLOW: 0.4375 0.142766 0.11657 2.96842 2.96351 2.90024 2.88197 0.00591764 +GFLOW: 0.5 0.117405 0.0927624 2.97627 2.97155 2.92293 2.90553 0.00433513 +GFLOW: 0.5625 0.0985628 0.0755328 2.98155 2.97709 2.93872 2.92233 0.00312792 +GFLOW: 0.625 0.0841818 0.0627116 2.98525 2.98106 2.95011 2.93476 0.00223026 +GFLOW: 0.6875 0.07296 0.0529445 2.98794 2.98402 2.95857 2.94423 0.00156928 +GFLOW: 0.75 0.0640395 0.0453551 2.98995 2.98629 2.96501 2.95161 0.00108289 +GFLOW: 0.8125 0.0568347 0.0393575 2.99149 2.98807 2.97002 2.95748 0.000723504 +GFLOW: 0.875 0.050934 0.0345474 2.99269 2.9895 2.97398 2.96222 0.000456365 +GFLOW: 0.9375 0.0460408 0.030639 2.99364 2.99065 2.97716 2.96611 0.000256579 +GFLOW: 1 0.0419365 0.0274257 2.99441 2.9916 2.97974 2.96935 0.000106438 +Number of steps = 16 +Time to complete flow = 6.291640e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 6.310689e-01 seconds +exit: Tue Jan 5 19:00:06 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.2.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.2.sample-out new file mode 100644 index 000000000..26693c7ba --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:13 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.5 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK5 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.019001e-03 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.191067e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.8537916210261531 0.8287360294796184 2.375609707049246 2.362249970407575 1.802838126616738 1.775953989958998 0.04679868483046359 +GFLOW: 0.125 0.6069975003488538 0.5833129347561989 2.684555722304247 2.679691098669111 2.289835420265009 2.272978587895644 0.02299858816438644 +GFLOW: 0.1875 0.4243186928883013 0.3987277103502393 2.828602023081572 2.824719206466712 2.56815647882411 2.551792595033697 0.01515474966245571 +GFLOW: 0.25 0.3055288164020661 0.2779766278507202 2.89892714667574 2.89451264638898 2.723438515487157 2.705587837183007 0.01235494296477359 +GFLOW: 0.3125 0.228954262592706 0.200859620460009 2.93558695878786 2.930739651675889 2.812539942871007 2.793786151345161 0.01011194542581436 +GFLOW: 0.375 0.1780268421526196 0.1505564453699778 2.956113304903022 2.951122863411313 2.866190586194819 2.847381675982506 0.007885699528428066 +GFLOW: 0.4375 0.1427657259368479 0.1165701951809684 2.968423718807073 2.963505744723024 2.900235924923968 2.881968762890764 0.00591762728794626 +GFLOW: 0.5 0.1174052731983962 0.09276241155963771 2.976273709326364 2.971553391092313 2.922929654097965 2.905533252834541 0.004335132706865454 +GFLOW: 0.5625 0.0985627708457073 0.07553282644720626 2.981547854929433 2.977085028078746 2.93871952215411 2.922334177904675 0.003127908694947902 +GFLOW: 0.625 0.08418179636349796 0.0627116196677009 2.98524789101671 2.981062003367621 2.950108492095959 2.934760561047291 0.002230260778853239 +GFLOW: 0.6875 0.07296002422257034 0.05294445339231196 2.987936695942852 2.984024627896954 2.958570943025793 2.944225148125849 0.001569276105943358 +GFLOW: 0.75 0.06403947566299394 0.04535513227799536 2.989947375887601 2.98629466702366 2.965014754336341 2.951606568177768 0.001082888755920617 +GFLOW: 0.8125 0.05683469244507984 0.03935746683886642 2.991486576052576 2.988073976332386 2.970022391746292 2.957476594790334 0.0007235109305985677 +GFLOW: 0.875 0.05093403375201892 0.034547383492764 2.992687980195416 2.989495035411175 2.973981510810245 2.96222212099132 0.0004563683222142706 +GFLOW: 0.9375 0.04604075682943066 0.0306390310636108 2.993641288724249 2.990648166237202 2.97715848982014 2.966113638147803 0.0002565770102453649 +GFLOW: 1 0.04193647984013806 0.02742566727590413 2.994408600370921 2.991596921180119 2.979741439396236 2.969345425216337 0.0001064334786541582 +Number of steps = 16 +Time to complete flow = 6.534541e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 6.592181e-01 seconds +exit: Tue Jan 5 19:01:14 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk5.wilson.1.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5.wilson.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk5.wilson.1.sample-out new file mode 100644 index 000000000..5e2f21148 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:07 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.3 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK5 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 7.870197e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 2.708435e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.905713 0.879583 2.21652 2.19724 1.61673 1.58364 0.0556855 +GFLOW: 0.125 0.711523 0.687047 2.5305 2.52146 2.05963 2.03792 0.0303343 +GFLOW: 0.1875 0.536229 0.511727 2.71689 2.71185 2.37236 2.35495 0.0177953 +GFLOW: 0.25 0.4015 0.375446 2.82503 2.82068 2.57821 2.56083 0.0125152 +GFLOW: 0.3125 0.304737 0.277219 2.88791 2.88328 2.71015 2.69173 0.0101718 +GFLOW: 0.375 0.236432 0.20835 2.92517 2.9202 2.79476 2.77562 0.00857901 +GFLOW: 0.4375 0.187821 0.160065 2.94791 2.94279 2.84995 2.8307 0.00709565 +GFLOW: 0.5 0.152552 0.125735 2.96229 2.9572 2.88689 2.86802 0.00569325 +GFLOW: 0.5625 0.126374 0.100841 2.97173 2.96679 2.91233 2.89419 0.00445123 +GFLOW: 0.625 0.106506 0.082404 2.97816 2.97344 2.93037 2.91312 0.00341284 +GFLOW: 0.6875 0.0911155 0.0684727 2.98269 2.97822 2.94351 2.92723 0.00257752 +GFLOW: 0.75 0.0789765 0.0577501 2.98597 2.98177 2.95332 2.93802 0.00192096 +GFLOW: 0.8125 0.0692497 0.0493603 2.98841 2.98448 2.9608 2.94644 0.00141128 +GFLOW: 0.875 0.0613465 0.0426987 2.99027 2.98658 2.96661 2.95314 0.00101775 +GFLOW: 0.9375 0.0548451 0.0373396 2.99171 2.98826 2.97119 2.95856 0.000714267 +GFLOW: 1 0.0494367 0.0329769 2.99285 2.98961 2.97487 2.96299 0.000479999 +Number of steps = 16 +Time to complete flow = 2.308869e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.365119e-01 seconds +exit: Tue Jan 5 19:00:07 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk5.wilson.2.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5.wilson.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk5.wilson.2.sample-out new file mode 100644 index 000000000..3ba2d50c1 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:14 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.5 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK5 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.768040e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.188683e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.9057125954469835 0.8795832297394959 2.216521950718044 2.197236731900541 1.616728448310817 1.583639082900349 0.05568554956644499 +GFLOW: 0.125 0.7115229621840339 0.6870467289896537 2.530497519968401 2.521459729974289 2.059625004427158 2.037917771484897 0.03033430230879192 +GFLOW: 0.1875 0.5362288620097826 0.5117268346650318 2.716891515418079 2.711851959540317 2.372361550296195 2.354945631924065 0.01779532043847782 +GFLOW: 0.25 0.4014997787274237 0.3754456151210679 2.825032888418928 2.820679282372748 2.578211790836439 2.560825668555872 0.01251519114884686 +GFLOW: 0.3125 0.3047369693171377 0.2772192082920859 2.887911315321631 2.883275048908093 2.710146483711562 2.691726181561876 0.0101718048838647 +GFLOW: 0.375 0.2364324710587787 0.2083499446367632 2.925167493314724 2.920202253979415 2.794758266206804 2.77562087586427 0.008579015461814377 +GFLOW: 0.4375 0.1878212030726906 0.1600651399612365 2.947908538037628 2.942792987468566 2.849951226973165 2.830699551758741 0.007095643911093991 +GFLOW: 0.5 0.1525517933681338 0.1257353473268012 2.962291700492028 2.957202109517323 2.886887610750093 2.868024572129173 0.005693243785488076 +GFLOW: 0.5625 0.1263744902339323 0.1008405265833488 2.971734385675839 2.96679396941486 2.912331012790919 2.894185477755167 0.004451239134461936 +GFLOW: 0.625 0.1065061901825175 0.08240404508937657 2.978162350520073 2.973443257237951 2.930370917528549 2.913122352609577 0.003412840751855471 +GFLOW: 0.6875 0.09111554905006225 0.068472680505204 2.982686972420023 2.978223827632336 2.943511562371628 2.927233754304263 0.002577526282997485 +GFLOW: 0.75 0.07897653302875543 0.05775013133259661 2.98596835974138 2.981771318498607 2.953318827161642 2.938018222047655 0.00192096182879209 +GFLOW: 0.8125 0.06924968605653675 0.04936030233792189 2.988410973537787 2.984475531364147 2.960796618954728 2.946440300171393 0.001411272164822152 +GFLOW: 0.875 0.06134651460744035 0.04269872817078881 2.990270596682987 2.98658421997895 2.966605802529219 2.953140148586122 0.001017745952219291 +GFLOW: 0.9375 0.05484508170978916 0.03733958757568642 2.99171405580515 2.98826037886574 2.971192963493969 2.95855535915969 0.0007142712182310926 +GFLOW: 1 0.04943665598553126 0.03297693695049054 2.992853380295785 2.989614726329019 2.974867479455541 2.962993286862163 0.0004799966761454965 +Number of steps = 16 +Time to complete flow = 2.263842e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.281160e-01 seconds +exit: Tue Jan 5 19:01:14 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.1.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.1.sample-out new file mode 100644 index 000000000..c82ede76c --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:07 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.9 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK8 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 7.898808e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 2.698898e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.853797 0.828744 2.37571 2.36235 1.8029 1.77602 0.0468073 +GFLOW: 0.125 0.606989 0.583306 2.6846 2.67974 2.28988 2.27302 0.0230033 +GFLOW: 0.1875 0.424311 0.39872 2.82862 2.82474 2.56818 2.55181 0.0151563 +GFLOW: 0.25 0.305524 0.277972 2.89893 2.89452 2.72345 2.7056 0.0123553 +GFLOW: 0.3125 0.228951 0.200857 2.93559 2.93074 2.81254 2.79379 0.010112 +GFLOW: 0.375 0.178025 0.150554 2.95611 2.95112 2.86619 2.84738 0.00788571 +GFLOW: 0.4375 0.142764 0.116569 2.96842 2.96351 2.90024 2.88197 0.00591761 +GFLOW: 0.5 0.117404 0.0927615 2.97627 2.97155 2.92293 2.90553 0.00433511 +GFLOW: 0.5625 0.0985621 0.0755322 2.98155 2.97709 2.93872 2.92233 0.0031279 +GFLOW: 0.625 0.0841813 0.0627111 2.98525 2.98106 2.95011 2.93476 0.00223025 +GFLOW: 0.6875 0.0729596 0.0529441 2.98794 2.98402 2.95857 2.94423 0.00156928 +GFLOW: 0.75 0.0640391 0.0453548 2.98995 2.98629 2.96501 2.95161 0.00108289 +GFLOW: 0.8125 0.0568344 0.0393572 2.99149 2.98807 2.97002 2.95748 0.000723513 +GFLOW: 0.875 0.0509338 0.0345472 2.99269 2.9895 2.97398 2.96222 0.000456368 +GFLOW: 0.9375 0.0460406 0.0306389 2.99364 2.99065 2.97716 2.96611 0.000256579 +GFLOW: 1 0.0419363 0.0274255 2.99441 2.9916 2.97974 2.96935 0.00010644 +Number of steps = 16 +Time to complete flow = 1.352756e+00 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.359137e+00 seconds +exit: Tue Jan 5 19:00:08 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.2.sample-in new file mode 100644 index 000000000..50413f537 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.2.sample-out new file mode 100644 index 000000000..92f070a15 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:14 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 3.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK8 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.265049e-03 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.065016e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.853796999827394 0.8287444679533847 2.375709522214786 2.362348694211784 1.802901098815517 1.77602092305045 0.04680726497697795 +GFLOW: 0.125 0.6069888962650868 0.5833057322839406 2.684601294627539 2.679737523720718 2.289877556098617 2.273023736778522 0.02300329963238665 +GFLOW: 0.1875 0.4243107533833489 0.3987200556000119 2.828617612953886 2.824735195015362 2.568175956391743 2.55181303940499 0.01515633771712692 +GFLOW: 0.25 0.3055237525004791 0.2779715682969031 2.898932661152782 2.894518280546384 2.723447316767817 2.705596881856714 0.01235529905096865 +GFLOW: 0.3125 0.2289511454565062 0.2008565082408588 2.935589163852361 2.930741891788172 2.812544231889101 2.793790514012743 0.01011199956148291 +GFLOW: 0.375 0.1780248428619353 0.1505544791692303 2.956114323136664 2.951123895811921 2.866192899145444 2.847384030579508 0.007885695637481996 +GFLOW: 0.4375 0.1427643705420746 0.1165688879159506 2.968424258022132 2.963506294256174 2.90023730070049 2.881970176135757 0.005917615435180966 +GFLOW: 0.5 0.1174043069100627 0.09276149833814265 2.976274029728277 2.971553721539491 2.922930542623864 2.905534178640497 0.004335123108577569 +GFLOW: 0.5625 0.09856205352719248 0.07553216193439112 2.981548062999505 2.977085246189545 2.938720133834645 2.922334826172756 0.003127903089931048 +GFLOW: 0.625 0.08418124695725722 0.06271112032015738 2.985248035251629 2.981062157342711 2.950108933835364 2.934761037725421 0.002230258626268044 +GFLOW: 0.6875 0.0729595930870562 0.05294406846392192 2.987936800774248 2.98402474191419 2.958571273688764 2.944225511413619 0.00156927634798273 +GFLOW: 0.75 0.06403913072054176 0.04535482931113968 2.98994745478499 2.986294754415244 2.965015008763467 2.951606852582657 0.001082890444691601 +GFLOW: 0.8125 0.05683441199933089 0.03935722414439235 2.991486637033567 2.988074045066574 2.970022591859314 2.957476822143788 0.0007235133900910622 +GFLOW: 0.875 0.05093380257879877 0.03454718605595396 2.992688028340035 2.989495090572436 2.973981671103275 2.962222305850366 0.0004563711263503719 +GFLOW: 0.9375 0.04604056393294855 0.03063886819544278 2.993641327413877 2.990648211241214 2.977158620258511 2.966113790627775 0.0002565799129663199 +GFLOW: 1 0.04193631709634497 0.02742553119646989 2.99440863194398 2.991596958414653 2.979741547043779 2.969345552574713 0.0001064363488566213 +Number of steps = 16 +Time to complete flow = 1.419900e+00 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.428019e+00 seconds +exit: Tue Jan 5 19:01:16 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk8.wilson.1.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8.wilson.1.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk8.wilson.1.sample-out new file mode 100644 index 000000000..e0fe01a72 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:00:09 2021 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.9 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK8 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 7.708073e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 2.970695e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.905713 0.879584 2.21653 2.19724 1.61673 1.58365 0.055686 +GFLOW: 0.125 0.711522 0.687046 2.53051 2.52147 2.05963 2.03793 0.0303347 +GFLOW: 0.1875 0.536227 0.511725 2.7169 2.71186 2.37237 2.35495 0.0177956 +GFLOW: 0.25 0.401499 0.375444 2.82504 2.82068 2.57821 2.56083 0.0125153 +GFLOW: 0.3125 0.304736 0.277218 2.88791 2.88328 2.71015 2.69173 0.0101718 +GFLOW: 0.375 0.236432 0.208349 2.92517 2.9202 2.79476 2.77562 0.00857903 +GFLOW: 0.4375 0.187821 0.160065 2.94791 2.94279 2.84995 2.8307 0.00709564 +GFLOW: 0.5 0.152552 0.125735 2.96229 2.9572 2.88689 2.86802 0.00569324 +GFLOW: 0.5625 0.126374 0.10084 2.97173 2.96679 2.91233 2.89419 0.00445124 +GFLOW: 0.625 0.106506 0.0824039 2.97816 2.97344 2.93037 2.91312 0.00341284 +GFLOW: 0.6875 0.0911154 0.0684726 2.98269 2.97822 2.94351 2.92723 0.00257752 +GFLOW: 0.75 0.0789765 0.0577501 2.98597 2.98177 2.95332 2.93802 0.00192096 +GFLOW: 0.8125 0.0692496 0.0493602 2.98841 2.98448 2.9608 2.94644 0.00141127 +GFLOW: 0.875 0.0613465 0.0426987 2.99027 2.98658 2.96661 2.95314 0.00101775 +GFLOW: 0.9375 0.054845 0.0373396 2.99171 2.98826 2.97119 2.95856 0.000714269 +GFLOW: 1 0.0494366 0.0329769 2.99285 2.98961 2.97487 2.96299 0.000479994 +Number of steps = 16 +Time to complete flow = 4.588401e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 4.652209e-01 seconds +exit: Tue Jan 5 19:00:09 2021 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk8.wilson.2.sample-in new file mode 100644 index 000000000..10f025c30 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8.wilson.2.sample-in @@ -0,0 +1,12 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk8.wilson.2.sample-out new file mode 100644 index 000000000..f4fca586d --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = MPI (portable), with 1 nodes +Host(0) = computer +Username = bazavov +start: Tue Jan 5 19:01:16 2021 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +LAYOUT = Hypercubes, options = hyper_prime, +automatic hyper_prime layout +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 3.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK8 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.267910e-03 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 1.092911e-03 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.9057128352538293 0.8795836111703303 2.216530220464609 2.197244845077935 1.616734190614243 1.583644992779119 0.05568598814331142 +GFLOW: 0.125 0.711521894758657 0.6870457837563346 2.530505094011376 2.521467417788137 2.059631910083767 2.037925084058573 0.03033472858607204 +GFLOW: 0.1875 0.5362273410428585 0.5117253986379271 2.716896099957139 2.711856681260857 2.372366649633271 2.354951046856983 0.01779563785597331 +GFLOW: 0.25 0.4014984915250145 0.3754443656235628 2.825035289026436 2.820681754618063 2.578214919702627 2.560828951479388 0.01251535374799322 +GFLOW: 0.3125 0.3047360601118472 0.2772183106156761 2.887912516838041 2.883276279646335 2.710148274034449 2.691728033778716 0.0101718685020267 +GFLOW: 0.375 0.2364318664808364 0.2083493451103856 2.9251680957619 2.920202867709927 2.794759276666651 2.775621910959617 0.008579036884493175 +GFLOW: 0.4375 0.1878208030601108 0.1600647459364674 2.947908848670723 2.942793302837236 2.84995180728266 2.830700144053372 0.007095649762703612 +GFLOW: 0.5 0.1525515229586747 0.1257350848947223 2.96229186783927 2.957202279442587 2.886887955900975 2.868024925539171 0.005693244055470396 +GFLOW: 0.5625 0.12637430138986 0.1008403470358065 2.971734480746603 2.966794066463905 2.912331227280111 2.894185699591912 0.004451237524901423 +GFLOW: 0.625 0.1065060536215111 0.08240391836500167 2.978162407692996 2.97344331627458 2.930371057146472 2.913122499370612 0.00341283871258007 +GFLOW: 0.6875 0.09111544703128831 0.06847258830665925 2.982687008784231 2.978223865847871 2.943511657386681 2.927233856314007 0.002577524382882309 +GFLOW: 0.75 0.07897645462913325 0.05775006239408356 2.985968384095719 2.981771344676441 2.953318894459795 2.93801829609229 0.001920960256046899 +GFLOW: 0.8125 0.06924962436089922 0.04936024955388266 2.988410990601787 2.984475550186308 2.960796668290897 2.946440355903997 0.001411270941251535 +GFLOW: 0.875 0.06134646509096026 0.04269868692576386 2.990270609102761 2.986584234061343 2.966605839759952 2.953140191796606 0.001017745035037159 +GFLOW: 0.9375 0.05484504130986963 0.03733955477913426 2.991714065133391 2.98826038974343 2.971192992276282 2.958555393474064 0.0007142705479596382 +GFLOW: 1 0.04943662256222567 0.03297691047243369 2.99285338748525 2.989614734947725 2.974867502161272 2.962993314648029 0.0004799961967829997 +Number of steps = 16 +Time to complete flow = 4.822879e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 4.903991e-01 seconds +exit: Tue Jan 5 19:01:16 2021 + diff --git a/wilson_flow/wilson_flow_includes.h b/wilson_flow/wilson_flow_includes.h index 989f42976..473ccd274 100644 --- a/wilson_flow/wilson_flow_includes.h +++ b/wilson_flow/wilson_flow_includes.h @@ -24,8 +24,6 @@ void flow_step(); void staple(); void fmunu_fmunu(double *time, double *space, double *charge); void initialize_integrator(); -//void integrate_RK_2N(); -//void integrate_RK_2N_one_step( Real cA, Real cB ); void gauge_action_w_s( double *wl1x1s, double *wl1x1t, double *wl1x2s, double *wl1x2t ); // various integrators, compile-time choice From c2325376c368243c4abaa1411fd04a82090a7a99 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Thu, 7 Jan 2021 00:24:06 -0500 Subject: [PATCH 26/49] Move macros for tuning third order coefficients --- wilson_flow/defines.h | 4 ++++ wilson_flow/setup.c | 25 ++++++++++++++++++++++--- 2 files changed, 26 insertions(+), 3 deletions(-) diff --git a/wilson_flow/defines.h b/wilson_flow/defines.h index 719e4abd5..7c123f306 100644 --- a/wilson_flow/defines.h +++ b/wilson_flow/defines.h @@ -53,6 +53,10 @@ #define flow_step integrate_adapt_bs #endif +// for tuning of the coefficients of generic third-order and adaptive +//#define READ_CF3_FROM_FILE +//#define READ_ADPT_CF3_FROM_FILE + // dump lattice in double precision for debugging purposes // BE CAREFULL with this //#define DEBUG_FIELDS diff --git a/wilson_flow/setup.c b/wilson_flow/setup.c index 5b6afbe07..29c7c5f6d 100644 --- a/wilson_flow/setup.c +++ b/wilson_flow/setup.c @@ -243,7 +243,6 @@ initialize_integrator() N_stages = 3; // Commutator-free 2N-storage with arbitrary coefficients -#define READ_CF3_FROM_FILE #ifdef READ_CF3_FROM_FILE FILE *fp; int st = 0; @@ -275,13 +274,20 @@ initialize_integrator() node0_printf( "%.16g\n", B_2N[1] ); node0_printf( "%.16g\n", B_2N[2] ); #else - // optimized with Ralston procedure + // Williamson scheme 7 A_2N[0] = 0; + A_2N[1] = -5/9.; + A_2N[2] = -153/128.; + B_2N[0] = 1/3.; + B_2N[1] = 15/16.; + B_2N[2] = 8/15.; + // optimized with Ralston procedure +/*A_2N[0] = 0; A_2N[1] = -0.637694471842202; A_2N[2] = -1.306647717737108; B_2N[0] = 0.457379997569388; B_2N[1] = 0.925296410920922; - B_2N[2] = 0.393813594675071; + B_2N[2] = 0.393813594675071;*/ #endif node0_printf("Integrator = INTEGRATOR_CF3\n"); #elif GF_INTEGRATOR==INTEGRATOR_RKMK3 @@ -403,6 +409,7 @@ initialize_integrator() N_stages = 3; // Commutator-free 2N-storage with arbitrary coefficients +#ifdef READ_ADPT_CF3_FROM_FILE FILE *fp; int st; fp = fopen( "cf3adpt_coeff.dat", "rt" ); @@ -441,6 +448,18 @@ initialize_integrator() node0_printf( "%.16g\n", Lambda[0] ); node0_printf( "%.16g\n", Lambda[1] ); node0_printf( "%.16g\n", Lambda[2] ); +#else + // Luscher coefficients -- default + A_2N[0] = 0; + A_2N[1] = -17/32.; + A_2N[2] = -32/27.; + B_2N[0] = 1/4.; + B_2N[1] = 8/9.; + B_2N[2] = 3/4.; + Lambda[0] = -1; + Lambda[1] = 2; + Lambda[2] = 0; +#endif node0_printf("Integrator = INTEGRATOR_ADAPT_CF3\n"); #elif GF_INTEGRATOR==INTEGRATOR_ADAPT_BS // Bogacki-Shampine integrator based on Ralston coefficients From 76fa97c3e7a55c8b563df81b81840af390954e1e Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Thu, 7 Jan 2021 00:28:10 -0500 Subject: [PATCH 27/49] Minor cleanups --- ...wilson_flow_adpt_cf3.symanzik.1.sample-out | 21 ++++++------------- ...wilson_flow_adpt_cf3.symanzik.2.sample-out | 21 ++++++------------- .../wilson_flow_adpt_cf3.wilson.1.sample-out | 21 ++++++------------- .../wilson_flow_adpt_cf3.wilson.2.sample-out | 21 ++++++------------- .../wilson_flow_cf3.symanzik.1.sample-out | 16 +++++--------- .../wilson_flow_cf3.symanzik.2.sample-out | 18 ++++++---------- .../wilson_flow_cf3.wilson.1.sample-out | 18 ++++++---------- .../wilson_flow_cf3.wilson.2.sample-out | 16 +++++--------- 8 files changed, 46 insertions(+), 106 deletions(-) diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-out index 9fdd071d9..f75fff566 100644 --- a/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-out +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = MPI (portable), with 1 nodes Host(0) = computer Username = bazavov -start: Tue Jan 5 19:00:00 2021 +start: Thu Jan 7 00:11:16 2021 Options selected... Generic single precision @@ -19,15 +19,6 @@ ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.0 MBytes per node for lattice Made lattice Made nn gathers -0 --0.53125 --1.185185194015503 -0.25 -0.8888888955116272 -0.75 --1 -2 -0 Integrator = INTEGRATOR_ADAPT_CF3 Finished setup @@ -43,11 +34,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.548332e-04 +Time to reload gauge configuration = 7.882118e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 2.679825e-04 +Time to check unitarity = 2.920628e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #ADAPT time stepsize distance local_tol/distance GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 @@ -74,11 +65,11 @@ GFLOW: 1 0.0419416 0.0274348 2.99427 2.99151 2.97973 2.96934 0.000107674 ADAPT: 1 0.0296079 0.000153453 65.1664 Number of steps = 10 Number of rejected steps = 2 -Time to complete flow = 2.637889e-01 seconds +Time to complete flow = 2.707369e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.691021e-01 seconds -exit: Tue Jan 5 19:00:01 2021 +Time = 2.759831e-01 seconds +exit: Thu Jan 7 00:11:16 2021 diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-out index da24d4aba..3eebaa85b 100644 --- a/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-out +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = MPI (portable), with 1 nodes Host(0) = computer Username = bazavov -start: Tue Jan 5 19:01:07 2021 +start: Thu Jan 7 00:08:02 2021 Options selected... Generic double precision @@ -19,15 +19,6 @@ ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 2.0 MBytes per node for lattice Made lattice Made nn gathers -0 --0.53125 --1.185185185185185 -0.25 -0.8888888888888888 -0.75 --1 -2 -0 Integrator = INTEGRATOR_ADAPT_CF3 Finished setup @@ -43,11 +34,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.180141e-04 +Time to reload gauge configuration = 1.769066e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.056910e-03 +Time to check unitarity = 2.181530e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #ADAPT time stepsize distance local_tol/distance GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 @@ -74,11 +65,11 @@ GFLOW: 1 0.04194154668274509 0.0274348058969209 2.99427469462497 2.9915084113182 ADAPT: 1 0.0296103340646392 0.00015349341050008 65.14937655903336 Number of steps = 10 Number of rejected steps = 2 -Time to complete flow = 2.901208e-01 seconds +Time to complete flow = 2.609689e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.977202e-01 seconds -exit: Tue Jan 5 19:01:07 2021 +Time = 2.625742e-01 seconds +exit: Thu Jan 7 00:08:03 2021 diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-out index 301924ed6..aec599a0a 100644 --- a/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-out +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = MPI (portable), with 1 nodes Host(0) = computer Username = bazavov -start: Tue Jan 5 19:00:01 2021 +start: Thu Jan 7 00:11:59 2021 Options selected... Generic single precision @@ -19,15 +19,6 @@ ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.0 MBytes per node for lattice Made lattice Made nn gathers -0 --0.53125 --1.185185194015503 -0.25 -0.8888888955116272 -0.75 --1 -2 -0 Integrator = INTEGRATOR_ADAPT_CF3 Finished setup @@ -43,11 +34,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.909733e-04 +Time to reload gauge configuration = 1.819134e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 5.698204e-05 +Time to check unitarity = 5.483627e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #ADAPT time stepsize distance local_tol/distance GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 @@ -68,11 +59,11 @@ GFLOW: 1 0.0493726 0.032906 2.99289 2.98965 2.97495 2.96307 0.000482842 ADAPT: 1 0.121814 0.000226299 44.1893 Number of steps = 7 Number of rejected steps = 0 -Time to complete flow = 5.745602e-02 seconds +Time to complete flow = 5.912995e-02 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.866694e-02 seconds -exit: Tue Jan 5 19:00:01 2021 +Time = 6.026602e-02 seconds +exit: Thu Jan 7 00:11:59 2021 diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-out index f837c7d44..4c45b1c5d 100644 --- a/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-out +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = MPI (portable), with 1 nodes Host(0) = computer Username = bazavov -start: Tue Jan 5 19:01:07 2021 +start: Thu Jan 7 00:08:33 2021 Options selected... Generic double precision @@ -19,15 +19,6 @@ ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 2.0 MBytes per node for lattice Made lattice Made nn gathers -0 --0.53125 --1.185185185185185 -0.25 -0.8888888888888888 -0.75 --1 -2 -0 Integrator = INTEGRATOR_ADAPT_CF3 Finished setup @@ -43,11 +34,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.060932e-04 +Time to reload gauge configuration = 8.111000e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.076937e-03 +Time to check unitarity = 1.062870e-03 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #ADAPT time stepsize distance local_tol/distance GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 @@ -68,11 +59,11 @@ GFLOW: 1 0.04937260171838897 0.03290598594763042 2.992888213650807 2.98964729108 ADAPT: 1 0.1218129056625 0.0002262791389213261 44.1932033490584 Number of steps = 7 Number of rejected steps = 0 -Time to complete flow = 9.189200e-02 seconds +Time to complete flow = 8.574486e-02 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 9.943485e-02 seconds -exit: Tue Jan 5 19:01:07 2021 +Time = 9.325886e-02 seconds +exit: Thu Jan 7 00:08:33 2021 diff --git a/wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-out index 5bf4cf23a..c0b51284f 100644 --- a/wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-out +++ b/wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = MPI (portable), with 1 nodes Host(0) = computer Username = bazavov -start: Tue Jan 5 19:00:03 2021 +start: Thu Jan 7 00:12:42 2021 Options selected... Generic single precision @@ -19,12 +19,6 @@ ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 0.7 MBytes per node for lattice Made lattice Made nn gathers -0 --0.5555555820465088 --1.1953125 -0.3333333432674408 -0.9375 -0.5333333611488342 Integrator = INTEGRATOR_CF3 Finished setup @@ -39,7 +33,7 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.718998e-04 +Time to reload gauge configuration = 1.821518e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 @@ -63,11 +57,11 @@ GFLOW: 0.875 0.0509333 0.0345462 2.99269 2.9895 2.97398 2.96222 0.000456608 GFLOW: 0.9375 0.0460403 0.0306383 2.99364 2.99065 2.97716 2.96611 0.000256768 GFLOW: 1 0.0419362 0.0274252 2.99441 2.9916 2.97974 2.96935 0.000106591 Number of steps = 16 -Time to complete flow = 2.946661e-01 seconds +Time to complete flow = 2.904770e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.956889e-01 seconds -exit: Tue Jan 5 19:00:03 2021 +Time = 2.914960e-01 seconds +exit: Thu Jan 7 00:12:42 2021 diff --git a/wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-out index f88853dd9..dfecab65f 100644 --- a/wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-out +++ b/wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = MPI (portable), with 1 nodes Host(0) = computer Username = bazavov -start: Tue Jan 5 19:01:09 2021 +start: Wed Jan 6 23:59:34 2021 Options selected... Generic double precision @@ -19,12 +19,6 @@ ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.2 MBytes per node for lattice Made lattice Made nn gathers -0 --0.5555555555555556 --1.1953125 -0.3333333333333333 -0.9375 -0.5333333333333333 Integrator = INTEGRATOR_CF3 Finished setup @@ -39,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.640289e-04 +Time to reload gauge configuration = 8.280277e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.058102e-03 +Time to check unitarity = 1.055002e-03 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.8543716615679702 0.8293993621997977 2.377809180202705 2.364347685635683 1.803642126471845 1.776821884930114 0.04733953641862654 @@ -63,11 +57,11 @@ GFLOW: 0.875 0.05093331922520593 0.0345461986078126 2.992688657026303 2.98949554 GFLOW: 0.9375 0.04604029570896043 0.03063827683561837 2.993641720857155 2.990648481963264 2.977159538622672 2.96611436320869 0.0002567670485341259 GFLOW: 1 0.04193616190544152 0.0274251867371391 2.994408881949181 2.991597126998047 2.979742121488842 2.969345906113011 0.0001065860117359313 Number of steps = 16 -Time to complete flow = 3.672922e-01 seconds +Time to complete flow = 3.675420e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.739510e-01 seconds -exit: Tue Jan 5 19:01:10 2021 +Time = 3.741040e-01 seconds +exit: Wed Jan 6 23:59:35 2021 diff --git a/wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-out index 5df57ce57..33deb24d4 100644 --- a/wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-out +++ b/wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = MPI (portable), with 1 nodes Host(0) = computer Username = bazavov -start: Tue Jan 5 19:00:03 2021 +start: Thu Jan 7 00:13:29 2021 Options selected... Generic single precision @@ -19,12 +19,6 @@ ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 0.7 MBytes per node for lattice Made lattice Made nn gathers -0 --0.5555555820465088 --1.1953125 -0.3333333432674408 -0.9375 -0.5333333611488342 Integrator = INTEGRATOR_CF3 Finished setup @@ -39,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.498264e-04 +Time to reload gauge configuration = 1.728535e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 2.670288e-04 +Time to check unitarity = 5.507469e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.905807 0.879692 2.21687 2.19756 1.61685 1.58376 0.0557657 @@ -63,11 +57,11 @@ GFLOW: 0.875 0.061343 0.0426947 2.99027 2.98659 2.96661 2.95314 0.00101783 GFLOW: 0.9375 0.0548425 0.0373367 2.99172 2.98826 2.9712 2.95856 0.000714324 GFLOW: 1 0.0494347 0.0329748 2.99285 2.98962 2.97487 2.963 0.000480026 Number of steps = 16 -Time to complete flow = 1.344450e-01 seconds +Time to complete flow = 1.090231e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.391628e-01 seconds -exit: Tue Jan 5 19:00:03 2021 +Time = 1.100101e-01 seconds +exit: Thu Jan 7 00:13:29 2021 diff --git a/wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-out index 0cae898f5..c9a71ca45 100644 --- a/wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-out +++ b/wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = MPI (portable), with 1 nodes Host(0) = computer Username = bazavov -start: Tue Jan 5 19:01:10 2021 +start: Thu Jan 7 00:00:30 2021 Options selected... Generic double precision @@ -19,12 +19,6 @@ ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.2 MBytes per node for lattice Made lattice Made nn gathers -0 --0.5555555555555556 --1.1953125 -0.3333333333333333 -0.9375 -0.5333333333333333 Integrator = INTEGRATOR_CF3 Finished setup @@ -39,7 +33,7 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.769066e-04 +Time to reload gauge configuration = 1.740456e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 @@ -63,11 +57,11 @@ GFLOW: 0.875 0.06134298487857923 0.04269474465683353 2.990272643992486 2.9865861 GFLOW: 0.9375 0.05484248118210697 0.0373366634841456 2.991715443133546 2.988261650798499 2.971196422806157 2.958558496229756 0.0007143205679203317 GFLOW: 1 0.04943470001559129 0.03297475761403763 2.992854342352627 2.989615607391197 2.974869955652791 2.962995534693379 0.0004800257456124206 Number of steps = 16 -Time to complete flow = 1.236310e-01 seconds +Time to complete flow = 1.222470e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.250379e-01 seconds -exit: Tue Jan 5 19:01:10 2021 +Time = 1.236498e-01 seconds +exit: Thu Jan 7 00:00:30 2021 From 29dd902b933b6811b82f9d70b1a4014ba00de766 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Thu, 7 Jan 2021 00:29:46 -0500 Subject: [PATCH 28/49] Minor cleanups --- wilson_flow/test_new/cf3_coeff.dat | 6 ------ wilson_flow/test_new/cf3adpt_coeff.dat | 9 --------- 2 files changed, 15 deletions(-) delete mode 100644 wilson_flow/test_new/cf3_coeff.dat delete mode 100644 wilson_flow/test_new/cf3adpt_coeff.dat diff --git a/wilson_flow/test_new/cf3_coeff.dat b/wilson_flow/test_new/cf3_coeff.dat deleted file mode 100644 index 47ac1770f..000000000 --- a/wilson_flow/test_new/cf3_coeff.dat +++ /dev/null @@ -1,6 +0,0 @@ -0.0000000000000000e+00 --5.5555555555555558e-01 --1.1953125000000000e+00 -3.3333333333333331e-01 -9.3750000000000000e-01 -5.3333333333333333e-01 diff --git a/wilson_flow/test_new/cf3adpt_coeff.dat b/wilson_flow/test_new/cf3adpt_coeff.dat deleted file mode 100644 index 90ebe7665..000000000 --- a/wilson_flow/test_new/cf3adpt_coeff.dat +++ /dev/null @@ -1,9 +0,0 @@ -0.0000000000000000e+00 --5.3125000000000000e-01 --1.1851851851851851e+00 -2.5000000000000000e-01 -8.8888888888888884e-01 -7.5000000000000000e-01 --1.0000000000000000e+00 -2.0000000000000000e+00 -0.0000000000000000e+00 From c29a2dc6ce4078b6f0e9d8c586d6e634dc708777 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Sat, 16 Jan 2021 15:52:38 -0500 Subject: [PATCH 29/49] Minor typos fixed --- wilson_flow/setup.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/wilson_flow/setup.c b/wilson_flow/setup.c index 29c7c5f6d..0ec77fe87 100644 --- a/wilson_flow/setup.c +++ b/wilson_flow/setup.c @@ -294,7 +294,7 @@ initialize_integrator() N_stages = 3; p_order = 3; // Ralston coefficients - // NOTE: indexing is shifted by -1 in C compared to usual Bucher tables + // NOTE: indexing is shifted by -1 in C compared to usual Butcher tables a_RK[1][0] = 1/2.; a_RK[2][0] = 0; a_RK[2][1] = 3/4.; b_RK[0] = 2/9.; b_RK[1] = 1/3.; b_RK[2] = 4/9.; @@ -302,7 +302,7 @@ initialize_integrator() #elif GF_INTEGRATOR==INTEGRATOR_RKMK4 N_stages = 4; p_order = 4; - // NOTE: indexing is shifted by -1 in C compared to usual Bucher tables + // NOTE: indexing is shifted by -1 in C compared to usual Butcher tables a_RK[1][0] = 1/3.; a_RK[2][0] = -1/3.; a_RK[2][1] = 1; @@ -323,7 +323,7 @@ initialize_integrator() N_stages = 6; p_order = 5; // Butcher coefficients - // NOTE: indexing is shifted by -1 in C compared to usual Bucher tables + // NOTE: indexing is shifted by -1 in C compared to usual Butcher tables a_RK[1][0] = 1/4.; a_RK[2][0] = 1/8.; a_RK[2][1] = 1/8.; a_RK[3][0] = 0; a_RK[3][1] = -1/2.; a_RK[3][2] = 1; @@ -333,7 +333,7 @@ initialize_integrator() b_RK[0] = 7/90.; b_RK[1] = 0; b_RK[2] = 32/90.; b_RK[3] = 12/90.; b_RK[4] = 32/90.; b_RK[5] = 7/90.; // Dormand-Prince coefficients - // NOTE: indexing is shifted by -1 in C compared to usual Bucher tables + // NOTE: indexing is shifted by -1 in C compared to usual Butcher tables /* a_RK[1][0] = 1/5.; a_RK[2][0] = 3/40.; a_RK[2][1] = 9/40.; a_RK[3][0] = 44/45.; a_RK[3][1] = -56/15.; a_RK[3][2] = 32/9.; @@ -348,7 +348,7 @@ initialize_integrator() N_stages = 13; p_order = 8; // Dormand-Prince coefficients - // NOTE: indexing is shifted by -1 in C compared to usual Bucher tables + // NOTE: indexing is shifted by -1 in C compared to usual Butcher tables a_RK[1][0] = 1/18.; a_RK[2][0] = 1/48.; a_RK[2][1] = 1/16.; a_RK[3][0] = 1/32.; a_RK[3][1] = 0; a_RK[3][2] = 3/32.; @@ -465,7 +465,7 @@ initialize_integrator() // Bogacki-Shampine integrator based on Ralston coefficients // NOTE: there is a fourth stage that produces a lower order approximation N_stages = 3; - // NOTE: indexing is shifted by -1 in C compared to usual Bucher tables + // NOTE: indexing is shifted by -1 in C compared to usual Butcher tables a_RK[1][0] = 1/2.; a_RK[2][0] = 0; a_RK[2][1] = 3/4.; b_RK[0] = 2/9.; b_RK[1] = 1/3.; b_RK[2] = 4/9.; From 610eab71cafc76271bd39dc6c7a5895a4b5a5293 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Wed, 26 Oct 2022 18:01:27 -0400 Subject: [PATCH 30/49] Join various integrators from feature/wilson_flow_2 and flow anisotropy from feature/anisotropic_wilson_flow --- wilson_flow/Make_template | 44 ++++++++++++ wilson_flow/lattice.h | 3 + wilson_flow/params.h | 3 + wilson_flow/setup.c | 6 ++ wilson_flow/staple.c | 19 ++++++ .../wilson_flow_a.symanzik.1.sample-in | 13 ++++ .../wilson_flow_a.symanzik.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_a.symanzik.2.sample-in | 13 ++++ .../wilson_flow_a.symanzik.2.sample-out | 67 +++++++++++++++++++ .../test_new/wilson_flow_a.wilson.1.sample-in | 13 ++++ .../wilson_flow_a.wilson.1.sample-out | 67 +++++++++++++++++++ .../test_new/wilson_flow_a.wilson.2.sample-in | 13 ++++ .../wilson_flow_a.wilson.2.sample-out | 67 +++++++++++++++++++ 13 files changed, 395 insertions(+) create mode 100644 wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_a.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_a.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_a.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_a.wilson.2.sample-out diff --git a/wilson_flow/Make_template b/wilson_flow/Make_template index 262882ecc..84c284fef 100644 --- a/wilson_flow/Make_template +++ b/wilson_flow/Make_template @@ -111,46 +111,90 @@ wilson_flow:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_LUSCHER" \ +wilson_flow_a:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_LUSCHER -DANISOTROPY" \ + wilson_flow_cf3:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_CF3" \ +wilson_flow_cf3_a:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_CF3 -DANISOTROPY" \ + wilson_flow_ck:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_CK" \ +wilson_flow_ck_a:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_CK -DANISOTROPY" \ + wilson_flow_bbb:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_BBB" \ +wilson_flow_bbb_a:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_BBB -DANISOTROPY" \ + wilson_flow_rkmk3:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_RKMK3" \ +wilson_flow_rkmk3_a:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_RKMK3 -DANISOTROPY" \ + wilson_flow_rkmk4:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_RKMK4" \ +wilson_flow_rkmk4_a:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_RKMK4 -DANISOTROPY" \ + wilson_flow_rkmk5:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_RKMK5" \ +wilson_flow_rkmk5_a:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_RKMK5 -DANISOTROPY" \ + wilson_flow_rkmk8:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_RKMK8" \ +wilson_flow_rkmk8_a:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_RKMK8 -DANISOTROPY" \ + wilson_flow_adpt:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_ADAPT_LUSCHER" \ +wilson_flow_adpt_a:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_ADAPT_LUSCHER -DANISOTROPY" \ + wilson_flow_adpt_cf3:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_ADAPT_CF3" \ +wilson_flow_adpt_cf3_a:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_ADAPT_CF3 -DANISOTROPY" \ + wilson_flow_adpt_bs:: ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_ADAPT_BS" \ +wilson_flow_adpt_bs_a:: + ${MAKE} -f ${MAKEFILE} target "MYTARGET= $@" \ + "DEFINES= -DGF_INTEGRATOR=INTEGRATOR_ADAPT_BS -DANISOTROPY" \ + clean: -/bin/rm -f *.o diff --git a/wilson_flow/lattice.h b/wilson_flow/lattice.h index f0381a140..a9a52c202 100644 --- a/wilson_flow/lattice.h +++ b/wilson_flow/lattice.h @@ -71,6 +71,9 @@ typedef struct { /* Initialization parameters */ EXTERN int nx,ny,nz,nt; EXTERN size_t volume; +#ifdef ANISOTROPY +EXTERN Real ani; +#endif EXTERN double g_ssplaq, g_stplaq; EXTERN double_complex linktrsum; EXTERN u_int32type nersc_checksum; diff --git a/wilson_flow/params.h b/wilson_flow/params.h index 174fd3ef9..4b470281a 100644 --- a/wilson_flow/params.h +++ b/wilson_flow/params.h @@ -11,6 +11,9 @@ typedef struct { int nx,ny,nz,nt; /* lattice dimensions */ /* FLOW PARAMETERS */ +#ifdef ANISOTROPY + Real ani; +#endif Real stepsize; /* wilson flow time integration step size */ Real stoptime; /* maximum flow time, -1 means auto-determined */ int exp_order; /* where to end series expansion of exponential */ diff --git a/wilson_flow/setup.c b/wilson_flow/setup.c index 0ec77fe87..c0597c219 100644 --- a/wilson_flow/setup.c +++ b/wilson_flow/setup.c @@ -69,6 +69,9 @@ initial_set() IF_OK status += get_i(stdin, prompt,"ny", &par_buf.ny ); IF_OK status += get_i(stdin, prompt,"nz", &par_buf.nz ); IF_OK status += get_i(stdin, prompt,"nt", &par_buf.nt ); +#ifdef ANISOTROPY + IF_OK status += get_f(stdin, prompt,"anisotropy", &par_buf.ani ); +#endif if(status>0) par_buf.stopflag=1; @@ -87,6 +90,9 @@ initial_set() ny=par_buf.ny; nz=par_buf.nz; nt=par_buf.nt; +#ifdef ANISOTROPY + ani=par_buf.ani; +#endif number_of_nodes = numnodes(); volume=(size_t)nx*ny*nz*nt; diff --git a/wilson_flow/staple.c b/wilson_flow/staple.c index 322d8270f..b7de6fe6a 100644 --- a/wilson_flow/staple.c +++ b/wilson_flow/staple.c @@ -223,6 +223,9 @@ staple() int dir1, dir2; Real coeff1x1, coeff1x2, coeffz=1/12.; field_offset lnk1, lnk2, stp; +#ifdef ANISOTROPY + Real tmp; +#endif /* Pick the coefficients for each loop contributing to the staple */ if( stapleflag==WILSON ) { @@ -247,6 +250,21 @@ staple() lnk2 = F_OFFSET(link[dir2]); stp = F_OFFSET(staple[dir1]); +#ifdef ANISOTROPY + if(dir2==TUP) + tmp=ani*ani; + else + tmp=1.0; + + /* Adds 1x1 (Wilson) contributions */ + wilson_staple(dir1, dir2, lnk1, lnk2, tmp*coeff1x1, stp); + + /* Adds 1x2 (Symanzik tree level) contributions -- both + for Symanzik and Zeuthen flow */ + if( stapleflag!=WILSON ) + symanzik1x2_staple(dir1, dir2, lnk1, lnk2, tmp*coeff1x2, stp); +#else + /* Adds 1x1 (Wilson) contributions */ wilson_staple(dir1, dir2, lnk1, lnk2, coeff1x1, stp); @@ -254,6 +272,7 @@ staple() for Symanzik and Zeuthen flow */ if( stapleflag!=WILSON ) symanzik1x2_staple(dir1, dir2, lnk1, lnk2, coeff1x2, stp); +#endif } /* end: dir2 loop */ diff --git a/wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-out new file mode 100644 index 000000000..ff5377f01 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 17:48:30 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 8.001328e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 2.617836e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.688143 0.693495 2.48792 2.65889 2.01025 2.19915 -0.00155342 +GFLOW: 0.125 0.382128 0.439688 2.76206 2.86621 2.46472 2.62821 -0.00703306 +GFLOW: 0.1875 0.235814 0.291526 2.87308 2.92872 2.68319 2.78865 0.00292922 +GFLOW: 0.25 0.159764 0.202791 2.92306 2.95457 2.79697 2.86409 0.00567577 +GFLOW: 0.3125 0.11573 0.147464 2.94613 2.96562 2.86065 2.90489 0.00593391 +GFLOW: 0.375 0.087976 0.111251 2.95319 2.96684 2.89854 2.92902 0.00542645 +GFLOW: 0.4375 0.0692226 0.0863453 2.94332 2.95561 2.92181 2.94391 0.00496253 +GFLOW: 0.5 0.0557347 0.0683884 2.90438 2.92097 2.93535 2.95264 0.00474364 +GFLOW: 0.5625 0.0454319 0.0549334 2.81326 2.84309 2.94092 2.95609 0.00490567 +GFLOW: 0.625 0.0373176 0.0449248 2.66301 2.71234 2.94007 2.95456 0.00518208 +GFLOW: 0.6875 0.03137 0.0383558 2.52425 2.57688 2.93764 2.95038 0.00490585 +GFLOW: 0.75 0.027597 0.0347438 2.4761 2.50323 2.93815 2.94704 0.00380924 +GFLOW: 0.8125 0.0251901 0.0325917 2.46989 2.47071 2.9395 2.94451 0.00243362 +GFLOW: 0.875 0.0235969 0.0311476 2.4638 2.45261 2.93988 2.9421 0.00119829 +GFLOW: 0.9375 0.022608 0.0302365 2.45618 2.44535 2.93955 2.94001 0.000196934 +GFLOW: 1 0.0220552 0.0297286 2.4473 2.44495 2.93867 2.93825 -0.000625787 +Number of steps = 16 +Time to complete flow = 3.700421e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 3.736341e-01 seconds +exit: Wed Oct 26 17:48:31 2022 + diff --git a/wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-out new file mode 100644 index 000000000..25dedfa56 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 17:48:42 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 8.070469e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.770424e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.6881428371613673 0.6934950078131294 2.487916630113939 2.658889691684759 2.010248273550512 2.199153700433649 -0.001553424551043843 +GFLOW: 0.125 0.3821280168281357 0.4396881820366857 2.762062710157046 2.866213696019443 2.464717125439456 2.628205719627915 -0.007033066201880746 +GFLOW: 0.1875 0.2358140410528544 0.2915255522773146 2.873084962015799 2.928716589259767 2.683186372057216 2.788649442078155 0.002929231643665164 +GFLOW: 0.25 0.1597636460382957 0.2027911443056737 2.923060043206263 2.95456855787797 2.79696951900396 2.864093056622294 0.005675767505594192 +GFLOW: 0.3125 0.1157299754307932 0.1474635056211578 2.946134831073819 2.965615345716365 2.860648822945749 2.904889170460199 0.005933909015408015 +GFLOW: 0.375 0.08797597501968515 0.1112505348132824 2.953185758856695 2.966844011178477 2.898540773032799 2.929019010248645 0.005426437060589573 +GFLOW: 0.4375 0.06922260927017927 0.08634525313599188 2.943321300339459 2.955606041700563 2.921808499608632 2.943913915535713 0.004962530473768031 +GFLOW: 0.5 0.05573472116540258 0.06838837548558414 2.904384546039671 2.920969564450134 2.935350497135339 2.95264438463462 0.004743643650200071 +GFLOW: 0.5625 0.04543185356443363 0.05493339099528048 2.813262789381538 2.843085883205708 2.940921140863098 2.956086241481405 0.004905681638953107 +GFLOW: 0.625 0.03731756245092145 0.04492480249763361 2.663004389914133 2.712336206778325 2.940071376160509 2.95456134751488 0.005182081573120174 +GFLOW: 0.6875 0.03136999139091349 0.03835581600568759 2.524245250450699 2.576877748698801 2.937641174821609 2.95038121537662 0.004905857064113163 +GFLOW: 0.75 0.02759696622940664 0.03474381969494958 2.476097843829928 2.503233124147457 2.938154781569015 2.947042708888492 0.003809241679936024 +GFLOW: 0.8125 0.02519012881983634 0.03259166639187085 2.469887853463304 2.470708179966842 2.939501234599324 2.944514178367853 0.00243362367566834 +GFLOW: 0.875 0.02359694336950003 0.0311475664709202 2.463798899585927 2.452605119518793 2.939881995442416 2.942097282661063 0.001198292932038555 +GFLOW: 0.9375 0.02260801072881476 0.03023649624969676 2.456176237754999 2.445352222306607 2.939548804307395 2.940013560349347 0.0001969349289674609 +GFLOW: 1 0.02205524213839188 0.02972861893377215 2.447300220463655 2.444952047043663 2.938672530681634 2.938251988441712 -0.0006257815885930972 +Number of steps = 16 +Time to complete flow = 4.336300e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 4.379818e-01 seconds +exit: Wed Oct 26 17:48:42 2022 + diff --git a/wilson_flow/test_new/wilson_flow_a.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_a.wilson.1.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_a.wilson.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_a.wilson.1.sample-out new file mode 100644 index 000000000..4051f242a --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_a.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 17:42:08 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 7.469654e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 2.610683e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.771612 0.764046 2.34805 2.51098 1.82512 1.98514 0.00915371 +GFLOW: 0.125 0.478855 0.528177 2.64934 2.79553 2.28796 2.48258 -0.0141816 +GFLOW: 0.1875 0.304259 0.368261 2.79944 2.8946 2.55152 2.70346 -0.00893506 +GFLOW: 0.25 0.205937 0.263002 2.87866 2.93726 2.70553 2.81197 -0.00223137 +GFLOW: 0.3125 0.147608 0.193081 2.92239 2.95895 2.79834 2.87149 0.00141071 +GFLOW: 0.375 0.110779 0.145676 2.9477 2.97126 2.85628 2.90703 0.0029908 +GFLOW: 0.4375 0.0862087 0.112677 2.96309 2.97882 2.89387 2.92972 0.00348675 +GFLOW: 0.5 0.0690457 0.0890562 2.97292 2.98376 2.91922 2.94499 0.00343675 +GFLOW: 0.5625 0.0565926 0.0716978 2.97948 2.98714 2.93695 2.95574 0.00312997 +GFLOW: 0.625 0.0472666 0.0586412 2.98404 2.98957 2.94973 2.96359 0.00272282 +GFLOW: 0.6875 0.0400942 0.0486212 2.98732 2.99136 2.95922 2.96949 0.00229792 +GFLOW: 0.75 0.0344522 0.0407982 2.98974 2.99272 2.96641 2.97406 0.00189702 +GFLOW: 0.8125 0.0299282 0.0345991 2.99157 2.99378 2.97199 2.97767 0.00153943 +GFLOW: 0.875 0.0262407 0.0296223 2.99299 2.99463 2.97637 2.98057 0.00123202 +GFLOW: 0.9375 0.0231928 0.02558 2.9941 2.99532 2.97987 2.98295 0.000974731 +GFLOW: 1 0.0206429 0.0222619 2.99499 2.99588 2.98269 2.98492 0.000763828 +Number of steps = 16 +Time to complete flow = 1.332152e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.367610e-01 seconds +exit: Wed Oct 26 17:42:08 2022 + diff --git a/wilson_flow/test_new/wilson_flow_a.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_a.wilson.2.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_a.wilson.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_a.wilson.2.sample-out new file mode 100644 index 000000000..77d57a926 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_a.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 17:44:53 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 7.500648e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.770424e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.7716121155403498 0.764046359764188 2.348047981504413 2.510977839760153 1.825117821572047 1.985142786629284 0.009153697879548001 +GFLOW: 0.125 0.478855219136734 0.5281771694316109 2.649342954032534 2.795530865833582 2.287962215716467 2.482581095804806 -0.01418163009317936 +GFLOW: 0.1875 0.3042588034434339 0.368261150446055 2.799443964615125 2.894596355658547 2.551523348582002 2.70346361791159 -0.00893506728913844 +GFLOW: 0.25 0.2059367815531412 0.2630019965432058 2.87866246851219 2.937260361529871 2.705527929322217 2.811972899836633 -0.002231390406420625 +GFLOW: 0.3125 0.1476082428091615 0.1930806904768138 2.922391322003677 2.958947951380432 2.798337607024589 2.871491823670925 0.001410701548490571 +GFLOW: 0.375 0.1107790742511716 0.1456757595817022 2.947700099550414 2.971256503432909 2.856276659502127 2.907033394919212 0.002990795311506209 +GFLOW: 0.4375 0.08620873342389505 0.1126770034703566 2.963093770352662 2.978817603961845 2.893870685544353 2.929715857422741 0.0034867580524232 +GFLOW: 0.5 0.06904571334502346 0.08905620930573557 2.972922128950035 2.983755813350964 2.919223410571471 2.944989858881292 0.003436752226773621 +GFLOW: 0.5625 0.05659261882253541 0.07169782493085289 2.97948419619821 2.987144343947209 2.936945344498199 2.955738877810572 0.003129979325942315 +GFLOW: 0.625 0.04726662915823671 0.05864116609010809 2.984042262753859 2.989566345255892 2.949733339550922 2.963586292407834 0.002722827824076729 +GFLOW: 0.6875 0.04009418849289782 0.04862118933892547 2.987317767375333 2.991357696295236 2.959216847045845 2.969494852810398 0.002297921979429834 +GFLOW: 0.75 0.03445220806997711 0.04079822916353455 2.989739900074048 2.992721343145224 2.966414520613639 2.974061040092656 0.001897023843040622 +GFLOW: 0.8125 0.02992817300858469 0.03459910506239366 2.991574161687673 2.993784975059033 2.971985055062049 2.977668497557393 0.001539433857324679 +GFLOW: 0.875 0.02624073755366365 0.02962228776361844 2.992991040776793 2.994631823078093 2.976368305368149 2.980572238874064 0.001232018347743351 +GFLOW: 0.9375 0.02319280685505681 0.02557999181631904 2.994103885417432 2.995317888726593 2.979866794178076 2.982946883616409 0.0009747348219404205 +GFLOW: 1 0.02064290122224121 0.02226186919907126 2.994990449654293 2.9958819549761 2.982694113388896 2.984915276270505 0.0007638305711427885 +Number of steps = 16 +Time to complete flow = 1.574640e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.615810e-01 seconds +exit: Wed Oct 26 17:44:53 2022 + From a6ce0c00734154cf90df30092c4e6aff5c16614d Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Wed, 26 Oct 2022 19:45:45 -0400 Subject: [PATCH 31/49] Anisotropic tests for CF3, CK, BBB integrators --- .../wilson_flow_bbb_a.symanzik.1.sample-in | 13 ++++ .../wilson_flow_bbb_a.symanzik.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_bbb_a.symanzik.2.sample-in | 13 ++++ .../wilson_flow_bbb_a.symanzik.2.sample-out | 67 +++++++++++++++++++ .../wilson_flow_bbb_a.wilson.1.sample-in | 13 ++++ .../wilson_flow_bbb_a.wilson.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_bbb_a.wilson.2.sample-in | 13 ++++ .../wilson_flow_bbb_a.wilson.2.sample-out | 67 +++++++++++++++++++ .../wilson_flow_cf3_a.symanzik.1.sample-in | 13 ++++ .../wilson_flow_cf3_a.symanzik.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_cf3_a.symanzik.2.sample-in | 13 ++++ .../wilson_flow_cf3_a.symanzik.2.sample-out | 67 +++++++++++++++++++ .../wilson_flow_cf3_a.wilson.1.sample-in | 13 ++++ .../wilson_flow_cf3_a.wilson.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_cf3_a.wilson.2.sample-in | 13 ++++ .../wilson_flow_cf3_a.wilson.2.sample-out | 67 +++++++++++++++++++ .../wilson_flow_ck_a.symanzik.1.sample-in | 13 ++++ .../wilson_flow_ck_a.symanzik.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_ck_a.symanzik.2.sample-in | 13 ++++ .../wilson_flow_ck_a.symanzik.2.sample-out | 67 +++++++++++++++++++ .../wilson_flow_ck_a.wilson.1.sample-in | 13 ++++ .../wilson_flow_ck_a.wilson.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_ck_a.wilson.2.sample-in | 13 ++++ .../wilson_flow_ck_a.wilson.2.sample-out | 67 +++++++++++++++++++ 24 files changed, 960 insertions(+) create mode 100644 wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-out new file mode 100644 index 000000000..7de848f8d --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 19:39:12 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_BBB +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.031326e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.699562e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.680912 0.690137 2.49722 2.66108 2.02002 2.2069 -0.00332275 +GFLOW: 0.125 0.381186 0.438905 2.76534 2.86683 2.4678 2.62781 -0.00543816 +GFLOW: 0.1875 0.235768 0.291062 2.87537 2.93041 2.68458 2.7887 0.00307912 +GFLOW: 0.25 0.159808 0.202618 2.92626 2.95753 2.79789 2.86441 0.00571559 +GFLOW: 0.3125 0.11584 0.147486 2.95238 2.9714 2.86166 2.90544 0.00579676 +GFLOW: 0.375 0.0881965 0.11145 2.96708 2.97937 2.90017 2.93002 0.00516753 +GFLOW: 0.4375 0.0696664 0.0867918 2.97604 2.98435 2.92494 2.94588 0.00439614 +GFLOW: 0.5 0.056604 0.0692307 2.98187 2.98768 2.94175 2.95674 0.00364921 +GFLOW: 0.5625 0.0470175 0.0563052 2.98587 2.99002 2.95366 2.96453 0.00297563 +GFLOW: 0.625 0.0397478 0.0465352 2.98873 2.99173 2.9624 2.97033 0.00238897 +GFLOW: 0.6875 0.0340849 0.0389896 2.99084 2.99303 2.96899 2.97478 0.00189088 +GFLOW: 0.75 0.0295749 0.0330574 2.99244 2.99404 2.97408 2.97828 0.00147748 +GFLOW: 0.8125 0.0259162 0.0283227 2.99368 2.99484 2.97808 2.98109 0.00114131 +GFLOW: 0.875 0.0229019 0.0244933 2.99466 2.99549 2.98126 2.98339 0.00087284 +GFLOW: 0.9375 0.0203858 0.021359 2.99544 2.99603 2.98384 2.98529 0.000661748 +GFLOW: 1 0.0182618 0.0187657 2.99607 2.99647 2.98594 2.98688 0.000497921 +Number of steps = 16 +Time to complete flow = 6.886749e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 6.895962e-01 seconds +exit: Wed Oct 26 19:39:13 2022 + diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-out new file mode 100644 index 000000000..55b17097d --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 19:39:13 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_BBB +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.231598e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.720356e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.6809116840679351 0.690136924370674 2.497223870236982 2.661075349926381 2.020024076974875 2.206901036327745 -0.003322700295870131 +GFLOW: 0.125 0.3811862515393328 0.4389044997330094 2.765337380815808 2.866830017361457 2.467797969514105 2.627807361581681 -0.005438122274424876 +GFLOW: 0.1875 0.2357684614201129 0.2910624497466618 2.875370029267782 2.930412275354711 2.684583936421979 2.788701229663287 0.003079130424503473 +GFLOW: 0.25 0.1598080801382245 0.2026183147491871 2.926262874460741 2.957533811054751 2.79788696430788 2.864406092244833 0.00571557869321053 +GFLOW: 0.3125 0.115839526441023 0.1474855839829174 2.952380340777466 2.971399240187926 2.861661010314826 2.905439936934165 0.005796757534741608 +GFLOW: 0.375 0.08819644886805003 0.1114501297187345 2.967082295613195 2.979366970174433 2.900173012991228 2.930015823946523 0.005167525088126647 +GFLOW: 0.4375 0.06966640203534769 0.08679175129496437 2.976040078800055 2.984350942715283 2.924941295514826 2.94588225060716 0.004396133894436854 +GFLOW: 0.5 0.05660402583459126 0.06923068234821066 2.98186828182329 2.98767838241571 2.941745882921655 2.956742590011775 0.003649204099658769 +GFLOW: 0.5625 0.04701749863624086 0.05630519027730502 2.985866693568697 2.990017278863144 2.953656937930017 2.964530343917456 0.002975632305746121 +GFLOW: 0.625 0.03974776505350799 0.0465351799733837 2.988727077158165 2.991730653471899 2.962399245675078 2.97032814460557 0.002388965151703961 +GFLOW: 0.6875 0.03408489428203264 0.03898958806458196 2.990841323803965 2.99302839631758 2.968995462303545 2.974777859106538 0.001890886754312548 +GFLOW: 0.75 0.02957485744291214 0.03305744074768718 2.992444568822079 2.994038342825716 2.974083327746368 2.97827887298247 0.001477480512370471 +GFLOW: 0.8125 0.02591617028824781 0.02832271736337153 2.993685383081123 2.994841934597479 2.978079003898498 2.981090333503039 0.001141308676007481 +GFLOW: 0.875 0.02290189987380389 0.02449332090338607 2.994661938605119 2.995493138835174 2.981264834219939 2.983386690938095 0.0008728412071573873 +GFLOW: 0.9375 0.02038580316023873 0.02135905455129621 2.995441555664428 2.99602896896278 2.983838596907122 2.985289226953014 0.0006617473585363039 +GFLOW: 1 0.01826184433376579 0.01876567391651689 2.996071790065756 2.996475582993588 2.985942419346051 2.986884664557197 0.0004979229865748972 +Number of steps = 16 +Time to complete flow = 8.135738e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 8.149431e-01 seconds +exit: Wed Oct 26 19:39:14 2022 + diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-out new file mode 100644 index 000000000..b12ad9607 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 19:39:12 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_BBB +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.959801e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.794930e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.76961 0.763256 2.34838 2.51114 1.82616 1.98769 0.00857829 +GFLOW: 0.125 0.478178 0.528223 2.6491 2.79387 2.28774 2.48154 -0.0140417 +GFLOW: 0.1875 0.30431 0.36831 2.79945 2.89396 2.55154 2.70272 -0.00876675 +GFLOW: 0.25 0.206052 0.263003 2.87867 2.93705 2.70556 2.81164 -0.00219859 +GFLOW: 0.3125 0.147689 0.193084 2.92238 2.95887 2.79833 2.87134 0.0014036 +GFLOW: 0.375 0.110829 0.145688 2.94768 2.97122 2.85625 2.90696 0.0029836 +GFLOW: 0.4375 0.0862404 0.112693 2.96308 2.9788 2.89384 2.92967 0.00348414 +GFLOW: 0.5 0.0690664 0.0890726 2.97291 2.98375 2.9192 2.94496 0.00343645 +GFLOW: 0.5625 0.0566067 0.0717123 2.97948 2.98714 2.93693 2.95572 0.00313025 +GFLOW: 0.625 0.0472767 0.0586534 2.98404 2.98956 2.94972 2.96357 0.00272301 +GFLOW: 0.6875 0.0401018 0.0486314 2.98731 2.99135 2.9592 2.96949 0.00229791 +GFLOW: 0.75 0.0344581 0.0408067 2.98974 2.99272 2.9664 2.97405 0.00189687 +GFLOW: 0.8125 0.0299329 0.0346061 2.99157 2.99378 2.97198 2.97766 0.00153923 +GFLOW: 0.875 0.0262447 0.0296281 2.99299 2.99463 2.97636 2.98057 0.00123183 +GFLOW: 0.9375 0.0231961 0.0255849 2.9941 2.99532 2.97986 2.98294 0.000974571 +GFLOW: 1 0.0206458 0.022266 2.99499 2.99588 2.98269 2.98491 0.000763708 +Number of steps = 16 +Time to complete flow = 2.215741e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.224879e-01 seconds +exit: Wed Oct 26 19:39:12 2022 + diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-out new file mode 100644 index 000000000..30d988beb --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 19:39:12 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_BBB +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.040863e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.720356e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.7696098891237486 0.7632559228342112 2.348383390803702 2.51113779109884 1.826163517964385 1.98768902430095 0.008578320807698313 +GFLOW: 0.125 0.4781783017795861 0.5282227184104504 2.649104605193846 2.79387444020168 2.287742367216211 2.481542406779841 -0.01404166942153818 +GFLOW: 0.1875 0.3043100457645523 0.3683100325504173 2.799454044892673 2.893955591245278 2.551540097113174 2.702721959589126 -0.008766728722071602 +GFLOW: 0.25 0.2060524253375483 0.2630026922105951 2.878670301106864 2.937046086012825 2.705562327442228 2.811641193124116 -0.002198589159186234 +GFLOW: 0.3125 0.1476887269446797 0.1930837445588823 2.922377431380256 2.958866497247632 2.798333935556597 2.871339029907945 0.001403605480628473 +GFLOW: 0.375 0.1108293500160271 0.1456881098183746 2.947681115194511 2.971220220957458 2.856253753363344 2.906955928377443 0.002983593253980662 +GFLOW: 0.4375 0.08624036926920291 0.1126934244382075 2.96307742996048 2.978799273265316 2.893844533717628 2.929673051768737 0.003484141327097518 +GFLOW: 0.5 0.06906635371515354 0.08907255350304893 2.972909888920631 2.983745636964109 2.91920041197503 2.944964460769063 0.00343644350658006 +GFLOW: 0.5625 0.05660671630703124 0.07171232705543225 2.979475428959464 2.987138252767323 2.936926861788438 2.955722836399984 0.003130241264110632 +GFLOW: 0.625 0.04727672987001773 0.05865343093991943 2.984036012232065 2.989562455371724 2.949718922840967 2.963575561763427 0.002723003828507179 +GFLOW: 0.6875 0.04010176098074806 0.04863138001385752 2.98731324701577 2.991355063954811 2.959205638798628 2.969487284207318 0.002297901031574007 +GFLOW: 0.75 0.03445811667099188 0.04080666768200762 2.98973655564496 2.99271946640213 2.966405729930902 2.974055440577879 0.001896869891001917 +GFLOW: 0.8125 0.02993294009837732 0.03460611447342829 2.991571623723221 2.993783573793618 2.971978066227965 2.977664178868665 0.001539230053275891 +GFLOW: 0.875 0.0262446883653137 0.02962814305894805 2.992989067200138 2.994630734535157 2.976362667907107 2.98056878988413 0.001231821918525883 +GFLOW: 0.9375 0.02319615042417657 0.02558491329732821 2.994102317338131 2.995317014920507 2.979862185347807 2.982944050533165 0.0009745741507404028 +GFLOW: 1 0.02064577653969442 0.02226602977665494 2.994989181344406 2.995881234898003 2.98269030194665 2.984912897182801 0.0007637138225604164 +Number of steps = 16 +Time to complete flow = 2.566321e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.579710e-01 seconds +exit: Wed Oct 26 19:39:12 2022 + diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-out new file mode 100644 index 000000000..1e974f319 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 18:17:15 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.009869e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.794930e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.685661 0.691539 2.49026 2.66513 2.01462 2.20914 -0.00158456 +GFLOW: 0.125 0.381119 0.439251 2.76173 2.86588 2.46528 2.62963 -0.00690533 +GFLOW: 0.1875 0.235566 0.291511 2.8719 2.9275 2.68296 2.78872 0.00312779 +GFLOW: 0.25 0.159697 0.202811 2.92082 2.95251 2.79651 2.86386 0.00577613 +GFLOW: 0.3125 0.115686 0.147466 2.94157 2.96173 2.85991 2.90447 0.00607993 +GFLOW: 0.375 0.0879003 0.111207 2.94317 2.95876 2.89727 2.92832 0.00567332 +GFLOW: 0.4375 0.0690774 0.0862539 2.92115 2.93838 2.91946 2.94267 0.00544614 +GFLOW: 0.5 0.055519 0.068331 2.85941 2.88688 2.9311 2.95042 0.0056181 +GFLOW: 0.5625 0.0453046 0.0552751 2.74312 2.79014 2.9344 2.95266 0.00623353 +GFLOW: 0.625 0.0377325 0.0463746 2.60183 2.66409 2.93286 2.95079 0.00682033 +GFLOW: 0.6875 0.0326711 0.0411995 2.50974 2.56161 2.93157 2.94764 0.00687489 +GFLOW: 0.75 0.0295927 0.0385173 2.48094 2.50406 2.93201 2.94478 0.00642 +GFLOW: 0.8125 0.027768 0.0371372 2.47468 2.47266 2.93239 2.94193 0.00577421 +GFLOW: 0.875 0.0267813 0.0365531 2.47058 2.45557 2.93189 2.93898 0.00513585 +GFLOW: 0.9375 0.026401 0.0365579 2.46534 2.44887 2.93052 2.93618 0.00455004 +GFLOW: 1 0.0264556 0.0370072 2.45886 2.44916 2.92844 2.93366 0.00398724 +Number of steps = 16 +Time to complete flow = 3.673739e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 3.683002e-01 seconds +exit: Wed Oct 26 18:17:15 2022 + diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-out new file mode 100644 index 000000000..692640a25 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 18:17:15 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.019405e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.760887e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.6856607120142724 0.6915386007556226 2.490259090520325 2.665130186043828 2.014615384971077 2.209140985873434 -0.001584533264944331 +GFLOW: 0.125 0.3811193863432233 0.4392511648131131 2.761725713390957 2.865878814895864 2.465282942368236 2.629628984512853 -0.00690533743162124 +GFLOW: 0.1875 0.2355658931025102 0.2915107137771954 2.871897993913864 2.927498016823833 2.682959254365231 2.788716087658212 0.003127792173058328 +GFLOW: 0.25 0.1596972238125821 0.2028108409484413 2.920824862692038 2.952507853414912 2.79650585852006 2.863857589083135 0.005776129727567553 +GFLOW: 0.3125 0.1156859777245951 0.1474658799431158 2.941569955658396 2.961725411840393 2.859911117779783 2.904473886615087 0.006079923369740252 +GFLOW: 0.375 0.08790028551229737 0.1112072270453926 2.943172462220162 2.958763945699806 2.897269696572074 2.928321479451728 0.00567331810351665 +GFLOW: 0.4375 0.06907741356010769 0.08625388051247879 2.921150006525829 2.938383764639626 2.919457163475823 2.942667845138863 0.005446140686003436 +GFLOW: 0.5 0.05551898733183702 0.06833101193777388 2.859411728978429 2.886876334134476 2.931096813470482 2.950423433496975 0.005618087032236796 +GFLOW: 0.5625 0.04530459499911364 0.0552750866872892 2.74312521707594 2.790141246354013 2.934402842286001 2.952657201290844 0.006233532308565245 +GFLOW: 0.625 0.0377324869748966 0.0463745605323403 2.60183389214519 2.664093588479437 2.932856694317735 2.950794355341984 0.006820341244379956 +GFLOW: 0.6875 0.03267104926251781 0.04119946860004212 2.509739598334756 2.561605374221038 2.931567829778819 2.947640004205429 0.006874891351470366 +GFLOW: 0.75 0.02959266185390357 0.03851726386982698 2.480944402521809 2.504063916291041 2.932010477579551 2.944784594241413 0.006419994956274464 +GFLOW: 0.8125 0.02776801391805717 0.0371371547793204 2.474684508513712 2.472655968804852 2.932392841588005 2.941926482701848 0.005774209459538063 +GFLOW: 0.875 0.02678129392845017 0.03655312386978807 2.470579560089488 2.455573548724176 2.931886013703487 2.938982483145239 0.005135852251880555 +GFLOW: 0.9375 0.02640101140658564 0.0365578627077278 2.465343859433491 2.448871421446105 2.930523903351459 2.936179598659281 0.00455003036918984 +GFLOW: 1 0.0264555844795843 0.03700714527458681 2.458864900911031 2.44916440651395 2.928444532360039 2.933655576047524 0.003987242856075029 +Number of steps = 16 +Time to complete flow = 4.405348e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 4.418621e-01 seconds +exit: Wed Oct 26 18:17:16 2022 + diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-out new file mode 100644 index 000000000..36ce15f75 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 18:17:15 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.009869e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.914139e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.771394 0.763463 2.35003 2.51478 1.82731 1.98882 0.00923064 +GFLOW: 0.125 0.478302 0.527838 2.64993 2.7966 2.28877 2.48414 -0.0142487 +GFLOW: 0.1875 0.304007 0.368163 2.79962 2.89485 2.55177 2.70393 -0.00891263 +GFLOW: 0.25 0.205842 0.26298 2.87872 2.93733 2.70561 2.81212 -0.00220205 +GFLOW: 0.3125 0.147574 0.193082 2.92241 2.95897 2.79836 2.87154 0.00142841 +GFLOW: 0.375 0.110769 0.145685 2.94771 2.97126 2.85628 2.90705 0.00300051 +GFLOW: 0.4375 0.0862074 0.112688 2.96309 2.97882 2.89387 2.92972 0.0034924 +GFLOW: 0.5 0.0690479 0.0890668 2.97292 2.98376 2.91922 2.94499 0.00344027 +GFLOW: 0.5625 0.0565961 0.0717075 2.97948 2.98714 2.93694 2.95574 0.00313229 +GFLOW: 0.625 0.0472704 0.0586496 2.98404 2.98957 2.94973 2.96358 0.0027244 +GFLOW: 0.6875 0.0400978 0.0486285 2.98732 2.99136 2.95921 2.96949 0.00229902 +GFLOW: 0.75 0.0344556 0.0408045 2.98974 2.99272 2.96641 2.97406 0.0018978 +GFLOW: 0.8125 0.0299313 0.0346044 2.99157 2.99378 2.97198 2.97767 0.00154 +GFLOW: 0.875 0.0262435 0.0296268 2.99299 2.99463 2.97636 2.98057 0.00123245 +GFLOW: 0.9375 0.0231953 0.0255839 2.9941 2.99532 2.97986 2.98295 0.000975064 +GFLOW: 1 0.0206451 0.0222652 2.99499 2.99588 2.98269 2.98491 0.000764088 +Number of steps = 16 +Time to complete flow = 1.336310e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.345840e-01 seconds +exit: Wed Oct 26 18:17:15 2022 + diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-out new file mode 100644 index 000000000..9bba462d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 18:17:15 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.028942e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.748966e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.7713943927111765 0.7634630606084033 2.350031769691219 2.514781281388779 1.827313562898589 1.988817497601031 0.009230654874579167 +GFLOW: 0.125 0.4783018307034984 0.5278376531532574 2.649933337074537 2.796602206597927 2.288769917757433 2.484136382659088 -0.01424865826713364 +GFLOW: 0.1875 0.3040069885631543 0.3681627846516449 2.799621614853425 2.894850338243851 2.551766666190282 2.703927714696604 -0.008912601319346463 +GFLOW: 0.25 0.2058422906160145 0.262979678284835 2.878724388578633 2.937331644318232 2.705607394159806 2.812120892576583 -0.002202050045844614 +GFLOW: 0.3125 0.1475744998920776 0.1930818995378535 2.922412968295223 2.958971069424337 2.798361192884147 2.871542716078521 0.001428422660655399 +GFLOW: 0.375 0.1107686351529781 0.1456845684946342 2.947706530259039 2.971264443735393 2.856279349023733 2.907050793606105 0.003000514140365618 +GFLOW: 0.4375 0.08620742260587037 0.1126878068200699 2.96309444114991 2.978820138747814 2.893865730240932 2.929720711461997 0.003492403648589035 +GFLOW: 0.5 0.06904793934999515 0.089066845216787 2.972920751304649 2.983756288158857 2.919216134426235 2.944989834116293 0.003440281614678888 +GFLOW: 0.5625 0.05659609296831514 0.07170749421520603 2.97948223117384 2.987144020853274 2.936937870057502 2.955736989007537 0.00313229769814082 +GFLOW: 0.625 0.04727039539313523 0.05864964752886612 2.984040271481168 2.989565731350398 2.949726454903459 2.963583780173089 0.002724400950056311 +GFLOW: 0.6875 0.04009784923534647 0.04862850192146762 2.987315949290818 2.991357003111515 2.95921078668998 2.96949223887249 0.002299018937985342 +GFLOW: 0.75 0.0344556072120725 0.04080448248165022 2.989738309917906 2.992720659682238 2.966409296088727 2.974058541243195 0.001897809466426802 +GFLOW: 0.8125 0.02993126138306861 0.03460443411410587 2.991572797774242 2.993784337208987 2.971980594699287 2.977666196559655 0.001540011220568367 +GFLOW: 0.875 0.02624351365944406 0.02962682557763133 2.992989881229956 2.994631243018774 2.976364512972979 2.98057015833291 0.001232452629599708 +GFLOW: 0.9375 0.0231952897564902 0.02558385889964792 2.994102903052204 2.995317367964125 2.979863573115704 2.982945019270884 0.0009750678711856884 +GFLOW: 1 0.02064511780478029 0.022265170435597 2.994989617920152 2.995881490355348 2.982691375757261 2.984913612506852 0.0007640898777279815 +Number of steps = 16 +Time to complete flow = 1.573110e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.586409e-01 seconds +exit: Wed Oct 26 18:17:15 2022 + diff --git a/wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-out new file mode 100644 index 000000000..602dcef85 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 19:12:45 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_CK +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.990795e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.818771e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.680938 0.690218 2.49733 2.6621 2.02003 2.20799 -0.00319527 +GFLOW: 0.125 0.381292 0.439145 2.76514 2.8667 2.46742 2.62763 -0.00540695 +GFLOW: 0.1875 0.235858 0.291214 2.87528 2.93036 2.68439 2.78859 0.00308674 +GFLOW: 0.25 0.159862 0.20271 2.92622 2.95751 2.79778 2.86435 0.00571779 +GFLOW: 0.3125 0.115873 0.147543 2.95235 2.97139 2.8616 2.90541 0.00579957 +GFLOW: 0.375 0.0882184 0.111488 2.96707 2.97936 2.90013 2.93 0.00517051 +GFLOW: 0.4375 0.0696817 0.0868174 2.97603 2.98435 2.92492 2.94587 0.00439873 +GFLOW: 0.5 0.0566151 0.0692486 2.98186 2.98768 2.94173 2.95673 0.00365129 +GFLOW: 0.5625 0.0470259 0.056318 2.98586 2.99001 2.95364 2.96452 0.00297728 +GFLOW: 0.625 0.0397544 0.0465446 2.98872 2.99173 2.96239 2.97032 0.00239028 +GFLOW: 0.6875 0.0340902 0.0389966 2.99084 2.99303 2.96899 2.97477 0.00189194 +GFLOW: 0.75 0.0295793 0.0330628 2.99244 2.99404 2.97408 2.97827 0.00147834 +GFLOW: 0.8125 0.0259199 0.0283269 2.99368 2.99484 2.97807 2.98109 0.00114201 +GFLOW: 0.875 0.0229052 0.0244966 2.99466 2.99549 2.98126 2.98338 0.000873416 +GFLOW: 0.9375 0.0203887 0.0213617 2.99544 2.99603 2.98383 2.98529 0.000662213 +GFLOW: 1 0.0182644 0.0187679 2.99607 2.99647 2.98594 2.98688 0.000498303 +Number of steps = 16 +Time to complete flow = 5.821950e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 5.831180e-01 seconds +exit: Wed Oct 26 19:12:45 2022 + diff --git a/wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-out new file mode 100644 index 000000000..69ea5ae17 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 19:12:45 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_CK +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.138615e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.720356e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.6809377819170422 0.6902181570005429 2.497327080203822 2.662101369132726 2.020032465175898 2.207990831261513 -0.003195251660284452 +GFLOW: 0.125 0.3812919446039717 0.4391449000730085 2.765139521016314 2.866704601903391 2.467424753202904 2.627629690512798 -0.005406942801497071 +GFLOW: 0.1875 0.2358580480774822 0.2912140600109379 2.875278307468269 2.930361008767199 2.68438676047718 2.788589646334589 0.003086719269487925 +GFLOW: 0.25 0.1598622295875889 0.2027094922065367 2.926216372724614 2.957512524643475 2.797778639368051 2.864349763824201 0.005717768033481236 +GFLOW: 0.3125 0.1158730027844956 0.1475430686861201 2.952354867490176 2.971388357161363 2.861597378385369 2.905408281398696 0.005799561433818116 +GFLOW: 0.375 0.08821843131456017 0.1114878961153979 2.967067435028385 2.979360596534455 2.900133615481239 2.929996239071733 0.005170505069593634 +GFLOW: 0.4375 0.06968166819191007 0.08681741257864956 2.976030895897839 2.984346855192825 2.924915770502862 2.945869212566512 0.004398719978940459 +GFLOW: 0.5 0.05661514226578088 0.0692486247428698 2.981862317445508 2.987675581271479 2.941728689236643 2.956733400218209 0.003651281928596496 +GFLOW: 0.5625 0.04702592548854593 0.05631805148354909 2.985862657167883 2.990015257670538 2.953644970405664 2.964523560320854 0.002977274751346994 +GFLOW: 0.625 0.03975437883675583 0.04654460558943768 2.988724252754408 2.991729132400353 2.962390682144765 2.970322939662736 0.002390272717550616 +GFLOW: 0.6875 0.03409024532022537 0.03899663855579314 2.99083929211178 2.993027210148918 2.968989185938423 2.974773730352799 0.00189194004578856 +GFLOW: 0.75 0.02957930406506062 0.03306281844899556 2.992443072214822 2.994037388866296 2.974078627414533 2.978275501430931 0.001478336470299842 +GFLOW: 0.8125 0.02591995273776917 0.02832689776104513 2.993684256839014 2.994841146407275 2.978075412366036 2.981087509403208 0.001142007206937358 +GFLOW: 0.875 0.02290518310100093 0.02449663152696972 2.994661074055317 2.995492472059368 2.981262036796254 2.983384272468733 0.0008734115521185324 +GFLOW: 0.9375 0.0203887027122765 0.02136172418101899 2.995440879350614 2.99602839324106 2.983836377475227 2.985287116025093 0.0006622122104084191 +GFLOW: 1 0.01826444261148784 0.01876786428269259 2.996071251381579 2.996475077109209 2.985940627124168 2.98688279200371 0.0004983007764924855 +Number of steps = 16 +Time to complete flow = 6.897380e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 6.911170e-01 seconds +exit: Wed Oct 26 19:12:46 2022 + diff --git a/wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-out new file mode 100644 index 000000000..2d1dcb504 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 19:12:44 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 0.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_CK +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.969337e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.890297e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.769681 0.763276 2.34845 2.5114 1.8262 1.98787 0.00859189 +GFLOW: 0.125 0.47819 0.528265 2.64905 2.79386 2.28766 2.48153 -0.0140562 +GFLOW: 0.1875 0.304332 0.368349 2.79942 2.89393 2.55148 2.70268 -0.00876882 +GFLOW: 0.25 0.20607 0.263028 2.87865 2.93703 2.70553 2.81162 -0.00220008 +GFLOW: 0.3125 0.1477 0.1931 2.92237 2.95886 2.79831 2.87133 0.00140213 +GFLOW: 0.375 0.110837 0.145699 2.94768 2.97122 2.85624 2.90695 0.00298274 +GFLOW: 0.4375 0.0862455 0.112701 2.96307 2.9788 2.89384 2.92967 0.00348382 +GFLOW: 0.5 0.0690699 0.0890779 2.97291 2.98374 2.91919 2.94496 0.00343642 +GFLOW: 0.5625 0.0566093 0.0717162 2.97947 2.98714 2.93692 2.95572 0.00313033 +GFLOW: 0.625 0.0472786 0.0586563 2.98403 2.98956 2.94972 2.96357 0.00272312 +GFLOW: 0.6875 0.0401032 0.0486335 2.98731 2.99135 2.9592 2.96948 0.00229803 +GFLOW: 0.75 0.0344592 0.0408082 2.98974 2.99272 2.9664 2.97405 0.00189699 +GFLOW: 0.8125 0.0299338 0.0346073 2.99157 2.99378 2.97198 2.97766 0.00153933 +GFLOW: 0.875 0.0262454 0.0296291 2.99299 2.99463 2.97636 2.98057 0.00123191 +GFLOW: 0.9375 0.0231967 0.0255856 2.9941 2.99532 2.97986 2.98294 0.000974649 +GFLOW: 1 0.0206463 0.0222666 2.99499 2.99588 2.98269 2.98491 0.000763776 +Number of steps = 16 +Time to complete flow = 1.920221e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.929390e-01 seconds +exit: Wed Oct 26 19:12:44 2022 + diff --git a/wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-out new file mode 100644 index 000000000..4aef634af --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab +Username = bazavov +start: Wed Oct 26 19:12:44 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_CK +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.129078e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.729893e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.7696809187708318 0.7632755031149672 2.348454047673703 2.511403545710404 1.82620484416736 1.987873613175696 0.008591905850607939 +GFLOW: 0.125 0.4781900708089505 0.528264814152612 2.649053719447735 2.793856681455826 2.287662038766956 2.481532348146578 -0.0140562228825145 +GFLOW: 0.1875 0.3043319464280909 0.3683492195376011 2.799422216298391 2.893926630889087 2.551480923533672 2.702679815042122 -0.008768832391438742 +GFLOW: 0.25 0.2060701595086417 0.2630279061446056 2.878654216533527 2.937033026869737 2.705529059866122 2.811615892524802 -0.002200108828340588 +GFLOW: 0.3125 0.1477004834758075 0.1930998606768563 2.92236836553491 2.958860574405864 2.798314048211277 2.871325149223738 0.001402128923183742 +GFLOW: 0.375 0.1108370328810066 0.1456989046821651 2.947675611441401 2.971217157704384 2.856241072537238 2.906947847085453 0.002982731284848431 +GFLOW: 0.4375 0.08624553511525967 0.1127009190438239 2.963073958025953 2.978797498800507 2.893836132098094 2.929668012295812 0.003483807973074683 +GFLOW: 0.5 0.0690699509636402 0.08907788203973291 2.972907636058558 2.983744522196213 2.919194697679925 2.944961134490057 0.003436398801176777 +GFLOW: 0.5625 0.05660930565635393 0.07171618379264265 2.97947392753768 2.987137509682798 2.936922888208277 2.95572053789434 0.003130319228698291 +GFLOW: 0.625 0.04727865022963097 0.05865626574752075 2.984034985102145 2.989561936762165 2.949716102515725 2.963573911988476 0.002723121006786492 +GFLOW: 0.6875 0.04010322383149208 0.04863349376949944 2.987312526781939 2.99135468821998 2.959203598259797 2.969486061185557 0.002298021829581715 +GFLOW: 0.75 0.03445925819771115 0.04080826571016768 2.989736039070005 2.992719185462845 2.96640422696734 2.974054508100096 0.001896980948321158 +GFLOW: 0.8125 0.02993385057920675 0.03460733911954552 2.991571245581105 2.993783357922303 2.971976940594256 2.977663450030356 0.001539327267226655 +GFLOW: 0.875 0.02624542922290212 0.02962909435690859 2.992988785218849 2.994630564612182 2.976361811477597 2.980568207371556 0.001231904839241903 +GFLOW: 0.9375 0.02319676441530075 0.02558566238286014 2.994102103443268 2.995316878239127 2.979861523812927 2.982943575465618 0.0009746437282930889 +GFLOW: 1 0.02064629402617104 0.02226662775833122 2.994989016474138 2.995881122777838 2.982689783395693 2.984912502541169 0.0007637715104002226 +Number of steps = 16 +Time to complete flow = 2.238960e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.252450e-01 seconds +exit: Wed Oct 26 19:12:45 2022 + From 8d3f8af261f04cf132d6f88a9ba28f1f9f9ca94f Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Thu, 27 Oct 2022 16:39:23 -0400 Subject: [PATCH 32/49] Updated tests for wilson_flow_a --- wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-out | 2 +- wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-out | 2 +- wilson_flow/test_new/wilson_flow_a.wilson.1.sample-out | 2 +- wilson_flow/test_new/wilson_flow_a.wilson.2.sample-out | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-out index ff5377f01..50852d233 100644 --- a/wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-out +++ b/wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 17:48:30 2022 diff --git a/wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-out index 25dedfa56..548b10080 100644 --- a/wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-out +++ b/wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 17:48:42 2022 diff --git a/wilson_flow/test_new/wilson_flow_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_a.wilson.1.sample-out index 4051f242a..27504528a 100644 --- a/wilson_flow/test_new/wilson_flow_a.wilson.1.sample-out +++ b/wilson_flow/test_new/wilson_flow_a.wilson.1.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 17:42:08 2022 diff --git a/wilson_flow/test_new/wilson_flow_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_a.wilson.2.sample-out index 77d57a926..b64dacdab 100644 --- a/wilson_flow/test_new/wilson_flow_a.wilson.2.sample-out +++ b/wilson_flow/test_new/wilson_flow_a.wilson.2.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 17:44:53 2022 From 1f1f55dff5ec9bd7043b5d57b4415497d07d578c Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Thu, 27 Oct 2022 16:40:15 -0400 Subject: [PATCH 33/49] Updated tests for wilson_flow_cf3_a --- wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-out | 2 +- wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-out | 2 +- wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-out | 2 +- wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-out | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-out index 1e974f319..f1f251ffc 100644 --- a/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-out +++ b/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 18:17:15 2022 diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-out index 692640a25..9ec9cb7ce 100644 --- a/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-out +++ b/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 18:17:15 2022 diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-out index 36ce15f75..3ec0af28d 100644 --- a/wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-out +++ b/wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 18:17:15 2022 diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-out index 9bba462d4..7352e95b1 100644 --- a/wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-out +++ b/wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 18:17:15 2022 From ed27ca4022bec5383a011f0881dfb1570c27ef55 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Thu, 27 Oct 2022 16:42:23 -0400 Subject: [PATCH 34/49] Updated tests for wilson_flow_bbb_a --- wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-out | 2 +- wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-out | 2 +- wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-out | 2 +- wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-out | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-out index 7de848f8d..ae47ac40a 100644 --- a/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-out +++ b/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 19:39:12 2022 diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-out index 55b17097d..90dcc4535 100644 --- a/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-out +++ b/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 19:39:13 2022 diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-out index b12ad9607..afbd741f1 100644 --- a/wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-out +++ b/wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 19:39:12 2022 diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-out index 30d988beb..76483c7d6 100644 --- a/wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-out +++ b/wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 19:39:12 2022 From a8b6fd858841e4667ff51998b68af14a568e93bd Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Thu, 27 Oct 2022 16:43:04 -0400 Subject: [PATCH 35/49] Updated tests for wilson_flow_ck_a --- wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-out | 2 +- wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-out | 2 +- wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-out | 2 +- wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-out | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-out index 602dcef85..fb0e3dd22 100644 --- a/wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-out +++ b/wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 19:12:45 2022 diff --git a/wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-out index 69ea5ae17..eb90bf75d 100644 --- a/wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-out +++ b/wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 19:12:45 2022 diff --git a/wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-out index 2d1dcb504..8acd27021 100644 --- a/wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-out +++ b/wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 19:12:44 2022 diff --git a/wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-out index 4aef634af..b56bb1da7 100644 --- a/wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-out +++ b/wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-out @@ -1,7 +1,7 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = deviceab +Host(0) = computer Username = bazavov start: Wed Oct 26 19:12:44 2022 From 07d2189cbc0d7cf9b7860e78d27f534006a0e3f5 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Thu, 27 Oct 2022 16:43:50 -0400 Subject: [PATCH 36/49] Updated tests for wilson_flow_rkmk3_a --- .../wilson_flow_rkmk3_a.symanzik.1.sample-in | 13 ++++ .../wilson_flow_rkmk3_a.symanzik.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_rkmk3_a.symanzik.2.sample-in | 13 ++++ .../wilson_flow_rkmk3_a.symanzik.2.sample-out | 67 +++++++++++++++++++ .../wilson_flow_rkmk3_a.wilson.1.sample-in | 13 ++++ .../wilson_flow_rkmk3_a.wilson.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_rkmk3_a.wilson.2.sample-in | 13 ++++ .../wilson_flow_rkmk3_a.wilson.2.sample-out | 67 +++++++++++++++++++ 8 files changed, 320 insertions(+) create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.1.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.1.sample-out new file mode 100644 index 000000000..323ad442b --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 13:31:10 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.100468e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.818771e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.683596 0.689287 2.49362 2.66867 2.01982 2.21584 -0.000286496 +GFLOW: 0.125 0.380589 0.438537 2.76198 2.86539 2.46646 2.63025 -0.00738036 +GFLOW: 0.1875 0.235543 0.291327 2.87118 2.92655 2.68301 2.78851 0.00299302 +GFLOW: 0.25 0.159769 0.202814 2.91938 2.95113 2.79618 2.86353 0.00561591 +GFLOW: 0.3125 0.115768 0.147563 2.93881 2.95941 2.85931 2.90407 0.00591576 +GFLOW: 0.375 0.0879875 0.111402 2.9378 2.95451 2.89631 2.92774 0.00552133 +GFLOW: 0.4375 0.0692117 0.0866591 2.9115 2.93101 2.91791 2.94176 0.00528771 +GFLOW: 0.5 0.0558469 0.0692581 2.84812 2.87832 2.92891 2.94913 0.00537534 +GFLOW: 0.5625 0.0462001 0.0573727 2.75125 2.79569 2.93233 2.9515 0.00570866 +GFLOW: 0.625 0.0396954 0.0503209 2.667 2.71346 2.93238 2.95116 0.00593055 +GFLOW: 0.6875 0.0358127 0.0470029 2.63215 2.66268 2.93255 2.95028 0.00592383 +GFLOW: 0.75 0.0336817 0.0458472 2.62522 2.63599 2.93276 2.94914 0.00582365 +GFLOW: 0.8125 0.0326966 0.0459802 2.62356 2.62062 2.93224 2.94755 0.00575778 +GFLOW: 0.875 0.0325555 0.0470688 2.62184 2.61284 2.93089 2.94566 0.00575045 +GFLOW: 0.9375 0.0330521 0.0488943 2.61941 2.61067 2.92881 2.94361 0.00576839 +GFLOW: 1 0.0340194 0.0512615 2.61611 2.61202 2.92611 2.94153 0.00576525 +Number of steps = 16 +Time to complete flow = 3.935199e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 3.945501e-01 seconds +exit: Thu Oct 27 13:31:10 2022 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.2.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.2.sample-out new file mode 100644 index 000000000..516582076 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 13:31:10 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.171993e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.760887e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.6835964225873505 0.689286618530199 2.493615815143509 2.66866524114337 2.019823710776547 2.215838902238242 -0.0002864649851840247 +GFLOW: 0.125 0.380589072622208 0.4385369722827665 2.761982485851977 2.865385103291513 2.466462513648429 2.630248041546825 -0.007380352803362101 +GFLOW: 0.1875 0.2355427103322129 0.2913267570727659 2.871181381213382 2.926549670806812 2.683007665190065 2.788514179707816 0.002993016393615404 +GFLOW: 0.25 0.1597692636987576 0.2028135739454147 2.919376952034276 2.951134347540585 2.796180910124587 2.863533458244091 0.005615914092512197 +GFLOW: 0.3125 0.115767517049043 0.1475627234733328 2.938812882748804 2.959412239867698 2.859314439446274 2.904065143509843 0.005915769020745505 +GFLOW: 0.375 0.08798754244838027 0.1114016990089054 2.937799476899776 2.954511451405994 2.896307557335168 2.927736281333363 0.005521330225341299 +GFLOW: 0.4375 0.06921167186772535 0.08665907285163887 2.91149981963683 2.931007198428132 2.917914238826738 2.941758083185088 0.005287713587076678 +GFLOW: 0.5 0.05584685858393352 0.06925811366230437 2.84811885835162 2.878318735726454 2.928911255999255 2.949129492994823 0.005375337170303815 +GFLOW: 0.5625 0.04620012570306987 0.0573727253841512 2.751248390319031 2.795685560879962 2.932332506138215 2.951504197510669 0.005708655378545305 +GFLOW: 0.625 0.0396953866539317 0.05032088401942179 2.666999676225281 2.713458819855358 2.932382169112086 2.951162549100555 0.005930543312850314 +GFLOW: 0.6875 0.03581268935199921 0.04700291639767441 2.632147111565882 2.662679171408572 2.932547347521231 2.950279813550159 0.005923835143241613 +GFLOW: 0.75 0.03368167524709735 0.04584724635650018 2.625215237324007 2.635994153884031 2.932764284734722 2.949142140006398 0.005823655636913814 +GFLOW: 0.8125 0.0326966103827727 0.04598024455576522 2.623564426009857 2.620621225393016 2.932242869454921 2.947553947499202 0.005757789852089357 +GFLOW: 0.875 0.03255545618685056 0.04706884643192256 2.621841859605768 2.612843115070791 2.9308929213027 2.945655617886934 0.005750451318963461 +GFLOW: 0.9375 0.03305214740293687 0.04889429434398371 2.61941302923453 2.610673653295389 2.928812261087174 2.94361245799095 0.00576838885615973 +GFLOW: 1 0.03401938011060365 0.05126153901588022 2.616106321836107 2.612018857763462 2.926107543646373 2.941533720464648 0.005765256445412413 +Number of steps = 16 +Time to complete flow = 4.393349e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 4.408669e-01 seconds +exit: Thu Oct 27 13:31:10 2022 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.1.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.1.sample-out new file mode 100644 index 000000000..976d4c8b8 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 13:31:09 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.059937e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.890297e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.771013 0.762609 2.35235 2.51803 1.83004 1.99213 0.00916212 +GFLOW: 0.125 0.477829 0.527284 2.65082 2.79743 2.28999 2.48534 -0.0142292 +GFLOW: 0.1875 0.303811 0.367901 2.79996 2.89503 2.55227 2.70426 -0.0089234 +GFLOW: 0.25 0.205772 0.262853 2.87886 2.93738 2.70583 2.81221 -0.00221353 +GFLOW: 0.3125 0.14755 0.19302 2.92247 2.95898 2.79846 2.87157 0.00141546 +GFLOW: 0.375 0.110761 0.145654 2.94773 2.97127 2.85632 2.90706 0.00298696 +GFLOW: 0.4375 0.0862059 0.112673 2.9631 2.97882 2.89389 2.92972 0.00348014 +GFLOW: 0.5 0.0690485 0.0890598 2.97292 2.98376 2.91922 2.94499 0.00343015 +GFLOW: 0.5625 0.0565972 0.0717043 2.97948 2.98714 2.93694 2.95574 0.00312438 +GFLOW: 0.625 0.0472714 0.0586483 2.98404 2.98957 2.94973 2.96358 0.00271839 +GFLOW: 0.6875 0.0400986 0.048628 2.98732 2.99136 2.95921 2.96949 0.00229453 +GFLOW: 0.75 0.034456 0.0408043 2.98974 2.99272 2.96641 2.97406 0.00189449 +GFLOW: 0.8125 0.0299313 0.0346043 2.99157 2.99378 2.97198 2.97767 0.00153757 +GFLOW: 0.875 0.0262433 0.0296267 2.99299 2.99463 2.97636 2.98057 0.00123066 +GFLOW: 0.9375 0.0231948 0.0255837 2.9941 2.99532 2.97986 2.98295 0.000973762 +GFLOW: 1 0.0206445 0.022265 2.99499 2.99588 2.98269 2.98491 0.000763127 +Number of steps = 16 +Time to complete flow = 1.443062e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.453540e-01 seconds +exit: Thu Oct 27 13:31:09 2022 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.2.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.2.sample-out new file mode 100644 index 000000000..88ec627bf --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 13:31:09 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.188683e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.770424e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.7710131731574482 0.7626088229355815 2.352352162560256 2.518030482716568 1.830041058060231 1.992134797207159 0.009162119049090731 +GFLOW: 0.125 0.4778292713381375 0.5272835057087748 2.650815346421709 2.797425779426087 2.289993985490047 2.485342692840141 -0.01422921115068727 +GFLOW: 0.1875 0.303811123505411 0.3679007984249834 2.799956034574233 2.89503215312974 2.552273508145709 2.70425611095005 -0.008923417157006445 +GFLOW: 0.25 0.2057722039333715 0.2628534915973386 2.878860652572409 2.937377074121526 2.705830893941072 2.812214861661173 -0.002213537138543137 +GFLOW: 0.3125 0.1475501174689784 0.1930197904627323 2.922470106903227 2.958983452327181 2.798461744413336 2.87157075895373 0.001415449911931952 +GFLOW: 0.375 0.1107609237705229 0.1456539599696259 2.947730650675489 2.971267620807366 2.856324452342779 2.90705840177608 0.002986968408263854 +GFLOW: 0.4375 0.08620587583255035 0.1126729410588295 2.963104458386104 2.978820542867613 2.893885474063883 2.929721650326103 0.003480138063144191 +GFLOW: 0.5 0.06904853316387094 0.08905983214925033 2.972924688388387 2.983755883168672 2.919224281749196 2.944988711831256 0.003430158774593098 +GFLOW: 0.5625 0.05659722796303657 0.07170433025642811 2.97948356963812 2.987143452154546 2.936940805450989 2.955735442316506 0.003124376881138622 +GFLOW: 0.625 0.04727144353006999 0.05864830342069191 2.984040540816759 2.989565211766096 2.949727152166032 2.96358238667448 0.0027183878717233 +GFLOW: 0.6875 0.04009858947607062 0.04862796282292008 2.987315820679197 2.991356593396539 2.959210619062153 2.969491175241012 0.002294531473165537 +GFLOW: 0.75 0.03445599157808468 0.04080425559839087 2.9897380714176 2.992720365838084 2.966408879520211 2.974057829421809 0.001894491787194411 +GFLOW: 0.8125 0.02993131316585013 0.03460429342358487 2.991572565510229 2.993784146492072 2.971980187046911 2.977665801429402 0.001537570332436355 +GFLOW: 0.875 0.02624328171675649 0.02962667880256372 2.992989694901286 2.994631137760239 2.976364205255557 2.980570027831539 0.001230661412795127 +GFLOW: 0.9375 0.02319482790702301 0.02558367825370402 2.994102769573283 2.995317330850922 2.979863381684063 2.98294510086421 0.0009737558903427751 +GFLOW: 1 0.0206444759490759 0.02226495693069587 2.99498953135431 2.99588150627508 2.982691286524783 2.984913859497751 0.0007631313790103263 +Number of steps = 16 +Time to complete flow = 1.594429e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.610079e-01 seconds +exit: Thu Oct 27 13:31:10 2022 + From a36894e85804e2c12710d3ce97fcee63bdadfbd2 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Thu, 27 Oct 2022 16:44:30 -0400 Subject: [PATCH 37/49] Updated tests for wilson_flow_rkmk4_a --- .../wilson_flow_rkmk4_a.symanzik.1.sample-in | 13 ++++ .../wilson_flow_rkmk4_a.symanzik.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_rkmk4_a.symanzik.2.sample-in | 13 ++++ .../wilson_flow_rkmk4_a.symanzik.2.sample-out | 67 +++++++++++++++++++ .../wilson_flow_rkmk4_a.wilson.1.sample-in | 13 ++++ .../wilson_flow_rkmk4_a.wilson.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_rkmk4_a.wilson.2.sample-in | 13 ++++ .../wilson_flow_rkmk4_a.wilson.2.sample-out | 67 +++++++++++++++++++ 8 files changed, 320 insertions(+) create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.1.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.1.sample-out new file mode 100644 index 000000000..d09e39827 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 14:23:28 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.1 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK4 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.981258e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 7.009506e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.682395 0.692092 2.49002 2.64995 2.01267 2.19808 -0.00640099 +GFLOW: 0.125 0.383646 0.441255 2.76162 2.86243 2.46298 2.62275 -0.00640413 +GFLOW: 0.1875 0.237338 0.292619 2.8737 2.92891 2.68217 2.78661 0.00243519 +GFLOW: 0.25 0.160749 0.203643 2.92534 2.95683 2.79653 2.86338 0.00531473 +GFLOW: 0.3125 0.116436 0.148194 2.95175 2.97095 2.86081 2.90485 0.00556329 +GFLOW: 0.375 0.088597 0.111963 2.96658 2.97903 2.8996 2.92964 0.00503438 +GFLOW: 0.4375 0.0699494 0.0871808 2.97559 2.98405 2.92453 2.94562 0.0043217 +GFLOW: 0.5 0.0568133 0.0695396 2.98142 2.98738 2.94143 2.95655 0.00360938 +GFLOW: 0.5625 0.0471793 0.0565615 2.98539 2.98971 2.9534 2.96438 0.00295643 +GFLOW: 0.625 0.0398787 0.0467569 2.98819 2.99139 2.96217 2.97021 0.00238209 +GFLOW: 0.6875 0.0341959 0.039189 2.99022 2.99264 2.96879 2.97467 0.00189138 +GFLOW: 0.75 0.0296738 0.0332435 2.9917 2.99358 2.97389 2.97818 0.00148232 +GFLOW: 0.8125 0.0260091 0.0285023 2.99279 2.9943 2.97789 2.981 0.00114866 +GFLOW: 0.875 0.0229936 0.0246722 2.99356 2.99483 2.98107 2.9833 0.000881605 +GFLOW: 0.9375 0.0204808 0.0215423 2.99408 2.99522 2.98364 2.98519 0.000671251 +GFLOW: 1 0.0183645 0.018958 2.99439 2.99548 2.98572 2.98678 0.000507754 +Number of steps = 16 +Time to complete flow = 5.289378e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 5.299861e-01 seconds +exit: Thu Oct 27 14:23:28 2022 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.2.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.2.sample-out new file mode 100644 index 000000000..f5fcdbc96 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 14:23:28 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK4 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.369881e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.758503e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.6823946201659636 0.6920917136354631 2.490020026245956 2.649953699489648 2.012674262552984 2.198078215949578 -0.006400991034190496 +GFLOW: 0.125 0.383646204061168 0.4412549143852796 2.761623595103952 2.862429442475008 2.46298145710075 2.622754340007693 -0.00640411708013829 +GFLOW: 0.1875 0.2373381051341793 0.2926190882981353 2.873701998570031 2.928907423718769 2.682169926329637 2.786612303669262 0.002435205974237255 +GFLOW: 0.25 0.1607485244071688 0.203643007903592 2.925338763825491 2.956826206865897 2.796529471881464 2.863378984788052 0.005314737942440207 +GFLOW: 0.3125 0.1164356129485527 0.1481935738997746 2.951754630930276 2.970953922225724 2.860813476495558 2.904847027073958 0.005563297962576277 +GFLOW: 0.375 0.08859696277162969 0.1119629918593535 2.96658472818602 2.979025054170245 2.899600375149829 2.929636305705419 0.005034379026749453 +GFLOW: 0.4375 0.069949359214414 0.08718082984832819 2.975590887414977 2.984049326423378 2.924527098325761 2.9456207888863 0.004321696628119241 +GFLOW: 0.5 0.05681327332204765 0.06953959546427461 2.981421672578181 2.987384298491378 2.941426767584079 2.956551170663019 0.003609378453947195 +GFLOW: 0.5625 0.04717928289457903 0.05656147551566652 2.985390222637238 2.989709100849252 2.953396126654277 2.964382166054122 0.002956424338679133 +GFLOW: 0.625 0.03987865721065979 0.04675685082139958 2.988192567688513 2.991390665428121 2.962174148889083 2.970207061817726 0.002382095632493013 +GFLOW: 0.6875 0.03419592500252536 0.03918897441945158 2.990220033121112 2.992639362220768 2.968791338907368 2.974673456288407 0.001891378368038197 +GFLOW: 0.75 0.02967383526694925 0.03324347416992086 2.991704080417216 2.993581477709597 2.973889856912576 2.978183927487873 0.00148231773479137 +GFLOW: 0.8125 0.02600905037146957 0.02850230585606145 2.992787275760168 2.99429545386954 2.97788836522831 2.980999409502962 0.00114866348050121 +GFLOW: 0.875 0.02299362546727285 0.02467218979604128 2.99355993847521 2.994831102675102 2.981070608429286 2.983295319892182 0.000881607541859927 +GFLOW: 0.9375 0.02048084249783873 0.02154227295739387 2.994080254122519 2.995220387057091 2.983635133858775 2.985193411609623 0.0006712538264066448 +GFLOW: 1 0.01836454355924732 0.01895798990065688 2.99438631449226 2.995483907278615 2.985724492422461 2.986780574435416 0.0005077537693918494 +Number of steps = 16 +Time to complete flow = 5.788991e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 5.805011e-01 seconds +exit: Thu Oct 27 14:23:29 2022 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.1.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.1.sample-out new file mode 100644 index 000000000..d837c3920 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 14:23:28 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.1 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK4 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.079010e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.985664e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.769534 0.763513 2.34719 2.50921 1.82495 1.98626 0.0083358 +GFLOW: 0.125 0.478527 0.528676 2.64833 2.79271 2.28668 2.48021 -0.0140627 +GFLOW: 0.1875 0.304601 0.368601 2.79914 2.89358 2.55103 2.70214 -0.00878386 +GFLOW: 0.25 0.206224 0.263173 2.87853 2.93692 2.7053 2.8114 -0.00222786 +GFLOW: 0.3125 0.147788 0.193191 2.92231 2.95882 2.79819 2.87122 0.00138065 +GFLOW: 0.375 0.110891 0.14576 2.94764 2.9712 2.85616 2.90689 0.00296947 +GFLOW: 0.4375 0.0862805 0.112744 2.96305 2.97879 2.89379 2.92963 0.00347614 +GFLOW: 0.5 0.069094 0.0891093 2.97289 2.98374 2.91916 2.94494 0.00343201 +GFLOW: 0.5625 0.0566265 0.0717396 2.97946 2.98713 2.9369 2.95571 0.0031278 +GFLOW: 0.625 0.0472913 0.058674 2.98403 2.98956 2.9497 2.96356 0.00272169 +GFLOW: 0.6875 0.0401128 0.0486472 2.98731 2.99135 2.95919 2.96948 0.00229722 +GFLOW: 0.75 0.0344667 0.040819 2.98973 2.99272 2.96639 2.97405 0.00189655 +GFLOW: 0.8125 0.0299397 0.0346159 2.99157 2.99378 2.97197 2.97766 0.00153911 +GFLOW: 0.875 0.0262502 0.0296359 2.99299 2.99463 2.97636 2.98056 0.00123181 +GFLOW: 0.9375 0.0232006 0.0255912 2.9941 2.99532 2.97986 2.98294 0.000974622 +GFLOW: 1 0.0206494 0.0222712 2.99499 2.99588 2.98269 2.98491 0.000763777 +Number of steps = 16 +Time to complete flow = 1.867380e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.878059e-01 seconds +exit: Thu Oct 27 14:23:28 2022 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.2.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.2.sample-out new file mode 100644 index 000000000..86fc9cd8d --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 14:23:28 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK4 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.379417e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.748966e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.7695344475361042 0.7635128575041581 2.34718832356269 2.509213492391763 1.824954477043811 1.986264240444615 0.008335795943452493 +GFLOW: 0.125 0.4785274648425539 0.5286759299629523 2.64832738135988 2.792708687394452 2.286683126457346 2.480208692108663 -0.01406270291690513 +GFLOW: 0.1875 0.3046011081592124 0.3686014627062565 2.799139688728641 2.893576364981898 2.551027102113085 2.70213754217427 -0.008783858542779188 +GFLOW: 0.25 0.2062237642119134 0.2631734610213494 2.878530691542991 2.936922045686315 2.705304572014108 2.811395762547916 -0.002227875999238292 +GFLOW: 0.3125 0.1477884252838138 0.1931912760417359 2.922305072006303 2.958817009500491 2.798187149927617 2.871221508518504 0.001380637283318118 +GFLOW: 0.375 0.1108907502915133 0.1457604676187817 2.947639773366115 2.971196018189363 2.856162823371561 2.906891465690364 0.002969472476409682 +GFLOW: 0.4375 0.08628051869362084 0.1127442523976524 2.963052291825976 2.978785584728886 2.893785150077659 2.929633922952222 0.003476137707998143 +GFLOW: 0.5 0.06909395468581349 0.0891093450133523 2.972893835527323 2.98373711434468 2.919160066663202 2.944938931598246 0.003432009553717 +GFLOW: 0.5625 0.05662646708705945 0.07173959555793422 2.979464728784931 2.987132582222296 2.936898523778117 2.955705269132549 0.003127804385406519 +GFLOW: 0.625 0.04729132785488909 0.05867404577933181 2.984028605380757 2.989558492945915 2.949698435799196 2.963562966784864 0.002721686385897142 +GFLOW: 0.6875 0.04011284098456652 0.04864723079079197 2.987307948962604 2.991352187698478 2.959190454274139 2.969477953562199 0.002297218381188385 +GFLOW: 0.75 0.03446671504599602 0.04081903415160494 2.989732658943902 2.992717313817578 2.966394233965442 2.974048340882511 0.001896548313538798 +GFLOW: 0.8125 0.02993973871544986 0.03461588512593165 2.991568690078201 2.993781922018884 2.971969204786266 2.977658655635302 0.001539110632597007 +GFLOW: 0.875 0.02625015025266585 0.02963594875648565 2.992986815299941 2.994629440530897 2.976355732183185 2.980564412606067 0.001231810801853838 +GFLOW: 0.9375 0.02320059879253444 0.02559121107296509 2.994100560510657 2.995315983490872 2.979856685519148 2.982940526686201 0.0009746159357432641 +GFLOW: 1 0.02064944259540563 0.0222711566211438 2.99498779187415 2.995880400661651 2.982685891060598 2.984910022250389 0.0007637764800629292 +Number of steps = 16 +Time to complete flow = 2.068172e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.084510e-01 seconds +exit: Thu Oct 27 14:23:28 2022 + From c6fc524f2ffec5f842b880415e59c4f52daf1d1a Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Thu, 27 Oct 2022 16:45:01 -0400 Subject: [PATCH 38/49] Updated tests for wilson_flow_rkmk5_a --- .../wilson_flow_rkmk5_a.symanzik.1.sample-in | 13 ++++ .../wilson_flow_rkmk5_a.symanzik.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_rkmk5_a.symanzik.2.sample-in | 13 ++++ .../wilson_flow_rkmk5_a.symanzik.2.sample-out | 67 +++++++++++++++++++ .../wilson_flow_rkmk5_a.wilson.1.sample-in | 13 ++++ .../wilson_flow_rkmk5_a.wilson.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_rkmk5_a.wilson.2.sample-in | 13 ++++ .../wilson_flow_rkmk5_a.wilson.2.sample-out | 67 +++++++++++++++++++ 8 files changed, 320 insertions(+) create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.1.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.1.sample-out new file mode 100644 index 000000000..e0e97e3b5 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 14:31:56 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.3 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK5 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.009869e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.985664e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.681253 0.690555 2.4957 2.65877 2.01844 2.20497 -0.00363664 +GFLOW: 0.125 0.381516 0.439208 2.76499 2.86646 2.46725 2.62727 -0.00555571 +GFLOW: 0.1875 0.235939 0.291239 2.87526 2.93033 2.68435 2.78851 0.00300833 +GFLOW: 0.25 0.159903 0.202725 2.92621 2.9575 2.79776 2.86431 0.00567665 +GFLOW: 0.3125 0.115897 0.147553 2.95235 2.97138 2.86159 2.90539 0.00577588 +GFLOW: 0.375 0.0882337 0.111495 2.96707 2.97936 2.90013 2.92998 0.00515631 +GFLOW: 0.4375 0.0696919 0.0868224 2.97603 2.98434 2.92491 2.94586 0.00439008 +GFLOW: 0.5 0.0566222 0.0692522 2.98186 2.98767 2.94173 2.95673 0.00364597 +GFLOW: 0.5625 0.0470309 0.0563207 2.98586 2.99001 2.95364 2.96452 0.00297397 +GFLOW: 0.625 0.0397579 0.0465465 2.98872 2.99173 2.96239 2.97032 0.00238817 +GFLOW: 0.6875 0.0340928 0.038998 2.99084 2.99303 2.96899 2.97477 0.00189056 +GFLOW: 0.75 0.0295812 0.0330638 2.99244 2.99404 2.97408 2.97827 0.0014774 +GFLOW: 0.8125 0.0259213 0.0283276 2.99368 2.99484 2.97807 2.98109 0.00114134 +GFLOW: 0.875 0.0229062 0.0244971 2.99466 2.99549 2.98126 2.98338 0.000872919 +GFLOW: 0.9375 0.0203894 0.021362 2.99544 2.99603 2.98384 2.98529 0.000661833 +GFLOW: 1 0.0182649 0.018768 2.99607 2.99647 2.98594 2.98688 0.000497996 +Number of steps = 16 +Time to complete flow = 7.841921e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 7.853050e-01 seconds +exit: Thu Oct 27 14:31:57 2022 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.2.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.2.sample-out new file mode 100644 index 000000000..bfaf6a821 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 14:31:57 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.5 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK5 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 3.077984e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.760887e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.6812527301363549 0.6905552748723999 2.495698739073275 2.658766238316276 2.018442270126926 2.204974840882857 -0.003636599144172505 +GFLOW: 0.125 0.3815159992803073 0.4392077367195605 2.764990876772406 2.866462858807857 2.467252430459942 2.627268113789401 -0.005555682586924652 +GFLOW: 0.1875 0.235939170232154 0.291239154356263 2.875255329795385 2.930331118173843 2.684345115669181 2.788510995032171 0.003008351099639986 +GFLOW: 0.25 0.1599025225788066 0.2027253388508985 2.926209066568654 2.957501141843396 2.79775920304968 2.864313996093538 0.005676645772222622 +GFLOW: 0.3125 0.1158968754263262 0.147553491168111 2.952351176457264 2.971381872031845 2.8615861505292 2.90538752949853 0.00577589554924041 +GFLOW: 0.375 0.08823374303070818 0.1114949559182181 2.967065116737312 2.979356529994876 2.900126426508155 2.929983133869833 0.005156300125512996 +GFLOW: 0.4375 0.06969192014332108 0.08682236114330186 2.976029317890532 2.984344180845062 2.924910893894139 2.945860536281215 0.004390076270418332 +GFLOW: 0.5 0.05662220721422906 0.06925219149341244 2.981861206814484 2.987673759093802 2.941725262832214 2.956727459886176 0.003645971875421036 +GFLOW: 0.5625 0.04703090141850982 0.05632066718140636 2.985861859430437 2.990013980312041 2.953642507850837 2.964519385996863 0.002973967055081691 +GFLOW: 0.625 0.03975794124173342 0.0465465336496952 2.988723672131308 2.991728216702044 2.962388890744062 2.970319947218389 0.002388168027234785 +GFLOW: 0.6875 0.03409282314492537 0.03899804865634199 2.990838867478246 2.993026542901097 2.968987881528745 2.97477155499704 0.001890560376365905 +GFLOW: 0.75 0.02958117752046342 0.03306382759319404 2.992442763288281 2.994036897651103 2.974077688113774 2.978273907767063 0.001477397525373055 +GFLOW: 0.8125 0.025921310361938 0.02832759253500683 2.993684035748635 2.994840783263437 2.978074752540646 2.981086340432498 0.001141340598935955 +GFLOW: 0.875 0.02290615567978586 0.02449707964957822 2.994660920433495 2.995492204099566 2.981261592739429 2.983383419944006 0.000872917638957085 +GFLOW: 0.9375 0.02038938365696562 0.02136198032000602 2.995440777621027 2.996028197164418 2.983836099751037 2.985286502934693 0.000661831751909048 +GFLOW: 1 0.01826490036510634 0.01876797305344752 2.996071189292538 2.996474935931299 2.985940476473617 2.986882362045059 0.0004979980974827798 +Number of steps = 16 +Time to complete flow = 8.517020e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 8.534141e-01 seconds +exit: Thu Oct 27 14:31:57 2022 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.1.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.1.sample-out new file mode 100644 index 000000000..8fb86b2ae --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 14:31:55 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.3 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK5 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.938343e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.794930e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.76965 0.763296 2.34828 2.51099 1.82604 1.98753 0.0085606 +GFLOW: 0.125 0.478209 0.528252 2.64906 2.79383 2.28768 2.48148 -0.0140521 +GFLOW: 0.1875 0.304327 0.368328 2.79944 2.89394 2.55151 2.7027 -0.00877322 +GFLOW: 0.25 0.206062 0.263014 2.87866 2.93704 2.70555 2.81163 -0.00220254 +GFLOW: 0.3125 0.147694 0.193091 2.92237 2.95886 2.79833 2.87133 0.00140124 +GFLOW: 0.375 0.110833 0.145693 2.94768 2.97122 2.85625 2.90695 0.00298225 +GFLOW: 0.4375 0.0862428 0.112697 2.96308 2.9788 2.89384 2.92967 0.00348338 +GFLOW: 0.5 0.0690681 0.0890748 2.97291 2.98375 2.9192 2.94496 0.00343603 +GFLOW: 0.5625 0.056608 0.0717139 2.97947 2.98714 2.93693 2.95572 0.00313004 +GFLOW: 0.625 0.0472777 0.0586546 2.98404 2.98956 2.94972 2.96357 0.00272291 +GFLOW: 0.6875 0.0401025 0.0486322 2.98731 2.99135 2.9592 2.96949 0.00229787 +GFLOW: 0.75 0.0344587 0.0408073 2.98974 2.99272 2.96641 2.97406 0.00189687 +GFLOW: 0.8125 0.0299334 0.0346066 2.99157 2.99378 2.97198 2.97766 0.00153924 +GFLOW: 0.875 0.026245 0.0296285 2.99299 2.99463 2.97636 2.98057 0.00123184 +GFLOW: 0.9375 0.0231964 0.0255852 2.9941 2.99532 2.97986 2.98294 0.000974591 +GFLOW: 1 0.020646 0.0222662 2.99499 2.99588 2.98269 2.98491 0.000763732 +Number of steps = 16 +Time to complete flow = 2.621429e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.632439e-01 seconds +exit: Thu Oct 27 14:31:55 2022 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.2.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.2.sample-out new file mode 100644 index 000000000..c89cf47d6 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 14:31:55 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.5 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK5 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.958775e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.760887e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.7696498222965087 0.7632962094654938 2.348277997999302 2.510988313889286 1.826041643730268 1.987532742061868 0.008560598649514315 +GFLOW: 0.125 0.4782092841439667 0.5282522935204401 2.649059017942774 2.793827936899695 2.287677894184408 2.4814799588627 -0.01405213889816473 +GFLOW: 0.1875 0.3043266900885464 0.3683279524434595 2.799437227420395 2.893942965847433 2.551510652027916 2.702698892137771 -0.008773216015135 +GFLOW: 0.25 0.2060617077488849 0.2630137159796955 2.878662950835097 2.937041777901789 2.705547188568577 2.811630894696371 -0.002202523234971572 +GFLOW: 0.3125 0.1476943414048016 0.1930908382695495 2.922373609897809 2.958864495572666 2.798325194391081 2.871333474173029 0.001401274379518233 +GFLOW: 0.375 0.1108329883776561 0.14569284413077 2.947678906286158 2.971219084017211 2.856248331670318 2.90695254560913 0.002982256344701431 +GFLOW: 0.4375 0.08624284754812779 0.1126966724150687 2.963076066153751 2.978798556341077 2.893841010726403 2.92967083835039 0.003483403017681107 +GFLOW: 0.5 0.06906810404619253 0.08907482994541209 2.972909007123953 2.983745157293936 2.919198044061245 2.944962943011002 0.003436053412591545 +GFLOW: 0.5625 0.05660798772015979 0.07171394960255582 2.979474838725844 2.987137918778922 2.936925228469951 2.955721759436198 0.003130048052233369 +GFLOW: 0.625 0.0472776753554925 0.05865460310515573 2.984035606400913 2.989562215586691 2.949717773026382 2.963574776331379 0.002722919149449935 +GFLOW: 0.6875 0.04010247889493337 0.0486322363475879 2.987312961991064 2.991354887354028 2.959204815987091 2.969486697793622 0.002297874271903699 +GFLOW: 0.75 0.03445867233927147 0.04080729943326626 2.989736352024149 2.992719333401329 2.966405133103483 2.974054993488672 0.001896872355822466 +GFLOW: 0.8125 0.02993337799988302 0.03460658479556295 2.991571476198021 2.993783471589571 2.97197762825874 2.977663831387829 0.001539245686419546 +GFLOW: 0.875 0.02624503940823876 0.02962849636547601 2.992988959015394 2.994630654520105 2.976362343110778 2.980568514922677 0.00123184197328208 +GFLOW: 0.9375 0.02319643646465528 0.02558518121058089 2.994102237121271 2.995316951170325 2.979861942024433 2.982943829224013 0.0009745941073566883 +GFLOW: 1 0.02064601327111625 0.02226623502192059 2.994989121221476 2.995881183253729 2.982690117764371 2.984912716147716 0.0007637315772545068 +Number of steps = 16 +Time to complete flow = 2.838891e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 2.855361e-01 seconds +exit: Thu Oct 27 14:31:56 2022 + From 484156723fdbd4cb87c7c72fd6409e4e68e80a2c Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Thu, 27 Oct 2022 16:45:30 -0400 Subject: [PATCH 39/49] Updated tests for wilson_flow_rkmk8_a --- .../wilson_flow_rkmk8_a.symanzik.1.sample-in | 13 ++++ .../wilson_flow_rkmk8_a.symanzik.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_rkmk8_a.symanzik.2.sample-in | 13 ++++ .../wilson_flow_rkmk8_a.symanzik.2.sample-out | 67 +++++++++++++++++++ .../wilson_flow_rkmk8_a.wilson.1.sample-in | 13 ++++ .../wilson_flow_rkmk8_a.wilson.1.sample-out | 67 +++++++++++++++++++ .../wilson_flow_rkmk8_a.wilson.2.sample-in | 13 ++++ .../wilson_flow_rkmk8_a.wilson.2.sample-out | 67 +++++++++++++++++++ 8 files changed, 320 insertions(+) create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.1.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.1.sample-out new file mode 100644 index 000000000..afdc0affc --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 14:39:05 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.9 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK8 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.990795e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.985664e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.681242 0.690266 2.49734 2.66172 2.02001 2.20716 -0.00336156 +GFLOW: 0.125 0.381264 0.438992 2.76529 2.86689 2.46768 2.62781 -0.00550292 +GFLOW: 0.1875 0.235807 0.29112 2.87534 2.93041 2.68451 2.78867 0.0030545 +GFLOW: 0.25 0.159831 0.202654 2.92625 2.95753 2.79785 2.86439 0.0057049 +GFLOW: 0.3125 0.115853 0.147507 2.95237 2.9714 2.86164 2.90543 0.00579171 +GFLOW: 0.375 0.0882055 0.111464 2.96708 2.97936 2.90016 2.93001 0.00516524 +GFLOW: 0.4375 0.0696725 0.0868008 2.97604 2.98435 2.92493 2.94588 0.00439525 +GFLOW: 0.5 0.0566083 0.0692367 2.98187 2.98768 2.94174 2.95674 0.003649 +GFLOW: 0.5625 0.0470206 0.0563093 2.98587 2.99002 2.95365 2.96453 0.00297575 +GFLOW: 0.625 0.0397501 0.046538 2.98873 2.99173 2.9624 2.97033 0.00238921 +GFLOW: 0.6875 0.0340866 0.0389915 2.99084 2.99303 2.96899 2.97478 0.00189117 +GFLOW: 0.75 0.0295762 0.0330588 2.99244 2.99404 2.97408 2.97828 0.00147775 +GFLOW: 0.8125 0.0259173 0.0283237 2.99369 2.99484 2.97808 2.98109 0.00114154 +GFLOW: 0.875 0.0229028 0.024494 2.99466 2.99549 2.98126 2.98339 0.000873038 +GFLOW: 0.9375 0.0203866 0.0213595 2.99544 2.99603 2.98384 2.98529 0.000661906 +GFLOW: 1 0.0182625 0.018766 2.99607 2.99648 2.98594 2.98688 0.00049805 +Number of steps = 16 +Time to complete flow = 1.728028e+00 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.729330e+00 seconds +exit: Thu Oct 27 14:39:07 2022 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.2.sample-in new file mode 100644 index 000000000..c596132ec --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.2.sample-out new file mode 100644 index 000000000..f80f32747 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 14:39:07 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 3.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK8 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.899170e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.768040e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.6812418021180373 0.6902660737443257 2.497344697303779 2.661715780682546 2.020007201180281 2.207163533522014 -0.003361552990312081 +GFLOW: 0.125 0.381264143255116 0.4389916971042655 2.765288574847927 2.866888147246001 2.467679955935933 2.627814548446188 -0.005502936787522791 +GFLOW: 0.1875 0.2358070436266678 0.2911202291316999 2.875337588138379 2.930407146674236 2.684508726613009 2.788672877056051 0.003054503845265477 +GFLOW: 0.25 0.1598305489577102 0.2026535930857463 2.926246329742821 2.957527773040706 2.797845747540329 2.864386435345956 0.005704905048488197 +GFLOW: 0.3125 0.1158534303234861 0.1475073356880028 2.952371439641945 2.971395387932889 2.861637528553617 2.905427769576104 0.005791699272981522 +GFLOW: 0.375 0.08820550008943771 0.1114639689806966 2.967077157679845 2.979364547768745 2.900158872620843 2.930008079771886 0.005165236740942918 +GFLOW: 0.4375 0.06967253480451087 0.0868008088062024 2.97603694222586 2.984349362874046 2.924932390223951 2.945877117398844 0.004395249857251024 +GFLOW: 0.5 0.05660831672824105 0.06923673574213102 2.981866287293514 2.987677313030112 2.941740090327575 2.956739064312231 0.003649009233858034 +GFLOW: 0.5625 0.04702058615859148 0.05630929633445293 2.985865388176594 2.990016531256584 2.953653083983708 2.964527847394579 0.002975754457206501 +GFLOW: 0.625 0.03975004658004681 0.04653799519624829 2.988726205301637 2.991730115583064 2.962396640547222 2.970326327143102 0.002389213619270704 +GFLOW: 0.6875 0.0340866257208642 0.03899153490773693 2.990840732858017 2.993027998652452 2.968993680524699 2.974776499975319 0.001891166226252946 +GFLOW: 0.75 0.02957620770192136 0.03305879819753455 2.992444163523293 2.994038040766289 2.974082097029708 2.978277828677546 0.001477745956373731 +GFLOW: 0.8125 0.02591725289754813 0.02832367295307065 2.993685101979086 2.994841698733259 2.978078145294244 2.981089508569573 0.001141541471345095 +GFLOW: 0.875 0.02290279218976056 0.02449400208348012 2.994661741141854 2.995492949400037 2.98126422799796 2.983386020805658 0.0008730362845388783 +GFLOW: 0.9375 0.02038655844068718 0.02135954844244257 2.9954414146746 2.996028812484237 2.983838162077932 2.985288667401218 0.0006619062106640302 +GFLOW: 1 0.01826249954510382 0.01876604019145745 2.996071687201424 2.996475450195106 2.985942100812565 2.986884185023936 0.0004980499037072802 +Number of steps = 16 +Time to complete flow = 1.825555e+00 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.827251e+00 seconds +exit: Thu Oct 27 14:39:09 2022 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.1.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.1.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.1.sample-out new file mode 100644 index 000000000..3309e8dad --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.1.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 14:39:04 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.9 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK8 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 1.950264e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 8.106232e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0.0625 0.76966 0.763254 2.34847 2.51129 1.82623 1.98777 0.00857575 +GFLOW: 0.125 0.478183 0.528215 2.64913 2.79394 2.28777 2.4816 -0.0140554 +GFLOW: 0.1875 0.304309 0.36831 2.79946 2.89397 2.55154 2.70274 -0.00877368 +GFLOW: 0.25 0.206053 0.263005 2.87867 2.93705 2.70556 2.81164 -0.00220156 +GFLOW: 0.3125 0.14769 0.193086 2.92238 2.95887 2.79833 2.87134 0.00140211 +GFLOW: 0.375 0.11083 0.145689 2.94768 2.97122 2.85625 2.90696 0.00298274 +GFLOW: 0.4375 0.086241 0.112694 2.96308 2.9788 2.89384 2.92967 0.00348364 +GFLOW: 0.5 0.0690668 0.0890732 2.97291 2.98375 2.9192 2.94496 0.00343617 +GFLOW: 0.5625 0.0566071 0.0717128 2.97948 2.98714 2.93693 2.95572 0.0031301 +GFLOW: 0.625 0.047277 0.0586537 2.98404 2.98956 2.94972 2.96358 0.00272293 +GFLOW: 0.6875 0.040102 0.0486316 2.98731 2.99136 2.95921 2.96949 0.00229787 +GFLOW: 0.75 0.0344583 0.0408068 2.98974 2.99272 2.96641 2.97406 0.00189686 +GFLOW: 0.8125 0.0299331 0.0346062 2.99157 2.99378 2.97198 2.97766 0.00153923 +GFLOW: 0.875 0.0262448 0.0296282 2.99299 2.99463 2.97636 2.98057 0.00123183 +GFLOW: 0.9375 0.0231962 0.0255849 2.9941 2.99532 2.97986 2.98294 0.000974579 +GFLOW: 1 0.0206458 0.022266 2.99499 2.99588 2.98269 2.98491 0.000763722 +Number of steps = 16 +Time to complete flow = 5.623939e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 5.636470e-01 seconds +exit: Thu Oct 27 14:39:05 2022 + diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.2.sample-in new file mode 100644 index 000000000..988c411d4 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.2.sample-in @@ -0,0 +1,13 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.2.sample-out new file mode 100644 index 000000000..0cfaf90e6 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.2.sample-out @@ -0,0 +1,67 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 14:39:05 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 3.7 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_RKMK8 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 3.108978e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.770424e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0.0625 0.7696603796116908 0.7632535021238461 2.348466063984455 2.511293190836414 1.826235001739149 1.987771962562682 0.008575744180029276 +GFLOW: 0.125 0.4781830471657377 0.528214962701708 2.649131102799696 2.79393768773594 2.287772176668018 2.481599895588671 -0.01405538776524827 +GFLOW: 0.1875 0.3043092980070642 0.3683099540457414 2.799458166710226 2.89396968385163 2.551543626567748 2.702737485447983 -0.008773674956162785 +GFLOW: 0.25 0.2060528038977533 0.2630046829841211 2.878670416710396 2.937048835074757 2.705560815320416 2.811644187335482 -0.002201534426932919 +GFLOW: 0.3125 0.1476895431827769 0.1930855805839861 2.922377054721099 2.958866930590238 2.798332232782071 2.871339146242797 0.001402123541499694 +GFLOW: 0.375 0.1108301378543739 0.1456894536555485 2.947680768573151 2.971220188891635 2.856252493148712 2.906955494605487 0.002982749363057385 +GFLOW: 0.4375 0.08624100921037388 0.1126943572937007 2.963077168564205 2.978799164110542 2.89384366051553 2.929672595029587 0.003483655330986881 +GFLOW: 0.5 0.06906684440371286 0.08907319222432916 2.972909701168987 2.983745533829143 2.919199814051508 2.94496408585759 0.003436173253542127 +GFLOW: 0.5625 0.05660708505850056 0.0717127610248762 2.979475296993226 2.98713817035162 2.936926454224134 2.955722548665954 0.003130098509721796 +GFLOW: 0.625 0.04727700578116394 0.05865372263087858 2.984035920941214 2.989562392654951 2.949718647070822 2.963575345530687 0.002722933665540839 +GFLOW: 0.6875 0.04010196818886419 0.04863157278989827 2.987313184877914 2.99135501692021 2.959205454567949 2.969487122332199 0.00229787052912496 +GFLOW: 0.75 0.03445827363506211 0.04080679188282949 2.989736514170669 2.992719431162442 2.966405609268193 2.974055318871121 0.001896859924414804 +GFLOW: 0.8125 0.02993306047946916 0.03460619147721075 2.991571596746747 2.993783547231056 2.971977989508156 2.977664086507707 0.001539229841573183 +GFLOW: 0.875 0.02624478213556808 0.02962818797598335 2.992989050275572 2.994630714295768 2.97636262128199 2.980568718864251 0.001231825606353026 +GFLOW: 0.9375 0.02319622482194006 0.02558493679604207 2.994102307277334 2.995316999268592 2.979862159031156 2.982943995007651 0.0009745787323062832 +GFLOW: 1 0.02064583680682874 0.02226603935201163 2.994989175875793 2.995881222566901 2.982690289040906 2.984912852904781 0.000763717897752422 +Number of steps = 16 +Time to complete flow = 5.953681e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 5.970681e-01 seconds +exit: Thu Oct 27 14:39:05 2022 + From 79f663a875a43950b73c1339af87afcb1574cf20 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Thu, 27 Oct 2022 16:46:01 -0400 Subject: [PATCH 40/49] Updated tests for wilson_flow_adpt_a --- .../wilson_flow_adpt_a.symanzik.1.sample-in | 14 +++ .../wilson_flow_adpt_a.symanzik.1.sample-out | 89 +++++++++++++++++++ .../wilson_flow_adpt_a.symanzik.2.sample-in | 14 +++ .../wilson_flow_adpt_a.symanzik.2.sample-out | 89 +++++++++++++++++++ .../wilson_flow_adpt_a.wilson.1.sample-in | 14 +++ .../wilson_flow_adpt_a.wilson.1.sample-out | 75 ++++++++++++++++ .../wilson_flow_adpt_a.wilson.2.sample-in | 14 +++ .../wilson_flow_adpt_a.wilson.2.sample-out | 75 ++++++++++++++++ 8 files changed, 384 insertions(+) create mode 100644 wilson_flow/test_new/wilson_flow_adpt_a.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_a.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_a.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_a.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_a.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_a.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_a.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.1.sample-in new file mode 100644 index 000000000..0b620da15 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.1.sample-in @@ -0,0 +1,14 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.1.sample-out new file mode 100644 index 000000000..01c649791 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.1.sample-out @@ -0,0 +1,89 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 16:07:18 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.079010e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 7.009506e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0359955 0.869392 0.836963 2.27108 2.42501 1.69594 1.82862 0.0227316 +ADAPT: 0.0359955 0.0359955 0.00784612 1.27452 +GFLOW: 0.0730709 0.615841 0.638472 2.56281 2.72084 2.12176 2.31457 -0.00770779 +ADAPT: 0.0730709 0.0370755 0.00635072 1.57462 +GFLOW: 0.114048 0.419476 0.474063 2.73443 2.84803 2.41138 2.58266 -0.00759194 +ADAPT: 0.114048 0.0409766 0.00445611 2.24411 +GFLOW: 0.165013 0.276767 0.335602 2.8456 2.91444 2.62279 2.74592 0.00065871 +ADAPT: 0.165013 0.0509652 0.00439655 2.27451 +GFLOW: 0.228687 0.180679 0.228072 2.91286 2.9506 2.76671 2.84437 0.00531371 +ADAPT: 0.228687 0.0636737 0.00276344 3.61867 +GFLOW: 0.321555 0.110779 0.141227 2.9552 2.97297 2.86869 2.91013 0.00580635 +ADAPT: 0.321555 0.0928682 0.00378381 2.64284 +GFLOW: 0.443533 0.0680077 0.084707 2.97615 2.98418 2.9269 2.94723 0.00433698 +ADAPT: 0.443533 0.121978 0.00546041 1.83136 +GFLOW: 0.507569 0.0551953 0.0673967 2.98098 2.98665 2.94325 2.95778 0.00357088 +ADAPT: 0.507569 0.0640368 0.00872621 1.14597 +GFLOW: 0.56332 0.046867 0.0561409 2.9846 2.98883 2.95367 2.96457 0.00297933 +ADAPT: 0.56332 0.0557506 0.00857356 1.16638 +GFLOW: 0.619071 0.04034 0.0473572 2.98718 2.99038 2.96157 2.96979 0.0024541 +ADAPT: 0.619071 0.055751 0.00821832 1.21679 +GFLOW: 0.675614 0.0350512 0.0402966 2.98892 2.99138 2.96776 2.97394 0.00199382 +ADAPT: 0.675614 0.0565434 0.00852003 1.1737 +GFLOW: 0.732276 0.0307497 0.0346197 2.99006 2.99202 2.97264 2.97728 0.00160274 +ADAPT: 0.732276 0.056662 0.00920854 1.08595 +GFLOW: 0.787605 0.0272845 0.0301094 2.99113 2.99272 2.97648 2.97996 0.00128172 +ADAPT: 0.787605 0.0553288 0.00937667 1.06648 +GFLOW: 0.841307 0.0244614 0.0264898 2.99238 2.99366 2.97954 2.98214 0.00102153 +ADAPT: 0.841307 0.0537022 0.00860744 1.16179 +GFLOW: 0.894939 0.0220597 0.0234602 2.9934 2.99443 2.98206 2.98398 0.000808843 +ADAPT: 0.894939 0.0536321 0.00767116 1.30358 +GFLOW: 0.950597 0.0199208 0.0208086 2.99379 2.99471 2.98423 2.98559 0.000632425 +ADAPT: 0.950597 0.055658 0.00766535 1.30457 +GFLOW: 1 0.0182775 0.0188039 2.9953 2.99589 2.98589 2.98685 0.000502461 +ADAPT: 1 0.0494025 0.0056356 1.77443 +Number of steps = 17 +Number of rejected steps = 3 +Time to complete flow = 5.060451e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 5.070961e-01 seconds +exit: Thu Oct 27 16:07:18 2022 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.2.sample-in new file mode 100644 index 000000000..0b620da15 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.2.sample-in @@ -0,0 +1,14 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.2.sample-out new file mode 100644 index 000000000..59f6bc3a6 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.2.sample-out @@ -0,0 +1,89 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 16:07:18 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.090931e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.808571e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.03599546846841682 0.8693921629065754 0.8369631263535411 2.271076952321912 2.425012888161282 1.695937200650389 1.828622014599843 0.0227316020814034 +ADAPT: 0.0359955 0.03599546846841682 0.007846116245504929 1.274515911707151 +GFLOW: 0.07307092629997611 0.6158407801989489 0.6384715661258779 2.562808419376144 2.720840587094379 2.121758741276045 2.314569742806373 -0.007707766960421213 +ADAPT: 0.0730709 0.03707545783155929 0.006350719617321549 1.57462470437603 +GFLOW: 0.1140475163537169 0.419476395846081 0.4740630339169947 2.734433491859986 2.848028141567006 2.41137571808105 2.582655409126051 -0.007591895520757173 +ADAPT: 0.114048 0.04097659005374081 0.004456105847642471 2.244111864014756 +GFLOW: 0.1650127775275925 0.2767665933543997 0.3356023082069865 2.845604024601595 2.914443833151062 2.622788084057924 2.745917767154941 0.0006587288266775075 +ADAPT: 0.165013 0.05096526117387558 0.00439657927438528 2.274495551180111 +GFLOW: 0.2286863997821815 0.1806791578904916 0.2280717472437534 2.912859905274114 2.950597019917335 2.766710272454005 2.844365307051595 0.00531374289054687 +ADAPT: 0.228686 0.06367362225458896 0.00276342173870514 3.61870208225463 +GFLOW: 0.3215546876050466 0.1107790009340462 0.1412271077191908 2.955200669205923 2.972969123031361 2.868694623421041 2.910128476198361 0.005806356241307806 +ADAPT: 0.321555 0.09286828782286509 0.0037838694864118 2.642797283550836 +GFLOW: 0.4435319816127548 0.0680077945383995 0.08470716321065107 2.976154852524344 2.984180261626127 2.926898592814602 2.947230389988988 0.004336994004604666 +ADAPT: 0.443532 0.1219772940077082 0.005459568051099607 1.831646735859609 +GFLOW: 0.5075684643966295 0.05519546826068487 0.06739694009984783 2.980982149977228 2.986653458897933 2.943247339781974 2.957778559799288 0.00357090090623978 +ADAPT: 0.507568 0.06403648278387479 0.008726234283002454 1.145969690440087 +GFLOW: 0.5633200546981142 0.04686698079319624 0.05614086845762734 2.984601900144437 2.988826408794484 2.953668405409209 2.964567109613432 0.002979332227915439 +ADAPT: 0.56332 0.05575159030148464 0.008573577714769258 1.166374217705348 +GFLOW: 0.6190720184380699 0.0403398485010272 0.04735701460512243 2.987182197549172 2.990376182957766 2.961565710657799 2.969785428825889 0.00245409061554925 +ADAPT: 0.619072 0.05575196373995577 0.008219036640654613 1.216687604303409 +GFLOW: 0.675614752196207 0.03505112239960841 0.04029654586709447 2.988922021101231 2.991380852372741 2.967758903303588 2.973943125169077 0.001993823378603642 +ADAPT: 0.675615 0.05654273375813706 0.008520677512822048 1.17361559394213 +GFLOW: 0.7322746383957933 0.03074981421625476 0.03461981425444815 2.990064728012324 2.992018153333081 2.97264261962546 2.977280248624934 0.001602747361184953 +ADAPT: 0.732275 0.05665988619958627 0.009208075909633498 1.08600321045768 +GFLOW: 0.7876023880155639 0.02728470013759719 0.03010956648743605 2.991129689377864 2.992719947590092 2.976479519145164 2.979955898010066 0.001281729576855319 +ADAPT: 0.787602 0.0553277496197706 0.009375332884893017 1.066628793108087 +GFLOW: 0.8413061091726908 0.02446145169036229 0.02648991948901263 2.992378360448772 2.993656843220155 2.979537440142581 2.98213608346167 0.001021542036101855 +ADAPT: 0.841306 0.0537037211571269 0.008606660882287271 1.161890788630961 +GFLOW: 0.8949412906064249 0.02205961993358782 0.02346007814009897 2.993400023896958 2.994431898924856 2.982063496780731 2.983975883200209 0.0008088353151375755 +ADAPT: 0.894941 0.05363518143373416 0.007671997380696502 1.303441529471971 +GFLOW: 0.9506005227587443 0.01992066368083793 0.02080844640640917 2.993784315174669 2.994712297316639 2.984231015459415 2.985587699693094 0.0006324193766027004 +ADAPT: 0.950601 0.0556592321523194 0.007667167041163409 1.304262701766128 +GFLOW: 1 0.01827746029273741 0.01880386248156381 2.995297647211201 2.995889908828186 2.985891539155754 2.986853967038692 0.0005024669121521699 +ADAPT: 1 0.04939947724125571 0.005635982002035225 1.77431368595373 +Number of steps = 17 +Number of rejected steps = 3 +Time to complete flow = 5.706580e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 5.722380e-01 seconds +exit: Thu Oct 27 16:07:19 2022 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_adpt_a.wilson.1.sample-in new file mode 100644 index 000000000..8d42cb310 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_a.wilson.1.sample-in @@ -0,0 +1,14 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_adpt_a.wilson.1.sample-out new file mode 100644 index 000000000..4942121fc --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_a.wilson.1.sample-out @@ -0,0 +1,75 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 16:07:17 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.250671e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.890297e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0571049 0.800714 0.787511 2.31039 2.46834 1.77238 1.92182 0.0138191 +ADAPT: 0.0571049 0.0571049 0.00857134 1.16668 +GFLOW: 0.114215 0.52019 0.563028 2.61157 2.76578 2.2257 2.42327 -0.0134499 +ADAPT: 0.114215 0.0571103 0.0061431 1.62784 +GFLOW: 0.178038 0.324474 0.388336 2.78263 2.88482 2.52041 2.6799 -0.0101022 +ADAPT: 0.178038 0.0638227 0.00547789 1.82552 +GFLOW: 0.25214 0.203254 0.260061 2.88071 2.93841 2.70965 2.81491 -0.00202889 +ADAPT: 0.25214 0.0741016 0.00427716 2.338 +GFLOW: 0.345572 0.125962 0.165724 2.93753 2.96638 2.8324 2.89269 0.00249314 +ADAPT: 0.345572 0.0934329 0.00305802 3.27009 +GFLOW: 0.47732 0.0743885 0.0966286 2.96999 2.9823 2.91137 2.94037 0.00353463 +ADAPT: 0.47732 0.131748 0.00332107 3.01107 +GFLOW: 0.658055 0.0430864 0.0528876 2.98597 2.99061 2.95528 2.96707 0.00250409 +ADAPT: 0.658055 0.180734 0.00317757 3.14706 +GFLOW: 0.826566 0.0290068 0.0334699 2.99044 2.99275 2.97241 2.97804 0.00145501 +ADAPT: 0.826566 0.168511 0.00856898 1.167 +GFLOW: 0.914457 0.0242333 0.0269795 2.99305 2.99453 2.9785 2.98205 0.00106193 +ADAPT: 0.914457 0.0878912 0.00863081 1.15864 +GFLOW: 1 0.0206362 0.0222634 2.99469 2.99563 2.98265 2.9849 0.000764279 +ADAPT: 1 0.0855431 0.00527397 1.8961 +Number of steps = 10 +Number of rejected steps = 3 +Time to complete flow = 1.202490e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.213200e-01 seconds +exit: Thu Oct 27 16:07:17 2022 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_adpt_a.wilson.2.sample-in new file mode 100644 index 000000000..8d42cb310 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_a.wilson.2.sample-in @@ -0,0 +1,14 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_adpt_a.wilson.2.sample-out new file mode 100644 index 000000000..cc6a56880 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_a.wilson.2.sample-out @@ -0,0 +1,75 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 16:07:17 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_LUSCHER +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.100468e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.908707e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.05710494765115298 0.8007141141671855 0.7875110119468766 2.310394358604133 2.468341842034199 1.772384782568168 1.921820807049433 0.01381909135754463 +ADAPT: 0.0571049 0.05710494765115298 0.008571374726118698 1.166673995657662 +GFLOW: 0.1142151697328976 0.5201900118195394 0.5630279958963903 2.611570496920689 2.765781282764239 2.225698174762529 2.423270868979434 -0.01344988709409152 +ADAPT: 0.114215 0.0571102220817446 0.006143089434918998 1.627845419791102 +GFLOW: 0.1780378700222671 0.3244737145459834 0.3883362274783069 2.782628209418442 2.884821516767513 2.520414238285682 2.679896190973487 -0.01010214680031283 +ADAPT: 0.178038 0.06382270028936957 0.005477871563606376 1.825526554225464 +GFLOW: 0.2521395689359674 0.2032539341222995 0.2600608987829447 2.880707364778205 2.938406153828363 2.709645705736638 2.814912009707866 -0.002028842914517146 +ADAPT: 0.25214 0.07410169891370025 0.004277157567503802 2.33800131095851 +GFLOW: 0.3455725101661126 0.1259615163248149 0.1657241297907014 2.937534388817494 2.966382511297933 2.832398966064183 2.892687466533452 0.002493169825071404 +ADAPT: 0.345573 0.0934329412301452 0.003058037894602972 3.270070661206868 +GFLOW: 0.4773200977066691 0.07438853172287574 0.0966286316443577 2.96998840246232 2.982295894856166 2.91137159051234 2.940366129022082 0.0035346388135707 +ADAPT: 0.47732 0.1317475875405565 0.00332102109025569 3.011122100170128 +GFLOW: 0.6580551540870633 0.04308631513816136 0.05288751578145236 2.98597481309482 2.990613793264106 2.955278870881358 2.96707404551861 0.002504090832113422 +ADAPT: 0.658055 0.1807350563803942 0.003177716384036345 3.146913944314303 +GFLOW: 0.8265669338751436 0.02900668620879503 0.03346979901196772 2.990437435803951 2.992754600583268 2.972411276134933 2.978036342937336 0.001455005935704717 +ADAPT: 0.826567 0.1685117797880803 0.008568954261208732 1.167003545026439 +GFLOW: 0.9144560313717522 0.02423333083399361 0.02697950074994419 2.993047311494903 2.994526737830257 2.97850434616194 2.982052081158894 0.001061928192022287 +ADAPT: 0.914456 0.08788909749660864 0.008630844961117096 1.15863510989377 +GFLOW: 1 0.02063617728955537 0.02226340655817641 2.994685815413246 2.995628201699507 2.982647762144869 2.984895887312241 0.0007642813937907262 +ADAPT: 1 0.08554396862824776 0.00527385068403723 1.896147729450849 +Number of steps = 10 +Number of rejected steps = 3 +Time to complete flow = 1.353381e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.369169e-01 seconds +exit: Thu Oct 27 16:07:18 2022 + From af3e14bcabc30c360876895904c682988c5c771e Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Thu, 27 Oct 2022 16:46:40 -0400 Subject: [PATCH 41/49] Updated tests for wilson_flow_adpt_cf3_a --- ...ilson_flow_adpt_cf3_a.symanzik.1.sample-in | 14 +++ ...lson_flow_adpt_cf3_a.symanzik.1.sample-out | 89 +++++++++++++++++++ ...ilson_flow_adpt_cf3_a.symanzik.2.sample-in | 14 +++ ...lson_flow_adpt_cf3_a.symanzik.2.sample-out | 89 +++++++++++++++++++ .../wilson_flow_adpt_cf3_a.wilson.1.sample-in | 14 +++ ...wilson_flow_adpt_cf3_a.wilson.1.sample-out | 75 ++++++++++++++++ .../wilson_flow_adpt_cf3_a.wilson.2.sample-in | 14 +++ ...wilson_flow_adpt_cf3_a.wilson.2.sample-out | 75 ++++++++++++++++ 8 files changed, 384 insertions(+) create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.1.sample-in new file mode 100644 index 000000000..0b620da15 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.1.sample-in @@ -0,0 +1,14 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.1.sample-out new file mode 100644 index 000000000..a0c7c2b09 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.1.sample-out @@ -0,0 +1,89 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 16:14:28 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.100468e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 7.009506e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0359955 0.869392 0.836963 2.27108 2.42501 1.69594 1.82862 0.0227316 +ADAPT: 0.0359955 0.0359955 0.00784612 1.27452 +GFLOW: 0.0730709 0.615841 0.638472 2.56281 2.72084 2.12176 2.31457 -0.00770779 +ADAPT: 0.0730709 0.0370755 0.00635072 1.57462 +GFLOW: 0.114048 0.419476 0.474063 2.73443 2.84803 2.41138 2.58266 -0.00759194 +ADAPT: 0.114048 0.0409766 0.00445611 2.24411 +GFLOW: 0.165013 0.276767 0.335602 2.8456 2.91444 2.62279 2.74592 0.00065871 +ADAPT: 0.165013 0.0509652 0.00439655 2.27451 +GFLOW: 0.228687 0.180679 0.228072 2.91286 2.9506 2.76671 2.84437 0.00531371 +ADAPT: 0.228687 0.0636737 0.00276344 3.61867 +GFLOW: 0.321555 0.110779 0.141227 2.9552 2.97297 2.86869 2.91013 0.00580635 +ADAPT: 0.321555 0.0928682 0.00378381 2.64284 +GFLOW: 0.443533 0.0680077 0.084707 2.97615 2.98418 2.9269 2.94723 0.00433698 +ADAPT: 0.443533 0.121978 0.00546041 1.83136 +GFLOW: 0.507569 0.0551953 0.0673967 2.98098 2.98665 2.94325 2.95778 0.00357088 +ADAPT: 0.507569 0.0640368 0.00872621 1.14597 +GFLOW: 0.56332 0.046867 0.0561409 2.9846 2.98883 2.95367 2.96457 0.00297933 +ADAPT: 0.56332 0.0557506 0.00857356 1.16638 +GFLOW: 0.619071 0.04034 0.0473572 2.98718 2.99038 2.96157 2.96979 0.0024541 +ADAPT: 0.619071 0.055751 0.00821832 1.21679 +GFLOW: 0.675614 0.0350512 0.0402966 2.98892 2.99138 2.96776 2.97394 0.00199382 +ADAPT: 0.675614 0.0565434 0.00852003 1.1737 +GFLOW: 0.732276 0.0307497 0.0346197 2.99006 2.99202 2.97264 2.97728 0.00160274 +ADAPT: 0.732276 0.056662 0.00920854 1.08595 +GFLOW: 0.787605 0.0272845 0.0301094 2.99113 2.99272 2.97648 2.97996 0.00128172 +ADAPT: 0.787605 0.0553288 0.00937667 1.06648 +GFLOW: 0.841307 0.0244614 0.0264898 2.99238 2.99366 2.97954 2.98214 0.00102153 +ADAPT: 0.841307 0.0537022 0.00860744 1.16179 +GFLOW: 0.894939 0.0220597 0.0234602 2.9934 2.99443 2.98206 2.98398 0.000808843 +ADAPT: 0.894939 0.0536321 0.00767116 1.30358 +GFLOW: 0.950597 0.0199208 0.0208086 2.99379 2.99471 2.98423 2.98559 0.000632425 +ADAPT: 0.950597 0.055658 0.00766535 1.30457 +GFLOW: 1 0.0182775 0.0188039 2.9953 2.99589 2.98589 2.98685 0.000502461 +ADAPT: 1 0.0494025 0.0056356 1.77443 +Number of steps = 17 +Number of rejected steps = 3 +Time to complete flow = 5.188799e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 5.199368e-01 seconds +exit: Thu Oct 27 16:14:29 2022 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.2.sample-in new file mode 100644 index 000000000..0b620da15 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.2.sample-in @@ -0,0 +1,14 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.2.sample-out new file mode 100644 index 000000000..a49a3d711 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.2.sample-out @@ -0,0 +1,89 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 16:14:29 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.157688e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.770424e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.03599546846841682 0.8693921629065754 0.8369631263535411 2.271076952321912 2.425012888161282 1.695937200650389 1.828622014599843 0.0227316020814034 +ADAPT: 0.0359955 0.03599546846841682 0.007846116245504929 1.274515911707151 +GFLOW: 0.07307092629997611 0.6158407801989489 0.6384715661258779 2.562808419376144 2.720840587094379 2.121758741276045 2.314569742806373 -0.007707766960421213 +ADAPT: 0.0730709 0.03707545783155929 0.006350719617321549 1.57462470437603 +GFLOW: 0.1140475163537169 0.419476395846081 0.4740630339169947 2.734433491859986 2.848028141567006 2.41137571808105 2.582655409126051 -0.007591895520757173 +ADAPT: 0.114048 0.04097659005374081 0.004456105847642471 2.244111864014756 +GFLOW: 0.1650127775275925 0.2767665933543997 0.3356023082069865 2.845604024601595 2.914443833151062 2.622788084057924 2.745917767154941 0.0006587288266775075 +ADAPT: 0.165013 0.05096526117387558 0.00439657927438528 2.274495551180111 +GFLOW: 0.2286863997821815 0.1806791578904916 0.2280717472437534 2.912859905274114 2.950597019917335 2.766710272454005 2.844365307051595 0.00531374289054687 +ADAPT: 0.228686 0.06367362225458896 0.00276342173870514 3.61870208225463 +GFLOW: 0.3215546876050466 0.1107790009340462 0.1412271077191908 2.955200669205923 2.972969123031361 2.868694623421041 2.910128476198361 0.005806356241307806 +ADAPT: 0.321555 0.09286828782286509 0.0037838694864118 2.642797283550836 +GFLOW: 0.4435319816127548 0.0680077945383995 0.08470716321065107 2.976154852524344 2.984180261626127 2.926898592814602 2.947230389988988 0.004336994004604666 +ADAPT: 0.443532 0.1219772940077082 0.005459568051099607 1.831646735859609 +GFLOW: 0.5075684643966295 0.05519546826068487 0.06739694009984783 2.980982149977228 2.986653458897933 2.943247339781974 2.957778559799288 0.00357090090623978 +ADAPT: 0.507568 0.06403648278387479 0.008726234283002454 1.145969690440087 +GFLOW: 0.5633200546981142 0.04686698079319624 0.05614086845762734 2.984601900144437 2.988826408794484 2.953668405409209 2.964567109613432 0.002979332227915439 +ADAPT: 0.56332 0.05575159030148464 0.008573577714769258 1.166374217705348 +GFLOW: 0.6190720184380699 0.0403398485010272 0.04735701460512243 2.987182197549172 2.990376182957766 2.961565710657799 2.969785428825889 0.00245409061554925 +ADAPT: 0.619072 0.05575196373995577 0.008219036640654613 1.216687604303409 +GFLOW: 0.675614752196207 0.03505112239960841 0.04029654586709447 2.988922021101231 2.991380852372741 2.967758903303588 2.973943125169077 0.001993823378603642 +ADAPT: 0.675615 0.05654273375813706 0.008520677512822048 1.17361559394213 +GFLOW: 0.7322746383957933 0.03074981421625476 0.03461981425444815 2.990064728012324 2.992018153333081 2.97264261962546 2.977280248624934 0.001602747361184953 +ADAPT: 0.732275 0.05665988619958627 0.009208075909633498 1.08600321045768 +GFLOW: 0.7876023880155639 0.02728470013759719 0.03010956648743605 2.991129689377864 2.992719947590092 2.976479519145164 2.979955898010066 0.001281729576855319 +ADAPT: 0.787602 0.0553277496197706 0.009375332884893017 1.066628793108087 +GFLOW: 0.8413061091726908 0.02446145169036229 0.02648991948901263 2.992378360448772 2.993656843220155 2.979537440142581 2.98213608346167 0.001021542036101855 +ADAPT: 0.841306 0.0537037211571269 0.008606660882287271 1.161890788630961 +GFLOW: 0.8949412906064249 0.02205961993358782 0.02346007814009897 2.993400023896958 2.994431898924856 2.982063496780731 2.983975883200209 0.0008088353151375755 +ADAPT: 0.894941 0.05363518143373416 0.007671997380696502 1.303441529471971 +GFLOW: 0.9506005227587443 0.01992066368083793 0.02080844640640917 2.993784315174669 2.994712297316639 2.984231015459415 2.985587699693094 0.0006324193766027004 +ADAPT: 0.950601 0.0556592321523194 0.007667167041163409 1.304262701766128 +GFLOW: 1 0.01827746029273741 0.01880386248156381 2.995297647211201 2.995889908828186 2.985891539155754 2.986853967038692 0.0005024669121521699 +ADAPT: 1 0.04939947724125571 0.005635982002035225 1.77431368595373 +Number of steps = 17 +Number of rejected steps = 3 +Time to complete flow = 5.700831e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 5.717061e-01 seconds +exit: Thu Oct 27 16:14:29 2022 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.1.sample-in new file mode 100644 index 000000000..8d42cb310 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.1.sample-in @@ -0,0 +1,14 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.1.sample-out new file mode 100644 index 000000000..559ba556d --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.1.sample-out @@ -0,0 +1,75 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 16:14:28 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.040863e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.818771e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0571049 0.800714 0.787511 2.31039 2.46834 1.77238 1.92182 0.0138191 +ADAPT: 0.0571049 0.0571049 0.00857134 1.16668 +GFLOW: 0.114215 0.52019 0.563028 2.61157 2.76578 2.2257 2.42327 -0.0134499 +ADAPT: 0.114215 0.0571103 0.0061431 1.62784 +GFLOW: 0.178038 0.324474 0.388336 2.78263 2.88482 2.52041 2.6799 -0.0101022 +ADAPT: 0.178038 0.0638227 0.00547789 1.82552 +GFLOW: 0.25214 0.203254 0.260061 2.88071 2.93841 2.70965 2.81491 -0.00202889 +ADAPT: 0.25214 0.0741016 0.00427716 2.338 +GFLOW: 0.345572 0.125962 0.165724 2.93753 2.96638 2.8324 2.89269 0.00249314 +ADAPT: 0.345572 0.0934329 0.00305802 3.27009 +GFLOW: 0.47732 0.0743885 0.0966286 2.96999 2.9823 2.91137 2.94037 0.00353463 +ADAPT: 0.47732 0.131748 0.00332107 3.01107 +GFLOW: 0.658055 0.0430864 0.0528876 2.98597 2.99061 2.95528 2.96707 0.00250409 +ADAPT: 0.658055 0.180734 0.00317757 3.14706 +GFLOW: 0.826566 0.0290068 0.0334699 2.99044 2.99275 2.97241 2.97804 0.00145501 +ADAPT: 0.826566 0.168511 0.00856898 1.167 +GFLOW: 0.914457 0.0242333 0.0269795 2.99305 2.99453 2.9785 2.98205 0.00106193 +ADAPT: 0.914457 0.0878912 0.00863081 1.15864 +GFLOW: 1 0.0206362 0.0222634 2.99469 2.99563 2.98265 2.9849 0.000764279 +ADAPT: 1 0.0855431 0.00527397 1.8961 +Number of steps = 10 +Number of rejected steps = 3 +Time to complete flow = 1.191759e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.202171e-01 seconds +exit: Thu Oct 27 16:14:28 2022 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.2.sample-in new file mode 100644 index 000000000..8d42cb310 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.2.sample-in @@ -0,0 +1,14 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.2.sample-out new file mode 100644 index 000000000..1e8f0ef64 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.2.sample-out @@ -0,0 +1,75 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 16:14:28 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.0 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_CF3 +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.050400e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.799034e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.05710494765115298 0.8007141141671855 0.7875110119468766 2.310394358604133 2.468341842034199 1.772384782568168 1.921820807049433 0.01381909135754463 +ADAPT: 0.0571049 0.05710494765115298 0.008571374726118698 1.166673995657662 +GFLOW: 0.1142151697328976 0.5201900118195394 0.5630279958963903 2.611570496920689 2.765781282764239 2.225698174762529 2.423270868979434 -0.01344988709409152 +ADAPT: 0.114215 0.0571102220817446 0.006143089434918998 1.627845419791102 +GFLOW: 0.1780378700222671 0.3244737145459834 0.3883362274783069 2.782628209418442 2.884821516767513 2.520414238285682 2.679896190973487 -0.01010214680031283 +ADAPT: 0.178038 0.06382270028936957 0.005477871563606376 1.825526554225464 +GFLOW: 0.2521395689359674 0.2032539341222995 0.2600608987829447 2.880707364778205 2.938406153828363 2.709645705736638 2.814912009707866 -0.002028842914517146 +ADAPT: 0.25214 0.07410169891370025 0.004277157567503802 2.33800131095851 +GFLOW: 0.3455725101661126 0.1259615163248149 0.1657241297907014 2.937534388817494 2.966382511297933 2.832398966064183 2.892687466533452 0.002493169825071404 +ADAPT: 0.345573 0.0934329412301452 0.003058037894602972 3.270070661206868 +GFLOW: 0.4773200977066691 0.07438853172287574 0.0966286316443577 2.96998840246232 2.982295894856166 2.91137159051234 2.940366129022082 0.0035346388135707 +ADAPT: 0.47732 0.1317475875405565 0.00332102109025569 3.011122100170128 +GFLOW: 0.6580551540870633 0.04308631513816136 0.05288751578145236 2.98597481309482 2.990613793264106 2.955278870881358 2.96707404551861 0.002504090832113422 +ADAPT: 0.658055 0.1807350563803942 0.003177716384036345 3.146913944314303 +GFLOW: 0.8265669338751436 0.02900668620879503 0.03346979901196772 2.990437435803951 2.992754600583268 2.972411276134933 2.978036342937336 0.001455005935704717 +ADAPT: 0.826567 0.1685117797880803 0.008568954261208732 1.167003545026439 +GFLOW: 0.9144560313717522 0.02423333083399361 0.02697950074994419 2.993047311494903 2.994526737830257 2.97850434616194 2.982052081158894 0.001061928192022287 +ADAPT: 0.914456 0.08788909749660864 0.008630844961117096 1.15863510989377 +GFLOW: 1 0.02063617728955537 0.02226340655817641 2.994685815413246 2.995628201699507 2.982647762144869 2.984895887312241 0.0007642813937907262 +ADAPT: 1 0.08554396862824776 0.00527385068403723 1.896147729450849 +Number of steps = 10 +Number of rejected steps = 3 +Time to complete flow = 1.322830e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.338181e-01 seconds +exit: Thu Oct 27 16:14:28 2022 + From 293de4f2a8b453d46396895fe3f5f48fddb22261 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Thu, 27 Oct 2022 16:47:10 -0400 Subject: [PATCH 42/49] Updated tests for wilson_flow_adpt_a --- ...wilson_flow_adpt_bs_a.symanzik.1.sample-in | 14 +++ ...ilson_flow_adpt_bs_a.symanzik.1.sample-out | 91 +++++++++++++++++++ ...wilson_flow_adpt_bs_a.symanzik.2.sample-in | 14 +++ ...ilson_flow_adpt_bs_a.symanzik.2.sample-out | 91 +++++++++++++++++++ .../wilson_flow_adpt_bs_a.wilson.1.sample-in | 14 +++ .../wilson_flow_adpt_bs_a.wilson.1.sample-out | 77 ++++++++++++++++ .../wilson_flow_adpt_bs_a.wilson.2.sample-in | 14 +++ .../wilson_flow_adpt_bs_a.wilson.2.sample-out | 77 ++++++++++++++++ 8 files changed, 392 insertions(+) create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.2.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.1.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.1.sample-out create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.2.sample-in create mode 100644 wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.1.sample-in b/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.1.sample-in new file mode 100644 index 000000000..0b620da15 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.1.sample-in @@ -0,0 +1,14 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.1.sample-out b/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.1.sample-out new file mode 100644 index 000000000..270e2711f --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.1.sample-out @@ -0,0 +1,91 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 16:22:36 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.1 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_BS +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.000332e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.794930e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.683596 0.689287 2.49362 2.66867 2.01982 2.21584 -0.000286496 +ADAPT: 0.0625 0.0625 0.00874461 1.14356 +GFLOW: 0.12459 0.38198 0.439807 2.76111 2.86494 2.46456 2.62868 -0.00743558 +ADAPT: 0.12459 0.0620903 0.00380328 2.62931 +GFLOW: 0.195913 0.221806 0.276283 2.87377 2.92448 2.7011 2.80097 0.00392072 +ADAPT: 0.195913 0.0713226 0.00715016 1.39857 +GFLOW: 0.255046 0.155262 0.19736 2.91756 2.9483 2.80174 2.86716 0.00573357 +ADAPT: 0.255046 0.0591329 0.00615522 1.62464 +GFLOW: 0.316428 0.113651 0.144906 2.93404 2.95486 2.86128 2.90536 0.0059712 +ADAPT: 0.316428 0.0613826 0.00773559 1.29273 +GFLOW: 0.37393 0.0886823 0.112386 2.94513 2.96096 2.89639 2.92781 0.00542393 +ADAPT: 0.37393 0.057502 0.00745882 1.3407 +GFLOW: 0.434165 0.0705058 0.0883435 2.93857 2.95378 2.91941 2.94265 0.00494511 +ADAPT: 0.434165 0.0602351 0.00955666 1.04639 +GFLOW: 0.489113 0.0588846 0.0729026 2.95003 2.96246 2.93551 2.95308 0.00420265 +ADAPT: 0.489113 0.0549472 0.00791849 1.26287 +GFLOW: 0.545535 0.0497322 0.0606703 2.9513 2.96317 2.94706 2.96064 0.00359129 +ADAPT: 0.545535 0.0564228 0.00809927 1.23468 +GFLOW: 0.603039 0.0424951 0.0510217 2.94467 2.958 2.9554 2.96618 0.00307841 +ADAPT: 0.603039 0.0575038 0.00901475 1.10929 +GFLOW: 0.65959 0.0369537 0.0436992 2.94144 2.95575 2.96184 2.97053 0.00258557 +ADAPT: 0.65959 0.0565504 0.00914834 1.09309 +GFLOW: 0.71493 0.0326391 0.038039 2.94533 2.95906 2.96719 2.97417 0.00211044 +ADAPT: 0.71493 0.0553408 0.00857309 1.16644 +GFLOW: 0.770273 0.0290766 0.0333877 2.94788 2.96138 2.97147 2.97712 0.00171089 +ADAPT: 0.770273 0.0553422 0.00822478 1.21584 +GFLOW: 0.826387 0.0260425 0.0294583 2.94432 2.95928 2.97475 2.97943 0.00139491 +ADAPT: 0.826387 0.0561141 0.00848676 1.17831 +GFLOW: 0.882692 0.0234946 0.0261995 2.93859 2.95569 2.97733 2.98129 0.00113674 +ADAPT: 0.882692 0.0563051 0.00885623 1.12915 +GFLOW: 0.938392 0.021389 0.0235394 2.93727 2.95529 2.97962 2.98295 0.000914408 +ADAPT: 0.938392 0.0557 0.00877722 1.13931 +GFLOW: 0.993658 0.0196098 0.0213103 2.93909 2.95708 2.98166 2.98443 0.000728145 +ADAPT: 0.993658 0.0552662 0.00848943 1.17794 +GFLOW: 1 0.0194985 0.021177 2.96389 2.97427 2.98282 2.98517 0.000668589 +ADAPT: 1 0.00634208 5.51399e-06 1813.57 +Number of steps = 18 +Number of rejected steps = 5 +Time to complete flow = 5.880110e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 5.890689e-01 seconds +exit: Thu Oct 27 16:22:37 2022 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.2.sample-in b/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.2.sample-in new file mode 100644 index 000000000..0b620da15 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.2.sample-in @@ -0,0 +1,14 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.2.sample-out b/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.2.sample-out new file mode 100644 index 000000000..6e433afc8 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.2.sample-out @@ -0,0 +1,91 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 16:22:37 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_BS +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +symanzik +set staple to symanzik +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.429485e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.739429e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.6835964225873505 0.689286618530199 2.493615815143509 2.66866524114337 2.019823710776547 2.215838902238242 -0.0002864649851840247 +ADAPT: 0.0625 0.0625 0.008744600407223805 1.143562831268897 +GFLOW: 0.1245902821036193 0.3819800675916002 0.4398064595430988 2.761111028726414 2.864937614932732 2.464559878530503 2.628681470395335 -0.007435577046840708 +ADAPT: 0.12459 0.0620902821036193 0.003803281294998176 2.629308542902503 +GFLOW: 0.1959128841135744 0.2218061967930049 0.2762828919379384 2.873765910224673 2.924481422917859 2.7010987299361 2.800972661433951 0.003920720441560787 +ADAPT: 0.195913 0.07132260200995506 0.007150152193198876 1.398571628938452 +GFLOW: 0.2550457600688872 0.1552622579292973 0.197360399485441 2.917561250106928 2.94830269692433 2.801743522176772 2.867162813266096 0.005733569732389776 +ADAPT: 0.255046 0.05913287595531278 0.006155222659211164 1.624636597838619 +GFLOW: 0.3164283167619881 0.1136509810561381 0.14490563856602 2.934043708924205 2.954859013513772 2.861276454668527 2.905359879144369 0.0059711957331154 +ADAPT: 0.316428 0.0613825566931009 0.00773559875245263 1.292724754735944 +GFLOW: 0.3739302586715851 0.08868232253791068 0.1123862180684303 2.945132042365661 2.960959353226075 2.896391004927553 2.927811608209421 0.005423932598536746 +ADAPT: 0.37393 0.05750194190959705 0.0074588152412268 1.340695496079245 +GFLOW: 0.4341653399013924 0.07050585150671157 0.08834354214147444 2.938574363370106 2.953779694625871 2.9194110841328 2.942645022390376 0.004945113589595816 +ADAPT: 0.434165 0.06023508122980733 0.009556659306288771 1.046390760568339 +GFLOW: 0.4891125313601918 0.05888455339607399 0.07290262010772641 2.950028461390121 2.962459072085421 2.935511663017476 2.953075314543771 0.004202647964680944 +ADAPT: 0.489113 0.0549471914587994 0.00791849493442332 1.262866249560627 +GFLOW: 0.5455353645607839 0.04973221686151052 0.06067028688176868 2.951300150930809 2.963165880483187 2.947058835295071 2.960636993117082 0.003591289456942637 +ADAPT: 0.545535 0.05642283320059206 0.008099258840496608 1.23468087598332 +GFLOW: 0.6030391898137939 0.04249513879334075 0.05102167908120483 2.94466849230102 2.957997422754122 2.955396275847962 2.966184655606601 0.003078412144948436 +ADAPT: 0.603039 0.05750382525300999 0.009014762206031909 1.109291600981871 +GFLOW: 0.6595895769680404 0.03695368044691828 0.04369921632358156 2.941437251335846 2.955753974997907 2.961836179512982 2.970529286789201 0.002585574226051064 +ADAPT: 0.65959 0.05655038715424651 0.009148345364688549 1.093093843898671 +GFLOW: 0.7149303223029397 0.03263907257005026 0.03803899517518756 2.945332985957787 2.959056255236039 2.967188563284501 2.974169529358454 0.002110446655709743 +ADAPT: 0.71493 0.05534074533489935 0.008573086404675441 1.166441060776709 +GFLOW: 0.7702724954749345 0.02907659912798445 0.03338766017741375 2.947875241368415 2.961379512128479 2.971474259292142 2.977121952285971 0.001710896117505042 +ADAPT: 0.770272 0.05534217317199475 0.008224778287156904 1.215838245222382 +GFLOW: 0.8263865626504008 0.02604254343011623 0.02945832635850606 2.944321687374929 2.959278518429941 2.974746843266991 2.979427290753164 0.001394913326578953 +ADAPT: 0.826387 0.05611406717546631 0.008486766466183756 1.178305075301159 +GFLOW: 0.8826916887941233 0.02349459864491877 0.02619950004872245 2.938592876761152 2.955692957574634 2.977332429179762 2.981289318417394 0.001136740543929972 +ADAPT: 0.882692 0.05630512614372256 0.008856240436711366 1.12914730256729 +GFLOW: 0.9383916733641727 0.02138895533114845 0.02353935998136653 2.93726783171601 2.955285017118463 2.979619591184357 2.982945590188457 0.0009144060955121384 +ADAPT: 0.938392 0.05569998457004948 0.008777217526279331 1.139313224271771 +GFLOW: 0.9936578888816956 0.01960977891016353 0.02131032789613178 2.939093219247452 2.957083364812302 2.981661611549779 2.984429832497704 0.0007281473537413236 +ADAPT: 0.993658 0.05526621551752285 0.00848942182243941 1.177936520195969 +GFLOW: 1 0.01949847319940713 0.02117697291567539 2.963892902859471 2.974268453848215 2.982821829968515 2.985172403213517 0.0006685901590341388 +ADAPT: 1 0.006342111118304405 5.51603099757058e-06 1812.89771656546 +Number of steps = 18 +Number of rejected steps = 5 +Time to complete flow = 6.432030e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 6.448529e-01 seconds +exit: Thu Oct 27 16:22:37 2022 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.1.sample-in b/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.1.sample-in new file mode 100644 index 000000000..8d42cb310 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.1.sample-in @@ -0,0 +1,14 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.1.sample-out b/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.1.sample-out new file mode 100644 index 000000000..de6160114 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.1.sample-out @@ -0,0 +1,77 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 16:22:36 2022 + +Options selected... +Generic single precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 1.1 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_BS +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.050400e-04 +CHECK PLAQ: 1.723748e+00 1.690586e+00 +CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b +Unitarity checked. Max deviation 2.38e-07 +Time to check unitarity = 6.985664e-05 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.771013 0.762609 2.35235 2.51803 1.83004 1.99213 0.00916212 +ADAPT: 0.0625 0.0625 0.00236947 4.22035 +GFLOW: 0.158452 0.370397 0.433324 2.74123 2.86254 2.44715 2.62743 -0.0130226 +ADAPT: 0.158452 0.0959518 0.00531323 1.88209 +GFLOW: 0.270996 0.181657 0.236298 2.89414 2.94425 2.74071 2.83653 -0.000572752 +ADAPT: 0.270996 0.112544 0.0038479 2.59882 +GFLOW: 0.387948 0.104445 0.138281 2.94349 2.96538 2.86137 2.91011 0.00324961 +ADAPT: 0.387948 0.116952 0.00629245 1.58921 +GFLOW: 0.491016 0.071075 0.0923251 2.95924 2.97233 2.91163 2.94022 0.00344241 +ADAPT: 0.491016 0.103067 0.00626559 1.59602 +GFLOW: 0.593122 0.0516591 0.0650649 2.96061 2.97157 2.93821 2.95638 0.00298537 +ADAPT: 0.593122 0.102107 0.00733134 1.36401 +GFLOW: 0.689558 0.0398602 0.0484521 2.9619 2.97263 2.95457 2.96666 0.00245257 +ADAPT: 0.689558 0.0964361 0.00736762 1.35729 +GFLOW: 0.790993 0.0312826 0.0366322 2.94248 2.95952 2.96287 2.97219 0.00205822 +ADAPT: 0.790993 0.101435 0.00990851 1.00923 +GFLOW: 0.881849 0.0258575 0.0293103 2.95424 2.96864 2.97187 2.9781 0.00153737 +ADAPT: 0.881849 0.0908556 0.00785212 1.27354 +GFLOW: 0.975407 0.0215936 0.0237193 2.95281 2.96844 2.97709 2.98173 0.00117482 +ADAPT: 0.975407 0.0935577 0.00786621 1.27126 +GFLOW: 1 0.0207483 0.0226218 2.98427 2.9889 2.98128 2.9842 0.000862002 +ADAPT: 1 0.0245933 3.00327e-05 332.97 +Number of steps = 11 +Number of rejected steps = 5 +Time to complete flow = 1.468699e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.479390e-01 seconds +exit: Thu Oct 27 16:22:36 2022 + diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.2.sample-in b/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.2.sample-in new file mode 100644 index 000000000..8d42cb310 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.2.sample-in @@ -0,0 +1,14 @@ +prompt 0 +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2.0 + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1.0 +forget diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.2.sample-out b/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.2.sample-out new file mode 100644 index 000000000..57f0c9153 --- /dev/null +++ b/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.2.sample-out @@ -0,0 +1,77 @@ +Wilson/Symanzik Flow application +MIMD version 7 +Machine = Scalar processor, with 1 nodes +Host(0) = computer +Username = bazavov +start: Thu Oct 27 16:22:36 2022 + +Options selected... +Generic double precision +C_GLOBAL_INLINE +type 0 for no prompts, 1 for prompts, or 2 for proofreading +nx 4 +ny 4 +nz 4 +nt 8 +anisotropy 2 +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry +ON EACH NODE (RANK) 4 x 4 x 4 x 8 +Mallocing 2.2 MBytes per node for lattice +Made lattice +Made nn gathers +Integrator = INTEGRATOR_ADAPT_BS +Finished setup + + +reload_serial ../../binary_samples/lat.sample.l4448 +wilson +set staple to wilson +exp_order 8 +stepsize 0.0625 +local_tol 0.01 +stoptime 1 +forget +Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 +Time stamp Wed Oct 10 14:27:08 2001 +Checksums 13f3b413 161f7dde OK +Time to reload gauge configuration = 2.291203e-04 +CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 +CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b +Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 +Time to check unitarity = 2.751350e-04 +#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge +#ADAPT time stepsize distance local_tol/distance +GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +ADAPT: 0 0.0625 0 0 +GFLOW: 0.0625 0.7710131731574482 0.7626088229355815 2.352352162560256 2.518030482716568 1.830041058060231 1.992134797207159 0.009162119049090731 +ADAPT: 0.0625 0.0625 0.002369473145186145 4.220347472735085 +GFLOW: 0.1584517777739811 0.3703972082737435 0.4333237576390977 2.741230906720543 2.862536095496159 2.447152753007533 2.627433165608428 -0.01302257392565206 +ADAPT: 0.158452 0.09595177777398115 0.005313228565514465 1.882094827409656 +GFLOW: 0.2709961538816 0.1816574876857759 0.2362981265719427 2.894140372473772 2.944251435220632 2.740713657406182 2.836529139814663 -0.0005727453081420538 +ADAPT: 0.270996 0.1125443761076189 0.003847884933363769 2.598830311502619 +GFLOW: 0.3879483005630797 0.1044445333142018 0.1382812895141263 2.943492045593234 2.965375180605545 2.861371171031312 2.910111288020072 0.003249611580485943 +ADAPT: 0.387948 0.1169521466814797 0.006292438069231871 1.589209125298665 +GFLOW: 0.4910155317530608 0.071075047750828 0.09232509637189168 2.959237684817636 2.972327329870703 2.911633311706201 2.940215498131481 0.00344241128385191 +ADAPT: 0.491016 0.1030672311899811 0.006265581009206701 1.596021180686342 +GFLOW: 0.5931223415984229 0.05165907193843964 0.06506489264241658 2.960605718822336 2.971565582951555 2.938208090156609 2.956383755596155 0.002985375122850321 +ADAPT: 0.593122 0.1021068098453621 0.007331328597941108 1.364009246947183 +GFLOW: 0.6895584254367113 0.03986024190747892 0.04845207066890312 2.961899444920505 2.972632250308443 2.954570215809 2.966661566349539 0.00245257046553297 +ADAPT: 0.689558 0.0964360838382884 0.007367613723016902 1.357291570370927 +GFLOW: 0.7909933604018464 0.03128259367026591 0.03663218255237122 2.942479107685102 2.959519042687628 2.962874024315219 2.972188917581546 0.002058219998197414 +ADAPT: 0.790993 0.1014349349651351 0.009908519604892847 1.009232498774285 +GFLOW: 0.8818489798039313 0.0258574595418948 0.02931025914069634 2.954238998977832 2.968637617803243 2.971866423739014 2.978102340388217 0.001537377553830151 +ADAPT: 0.881849 0.09085561940208484 0.007852125513880625 1.273540518719735 +GFLOW: 0.975406705173155 0.02159356180448532 0.0237193350773857 2.952812901876072 2.968436742216549 2.977086121935261 2.981733008905177 0.001174815605405013 +ADAPT: 0.975407 0.09355772536922363 0.007866206865615899 1.271260744960975 +GFLOW: 1 0.02074832903081137 0.02262180107017475 2.984266224406261 2.988899415475716 2.981277089454924 2.984199820904433 0.0008620048613622071 +ADAPT: 1 0.02459329482684502 3.003565354947315e-05 332.93765303054 +Number of steps = 11 +Number of rejected steps = 5 +Time to complete flow = 1.581190e-01 seconds + + +ask_starting_lattice(0): EOF on input. +RUNNING COMPLETED +Time = 1.597080e-01 seconds +exit: Thu Oct 27 16:22:36 2022 + From 2d2c6e726d056b44121708df20258b285c82e24d Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Fri, 28 Oct 2022 13:49:20 -0400 Subject: [PATCH 43/49] Move flow integration from control.c into a function run_gradient_flow() in integrate.c --- wilson_flow/control.c | 120 +-------------------------- wilson_flow/integrate.c | 128 +++++++++++++++++++++++++++++ wilson_flow/wilson_flow_includes.h | 2 + 3 files changed, 133 insertions(+), 117 deletions(-) diff --git a/wilson_flow/control.c b/wilson_flow/control.c index 26de5339a..8914e6cb2 100644 --- a/wilson_flow/control.c +++ b/wilson_flow/control.c @@ -23,15 +23,7 @@ main( int argc, char **argv ) /* control variables */ int prompt; double dtime, dtimec, dclock(); - - /* RK integration variables */ int i; - double flowtime; - - /* Wilson flow output variables */ - double Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge; - double old_value=0, new_value=0; - double der_value=0; /* Initialization */ initialize_machine(&argc, &argv); @@ -49,121 +41,15 @@ main( int argc, char **argv ) for( i=0; istoptime-flowtime && stoptime!=AUTO_STOPTIME ) { - stepsize = stoptime-flowtime; - is_final_step = 1; - } -// printf("%g\n", stepsize); - - /* Perform one flow step (most of the computation is here) */ - flow_step(); - - flowtime += stepsize; - i++; - - /* Calculate and print current flow output */ - fmunu_fmunu(&Et_C, &Es_C, &charge); - gauge_action_w_s( &Et_W, &Es_W, &Et_S, &Es_S ); -#if (MILC_PRECISION==1) - node0_printf("GFLOW: %g %g %g %g %g %g %g %g\n", flowtime, Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge); -#else - node0_printf("GFLOW: %.16g %.16g %.16g %.16g %.16g %.16g %.16g %.16g\n", flowtime, Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge); -#endif -#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ - GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ - GF_INTEGRATOR==INTEGRATOR_ADAPT_BS -#if (MILC_PRECISION==1) - node0_printf("ADAPT: %g %g %g %g\n", flowtime, stepsize, dist, local_tol/dist ); -#else - node0_printf("ADAPT: %g %.16g %.16g %.16g\n", flowtime, stepsize, dist, local_tol/dist ); -#endif -#endif - fflush(stdout); - - /* Automatic determination of stoptime: */ - /* t^2 E > 0.45 and d/dt { t^2 E } > 0.35 */ - /* Bounds need to be adjusted with scale determination cutoff */ - if( stoptime==AUTO_STOPTIME ) { - - old_value = new_value; - new_value = flowtime*flowtime*(Et_C+Es_C); - der_value = flowtime*(new_value-old_value)/stepsize; - - if( new_value > 0.45 && der_value > 0.35 ) - break; - } /* end: auto stoptime */ - -#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ - GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ - GF_INTEGRATOR==INTEGRATOR_ADAPT_BS - if( is_final_step==0 ) { - // adjust step size for the next step except if it is final - stepsize = stepsize * SAFETY * pow( local_tol/dist, 1/3. ); - } -#endif - - } /* end: flowtime loop */ - - /* Save and print the number of steps */ - total_steps = i; - node0_printf("Number of steps = %i\n", total_steps); -#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ - GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ - GF_INTEGRATOR==INTEGRATOR_ADAPT_BS - node0_printf("Number of rejected steps = %i\n", steps_rejected); -#endif - fflush(stdout); + /* integrate the flow */ + run_gradient_flow(); /* Save lattice if requested */ if( saveflag != FORGET ) diff --git a/wilson_flow/integrate.c b/wilson_flow/integrate.c index f043274a9..53fc73279 100644 --- a/wilson_flow/integrate.c +++ b/wilson_flow/integrate.c @@ -3,6 +3,134 @@ #include "wilson_flow_includes.h" +/* Highest level function that integrates the flow, called from control.c */ +void +run_gradient_flow() { + + /* RK integration variables */ + int i; + double flowtime; + + /* Wilson flow output variables */ + double Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge; + double old_value=0, new_value=0; + double der_value=0; + + /* Print flow output column labels */ + node0_printf("#LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge\n"); +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + node0_printf("#ADAPT time stepsize distance local_tol/distance\n"); +#endif + fflush(stdout); + + /* Calculate and print initial flow output */ + fmunu_fmunu(&Et_C, &Es_C, &charge); + gauge_action_w_s( &Et_W, &Es_W, &Et_S, &Es_S ); +#if (MILC_PRECISION==1) + node0_printf("GFLOW: %g %g %g %g %g %g %g %g\n", 0.0, Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge); +#else + node0_printf("GFLOW: %g %.16g %.16g %.16g %.16g %.16g %.16g %.16g\n", 0.0, Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge); +#endif +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS +#if (MILC_PRECISION==1) + node0_printf("ADAPT: %g %g %g %g\n", 0.0, stepsize, 0.0, 0.0 ); +#else + node0_printf("ADAPT: %.16g %.16g %.16g %.16g\n", 0.0, stepsize, 0.0, 0.0 ); +#endif +#endif + fflush(stdout); + +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + steps_rejected = 0; // count rejected steps in adaptive schemes +#endif +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + is_first_step = 1; // need to know the first step for FSAL + // set the permutation array for FSAL, this saves copying + // K[3] to K[0] after each step + indK[0] = 0; indK[1] = 1; indK[2] = 2; indK[3] = 3; +#endif + is_final_step = 0; + flowtime = 0; + i = 0; + /* Loop over the flow time */ + while( stoptime==AUTO_STOPTIME || ( flowtimestoptime-flowtime && stoptime!=AUTO_STOPTIME ) { + stepsize = stoptime-flowtime; + is_final_step = 1; + } +// printf("%g\n", stepsize); + + /* Perform one flow step (most of the computation is here) */ + flow_step(); + + flowtime += stepsize; + i++; + + /* Calculate and print current flow output */ + fmunu_fmunu(&Et_C, &Es_C, &charge); + gauge_action_w_s( &Et_W, &Es_W, &Et_S, &Es_S ); +#if (MILC_PRECISION==1) + node0_printf("GFLOW: %g %g %g %g %g %g %g %g\n", flowtime, Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge); +#else + node0_printf("GFLOW: %.16g %.16g %.16g %.16g %.16g %.16g %.16g %.16g\n", flowtime, Et_C, Es_C, Et_W, Es_W, Et_S, Es_S, charge); +#endif +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS +#if (MILC_PRECISION==1) + node0_printf("ADAPT: %g %g %g %g\n", flowtime, stepsize, dist, local_tol/dist ); +#else + node0_printf("ADAPT: %g %.16g %.16g %.16g\n", flowtime, stepsize, dist, local_tol/dist ); +#endif +#endif + fflush(stdout); + + /* Automatic determination of stoptime: */ + /* t^2 E > 0.45 and d/dt { t^2 E } > 0.35 */ + /* Bounds need to be adjusted with scale determination cutoff */ + if( stoptime==AUTO_STOPTIME ) { + + old_value = new_value; + new_value = flowtime*flowtime*(Et_C+Es_C); + der_value = flowtime*(new_value-old_value)/stepsize; + + if( new_value > 0.45 && der_value > 0.35 ) + break; + } /* end: auto stoptime */ + +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + if( is_final_step==0 ) { + // adjust step size for the next step except if it is final + stepsize = stepsize * SAFETY * pow( local_tol/dist, 1/3. ); + } +#endif + + } /* end: flowtime loop */ + + /* Save and print the number of steps */ + total_steps = i; + node0_printf("Number of steps = %i\n", total_steps); +#if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ + GF_INTEGRATOR==INTEGRATOR_ADAPT_BS + node0_printf("Number of rejected steps = %i\n", steps_rejected); +#endif + fflush(stdout); + +} + + + + /* Resets all entries in an anti-hermition matrix to zero */ void clear_anti_hermitian( anti_hermitmat *dest ) diff --git a/wilson_flow/wilson_flow_includes.h b/wilson_flow/wilson_flow_includes.h index 473ccd274..722a02e1c 100644 --- a/wilson_flow/wilson_flow_includes.h +++ b/wilson_flow/wilson_flow_includes.h @@ -19,7 +19,9 @@ /* Prototypes for functions in high level code */ int setup(); int readin(int prompt); +void run_gradient_flow(); void flow_step(); + //void stout_step_rk(); void staple(); void fmunu_fmunu(double *time, double *space, double *charge); From 38ec0ec951dec8ec6fa1c0da0315b0dff2c50063 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Fri, 28 Oct 2022 15:18:02 -0400 Subject: [PATCH 44/49] Moved new tests under standard test/ directory --- wilson_flow/{test_new => test}/wilson_flow.symanzik.1.sample-in | 0 wilson_flow/{test_new => test}/wilson_flow.symanzik.1.sample-out | 0 wilson_flow/{test_new => test}/wilson_flow.symanzik.2.sample-in | 0 wilson_flow/{test_new => test}/wilson_flow.symanzik.2.sample-out | 0 wilson_flow/{test_new => test}/wilson_flow.wilson.1.sample-in | 0 wilson_flow/{test_new => test}/wilson_flow.wilson.1.sample-out | 0 wilson_flow/{test_new => test}/wilson_flow.wilson.2.sample-in | 0 wilson_flow/{test_new => test}/wilson_flow.wilson.2.sample-out | 0 wilson_flow/{test_new => test}/wilson_flow_a.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_a.symanzik.1.sample-out | 0 wilson_flow/{test_new => test}/wilson_flow_a.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_a.symanzik.2.sample-out | 0 wilson_flow/{test_new => test}/wilson_flow_a.wilson.1.sample-in | 0 wilson_flow/{test_new => test}/wilson_flow_a.wilson.1.sample-out | 0 wilson_flow/{test_new => test}/wilson_flow_a.wilson.2.sample-in | 0 wilson_flow/{test_new => test}/wilson_flow_a.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_adpt.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_adpt.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_adpt.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_adpt.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_adpt.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_adpt.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_adpt.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_adpt.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_a.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_a.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_a.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_a.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_a.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_a.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_a.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_a.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_bs.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_bs.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_bs.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_bs.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_bs.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_bs.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_bs.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_bs.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_bs_a.symanzik.1.sample-in | 0 .../wilson_flow_adpt_bs_a.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_bs_a.symanzik.2.sample-in | 0 .../wilson_flow_adpt_bs_a.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_bs_a.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_bs_a.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_bs_a.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_bs_a.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_cf3.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_cf3.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_cf3.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_cf3.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_cf3.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_cf3.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_cf3.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_cf3.wilson.2.sample-out | 0 .../wilson_flow_adpt_cf3_a.symanzik.1.sample-in | 0 .../wilson_flow_adpt_cf3_a.symanzik.1.sample-out | 0 .../wilson_flow_adpt_cf3_a.symanzik.2.sample-in | 0 .../wilson_flow_adpt_cf3_a.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_cf3_a.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_cf3_a.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_adpt_cf3_a.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_adpt_cf3_a.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_bbb.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_bbb.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_bbb.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_bbb.symanzik.2.sample-out | 0 wilson_flow/{test_new => test}/wilson_flow_bbb.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_bbb.wilson.1.sample-out | 0 wilson_flow/{test_new => test}/wilson_flow_bbb.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_bbb.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_bbb_a.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_bbb_a.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_bbb_a.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_bbb_a.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_bbb_a.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_bbb_a.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_bbb_a.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_bbb_a.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_cf3.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_cf3.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_cf3.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_cf3.symanzik.2.sample-out | 0 wilson_flow/{test_new => test}/wilson_flow_cf3.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_cf3.wilson.1.sample-out | 0 wilson_flow/{test_new => test}/wilson_flow_cf3.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_cf3.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_cf3_a.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_cf3_a.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_cf3_a.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_cf3_a.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_cf3_a.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_cf3_a.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_cf3_a.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_cf3_a.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_ck.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_ck.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_ck.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_ck.symanzik.2.sample-out | 0 wilson_flow/{test_new => test}/wilson_flow_ck.wilson.1.sample-in | 0 wilson_flow/{test_new => test}/wilson_flow_ck.wilson.1.sample-out | 0 wilson_flow/{test_new => test}/wilson_flow_ck.wilson.2.sample-in | 0 wilson_flow/{test_new => test}/wilson_flow_ck.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_ck_a.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_ck_a.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_ck_a.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_ck_a.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_ck_a.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_ck_a.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_ck_a.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_ck_a.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk3.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk3.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk3.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk3.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk3.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk3.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk3.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk3.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk3_a.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk3_a.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk3_a.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk3_a.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk3_a.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk3_a.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk3_a.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk3_a.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk4.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk4.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk4.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk4.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk4.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk4.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk4.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk4.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk4_a.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk4_a.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk4_a.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk4_a.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk4_a.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk4_a.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk4_a.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk4_a.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk5.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk5.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk5.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk5.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk5.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk5.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk5.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk5.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk5_a.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk5_a.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk5_a.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk5_a.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk5_a.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk5_a.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk5_a.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk5_a.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk8.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk8.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk8.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk8.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk8.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk8.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk8.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk8.wilson.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk8_a.symanzik.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk8_a.symanzik.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk8_a.symanzik.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk8_a.symanzik.2.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk8_a.wilson.1.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk8_a.wilson.1.sample-out | 0 .../{test_new => test}/wilson_flow_rkmk8_a.wilson.2.sample-in | 0 .../{test_new => test}/wilson_flow_rkmk8_a.wilson.2.sample-out | 0 wilson_flow/{test => test_old}/Makefile | 0 wilson_flow/{test => test_old}/checklist | 0 wilson_flow/{test => test_old}/wilson_flow.1.errtol | 0 wilson_flow/{test => test_old}/wilson_flow.1.sample-in | 0 wilson_flow/{test => test_old}/wilson_flow.1.sample-out | 0 wilson_flow/{test => test_old}/wilson_flow.2.errtol | 0 wilson_flow/{test => test_old}/wilson_flow.2.sample-in | 0 wilson_flow/{test => test_old}/wilson_flow.2.sample-out | 0 184 files changed, 0 insertions(+), 0 deletions(-) rename wilson_flow/{test_new => test}/wilson_flow.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_a.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_a.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_a.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_a.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_a.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_a.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_a.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_a.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_a.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_a.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_a.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_a.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_a.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_a.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_a.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_a.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs_a.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs_a.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs_a.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs_a.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs_a.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs_a.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs_a.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_bs_a.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3_a.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3_a.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3_a.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3_a.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3_a.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3_a.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3_a.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_adpt_cf3_a.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb_a.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb_a.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb_a.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb_a.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb_a.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb_a.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb_a.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_bbb_a.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3_a.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3_a.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3_a.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3_a.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3_a.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3_a.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3_a.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_cf3_a.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck_a.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck_a.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck_a.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck_a.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck_a.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck_a.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck_a.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_ck_a.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3_a.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3_a.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3_a.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3_a.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3_a.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3_a.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3_a.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk3_a.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4_a.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4_a.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4_a.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4_a.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4_a.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4_a.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4_a.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk4_a.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5_a.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5_a.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5_a.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5_a.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5_a.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5_a.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5_a.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk5_a.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8.wilson.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8_a.symanzik.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8_a.symanzik.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8_a.symanzik.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8_a.symanzik.2.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8_a.wilson.1.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8_a.wilson.1.sample-out (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8_a.wilson.2.sample-in (100%) rename wilson_flow/{test_new => test}/wilson_flow_rkmk8_a.wilson.2.sample-out (100%) rename wilson_flow/{test => test_old}/Makefile (100%) rename wilson_flow/{test => test_old}/checklist (100%) rename wilson_flow/{test => test_old}/wilson_flow.1.errtol (100%) rename wilson_flow/{test => test_old}/wilson_flow.1.sample-in (100%) rename wilson_flow/{test => test_old}/wilson_flow.1.sample-out (100%) rename wilson_flow/{test => test_old}/wilson_flow.2.errtol (100%) rename wilson_flow/{test => test_old}/wilson_flow.2.sample-in (100%) rename wilson_flow/{test => test_old}/wilson_flow.2.sample-out (100%) diff --git a/wilson_flow/test_new/wilson_flow.symanzik.1.sample-in b/wilson_flow/test/wilson_flow.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow.symanzik.1.sample-out b/wilson_flow/test/wilson_flow.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow.symanzik.2.sample-in b/wilson_flow/test/wilson_flow.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow.symanzik.2.sample-out b/wilson_flow/test/wilson_flow.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow.wilson.1.sample-in b/wilson_flow/test/wilson_flow.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow.wilson.1.sample-in rename to wilson_flow/test/wilson_flow.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow.wilson.1.sample-out b/wilson_flow/test/wilson_flow.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow.wilson.1.sample-out rename to wilson_flow/test/wilson_flow.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow.wilson.2.sample-in b/wilson_flow/test/wilson_flow.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow.wilson.2.sample-in rename to wilson_flow/test/wilson_flow.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow.wilson.2.sample-out b/wilson_flow/test/wilson_flow.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow.wilson.2.sample-out rename to wilson_flow/test/wilson_flow.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_a.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_a.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_a.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_a.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_a.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_a.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_a.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_a.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_a.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_a.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_a.wilson.1.sample-in b/wilson_flow/test/wilson_flow_a.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_a.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_a.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_a.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_a.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_a.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_a.wilson.2.sample-in b/wilson_flow/test/wilson_flow_a.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_a.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_a.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_a.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_a.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_adpt.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_adpt.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_adpt.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_adpt.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_adpt.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_adpt.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt.wilson.1.sample-in b/wilson_flow/test/wilson_flow_adpt.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_adpt.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_adpt.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt.wilson.2.sample-in b/wilson_flow/test/wilson_flow_adpt.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_adpt.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_adpt.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_a.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_adpt_a.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_a.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_adpt_a.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_a.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_adpt_a.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_a.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_adpt_a.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.wilson.1.sample-in b/wilson_flow/test/wilson_flow_adpt_a.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_a.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_adpt_a.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_a.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_a.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_adpt_a.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.wilson.2.sample-in b/wilson_flow/test/wilson_flow_adpt_a.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_a.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_adpt_a.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_a.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_a.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_adpt_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.1.sample-in b/wilson_flow/test/wilson_flow_adpt_bs.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_adpt_bs.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_bs.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_adpt_bs.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.2.sample-in b/wilson_flow/test/wilson_flow_adpt_bs.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_adpt_bs.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_bs.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_adpt_bs.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs_a.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.1.sample-in b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.2.sample-in b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_bs_a.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-in b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-in b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3_a.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.1.sample-in b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.2.sample-in b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_adpt_cf3_a.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_bbb.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_bbb.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_bbb.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_bbb.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_bbb.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_bbb.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_bbb.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_bbb.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_bbb.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_bbb.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_bbb.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_bbb.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_bbb.wilson.1.sample-in b/wilson_flow/test/wilson_flow_bbb.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_bbb.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_bbb.wilson.1.sample-out b/wilson_flow/test/wilson_flow_bbb.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_bbb.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_bbb.wilson.2.sample-in b/wilson_flow/test/wilson_flow_bbb.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_bbb.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_bbb.wilson.2.sample-out b/wilson_flow/test/wilson_flow_bbb.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_bbb.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_bbb_a.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb_a.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_bbb_a.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_bbb_a.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb_a.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_bbb_a.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-in b/wilson_flow/test/wilson_flow_bbb_a.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_bbb_a.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_bbb_a.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb_a.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_bbb_a.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-in b/wilson_flow/test/wilson_flow_bbb_a.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_bbb_a.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_bbb_a.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_bbb_a.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_bbb_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_cf3.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_cf3.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_cf3.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_cf3.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_cf3.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_cf3.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_cf3.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_cf3.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-in b/wilson_flow/test/wilson_flow_cf3.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_cf3.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-out b/wilson_flow/test/wilson_flow_cf3.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_cf3.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-in b/wilson_flow/test/wilson_flow_cf3.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_cf3.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-out b/wilson_flow/test/wilson_flow_cf3.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_cf3.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_cf3_a.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3_a.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_cf3_a.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_cf3_a.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3_a.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_cf3_a.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-in b/wilson_flow/test/wilson_flow_cf3_a.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_cf3_a.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_cf3_a.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3_a.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_cf3_a.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-in b/wilson_flow/test/wilson_flow_cf3_a.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_cf3_a.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_cf3_a.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_cf3_a.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_cf3_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_ck.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_ck.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_ck.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_ck.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_ck.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_ck.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_ck.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_ck.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_ck.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_ck.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_ck.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_ck.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_ck.wilson.1.sample-in b/wilson_flow/test/wilson_flow_ck.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_ck.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_ck.wilson.1.sample-out b/wilson_flow/test/wilson_flow_ck.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_ck.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_ck.wilson.2.sample-in b/wilson_flow/test/wilson_flow_ck.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_ck.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_ck.wilson.2.sample-out b/wilson_flow/test/wilson_flow_ck.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_ck.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_ck_a.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_ck_a.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_ck_a.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck_a.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_ck_a.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_ck_a.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_ck_a.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_ck_a.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck_a.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_ck_a.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-in b/wilson_flow/test/wilson_flow_ck_a.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_ck_a.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_ck_a.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck_a.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_ck_a.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-in b/wilson_flow/test/wilson_flow_ck_a.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_ck_a.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_ck_a.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_ck_a.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_ck_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_rkmk3.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk3.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk3.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk3.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_rkmk3.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk3.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk3.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk3.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.wilson.1.sample-in b/wilson_flow/test/wilson_flow_rkmk3.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk3.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk3.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk3.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.wilson.2.sample-in b/wilson_flow/test/wilson_flow_rkmk3.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk3.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk3.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk3.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk3.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3_a.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.1.sample-in b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.2.sample-in b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk3_a.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_rkmk4.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk4.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk4.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk4.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_rkmk4.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk4.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk4.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk4.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.wilson.1.sample-in b/wilson_flow/test/wilson_flow_rkmk4.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk4.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk4.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk4.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.wilson.2.sample-in b/wilson_flow/test/wilson_flow_rkmk4.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk4.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk4.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk4.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk4.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4_a.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.1.sample-in b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.2.sample-in b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk4_a.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_rkmk5.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk5.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk5.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk5.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_rkmk5.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk5.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk5.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk5.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.wilson.1.sample-in b/wilson_flow/test/wilson_flow_rkmk5.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk5.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk5.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk5.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.wilson.2.sample-in b/wilson_flow/test/wilson_flow_rkmk5.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk5.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk5.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk5.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk5.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5_a.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.1.sample-in b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.2.sample-in b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk5_a.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_rkmk8.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk8.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk8.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk8.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_rkmk8.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk8.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk8.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk8.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.wilson.1.sample-in b/wilson_flow/test/wilson_flow_rkmk8.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk8.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk8.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk8.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.wilson.2.sample-in b/wilson_flow/test/wilson_flow_rkmk8.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk8.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk8.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk8.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk8.wilson.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.1.sample-in b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.2.sample-in b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8_a.symanzik.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.1.sample-in b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.1.sample-in rename to wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.1.sample-out rename to wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.sample-out diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.2.sample-in b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.sample-in similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.2.sample-in rename to wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.sample-in diff --git a/wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.sample-out similarity index 100% rename from wilson_flow/test_new/wilson_flow_rkmk8_a.wilson.2.sample-out rename to wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.sample-out diff --git a/wilson_flow/test/Makefile b/wilson_flow/test_old/Makefile similarity index 100% rename from wilson_flow/test/Makefile rename to wilson_flow/test_old/Makefile diff --git a/wilson_flow/test/checklist b/wilson_flow/test_old/checklist similarity index 100% rename from wilson_flow/test/checklist rename to wilson_flow/test_old/checklist diff --git a/wilson_flow/test/wilson_flow.1.errtol b/wilson_flow/test_old/wilson_flow.1.errtol similarity index 100% rename from wilson_flow/test/wilson_flow.1.errtol rename to wilson_flow/test_old/wilson_flow.1.errtol diff --git a/wilson_flow/test/wilson_flow.1.sample-in b/wilson_flow/test_old/wilson_flow.1.sample-in similarity index 100% rename from wilson_flow/test/wilson_flow.1.sample-in rename to wilson_flow/test_old/wilson_flow.1.sample-in diff --git a/wilson_flow/test/wilson_flow.1.sample-out b/wilson_flow/test_old/wilson_flow.1.sample-out similarity index 100% rename from wilson_flow/test/wilson_flow.1.sample-out rename to wilson_flow/test_old/wilson_flow.1.sample-out diff --git a/wilson_flow/test/wilson_flow.2.errtol b/wilson_flow/test_old/wilson_flow.2.errtol similarity index 100% rename from wilson_flow/test/wilson_flow.2.errtol rename to wilson_flow/test_old/wilson_flow.2.errtol diff --git a/wilson_flow/test/wilson_flow.2.sample-in b/wilson_flow/test_old/wilson_flow.2.sample-in similarity index 100% rename from wilson_flow/test/wilson_flow.2.sample-in rename to wilson_flow/test_old/wilson_flow.2.sample-in diff --git a/wilson_flow/test/wilson_flow.2.sample-out b/wilson_flow/test_old/wilson_flow.2.sample-out similarity index 100% rename from wilson_flow/test/wilson_flow.2.sample-out rename to wilson_flow/test_old/wilson_flow.2.sample-out From 85c40a2d1e51f148b12211007999e032af60b9ad Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Fri, 28 Oct 2022 19:42:02 -0400 Subject: [PATCH 45/49] Minor polishing --- wilson_flow/integrate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wilson_flow/integrate.c b/wilson_flow/integrate.c index 53fc73279..3f925af40 100644 --- a/wilson_flow/integrate.c +++ b/wilson_flow/integrate.c @@ -21,7 +21,7 @@ run_gradient_flow() { #if GF_INTEGRATOR==INTEGRATOR_ADAPT_LUSCHER || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_CF3 || \ GF_INTEGRATOR==INTEGRATOR_ADAPT_BS - node0_printf("#ADAPT time stepsize distance local_tol/distance\n"); + node0_printf("#LABEL2 time stepsize distance local_tol/distance\n"); #endif fflush(stdout); From a593854749c9c8de75202f55dd8e7386740022f2 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Fri, 28 Oct 2022 19:43:08 -0400 Subject: [PATCH 46/49] Automated tests for all targets --- wilson_flow/test/Makefile | 1 + wilson_flow/test/checklist | 90 +++++++++++++++++++ .../test/wilson_flow.symanzik.1.errtol | 17 ++++ .../test/wilson_flow.symanzik.1.sample-out | 19 ++-- .../test/wilson_flow.symanzik.2.errtol | 17 ++++ .../test/wilson_flow.symanzik.2.sample-out | 19 ++-- wilson_flow/test/wilson_flow.wilson.1.errtol | 17 ++++ .../test/wilson_flow.wilson.1.sample-out | 19 ++-- wilson_flow/test/wilson_flow.wilson.2.errtol | 17 ++++ .../test/wilson_flow.wilson.2.sample-out | 19 ++-- .../test/wilson_flow_a.symanzik.1.errtol | 17 ++++ .../test/wilson_flow_a.symanzik.1.sample-out | 14 +-- .../test/wilson_flow_a.symanzik.2.errtol | 17 ++++ .../test/wilson_flow_a.symanzik.2.sample-out | 12 +-- .../test/wilson_flow_a.wilson.1.errtol | 17 ++++ .../test/wilson_flow_a.wilson.1.sample-out | 14 +-- .../test/wilson_flow_a.wilson.2.errtol | 17 ++++ .../test/wilson_flow_a.wilson.2.sample-out | 14 +-- .../test/wilson_flow_adpt.symanzik.1.errtol | 22 +++++ .../wilson_flow_adpt.symanzik.1.sample-out | 21 +++-- .../test/wilson_flow_adpt.symanzik.2.errtol | 22 +++++ .../wilson_flow_adpt.symanzik.2.sample-out | 21 +++-- .../test/wilson_flow_adpt.wilson.1.errtol | 16 ++++ .../test/wilson_flow_adpt.wilson.1.sample-out | 21 +++-- .../test/wilson_flow_adpt.wilson.2.errtol | 16 ++++ .../test/wilson_flow_adpt.wilson.2.sample-out | 21 +++-- .../test/wilson_flow_adpt_a.symanzik.1.errtol | 36 ++++++++ .../wilson_flow_adpt_a.symanzik.1.sample-out | 16 ++-- .../test/wilson_flow_adpt_a.symanzik.2.errtol | 36 ++++++++ .../wilson_flow_adpt_a.symanzik.2.sample-out | 16 ++-- .../test/wilson_flow_adpt_a.wilson.1.errtol | 22 +++++ .../wilson_flow_adpt_a.wilson.1.sample-out | 16 ++-- .../test/wilson_flow_adpt_a.wilson.2.errtol | 22 +++++ .../wilson_flow_adpt_a.wilson.2.sample-out | 16 ++-- .../wilson_flow_adpt_bs.symanzik.1.errtol | 22 +++++ .../wilson_flow_adpt_bs.symanzik.1.sample-out | 21 +++-- .../wilson_flow_adpt_bs.symanzik.2.errtol | 22 +++++ .../wilson_flow_adpt_bs.symanzik.2.sample-out | 21 +++-- .../test/wilson_flow_adpt_bs.wilson.1.errtol | 14 +++ .../wilson_flow_adpt_bs.wilson.1.sample-out | 21 +++-- .../test/wilson_flow_adpt_bs.wilson.2.errtol | 14 +++ .../wilson_flow_adpt_bs.wilson.2.sample-out | 21 +++-- .../wilson_flow_adpt_bs_a.symanzik.1.errtol | 38 ++++++++ ...ilson_flow_adpt_bs_a.symanzik.1.sample-out | 16 ++-- .../wilson_flow_adpt_bs_a.symanzik.2.errtol | 38 ++++++++ ...ilson_flow_adpt_bs_a.symanzik.2.sample-out | 16 ++-- .../wilson_flow_adpt_bs_a.wilson.1.errtol | 24 +++++ .../wilson_flow_adpt_bs_a.wilson.1.sample-out | 12 +-- .../wilson_flow_adpt_bs_a.wilson.2.errtol | 24 +++++ .../wilson_flow_adpt_bs_a.wilson.2.sample-out | 16 ++-- .../wilson_flow_adpt_cf3.symanzik.1.errtol | 22 +++++ ...wilson_flow_adpt_cf3.symanzik.1.sample-out | 21 +++-- .../wilson_flow_adpt_cf3.symanzik.2.errtol | 22 +++++ ...wilson_flow_adpt_cf3.symanzik.2.sample-out | 21 +++-- .../test/wilson_flow_adpt_cf3.wilson.1.errtol | 16 ++++ .../wilson_flow_adpt_cf3.wilson.1.sample-out | 21 +++-- .../test/wilson_flow_adpt_cf3.wilson.2.errtol | 16 ++++ .../wilson_flow_adpt_cf3.wilson.2.sample-out | 21 +++-- .../wilson_flow_adpt_cf3_a.symanzik.1.errtol | 36 ++++++++ ...lson_flow_adpt_cf3_a.symanzik.1.sample-out | 16 ++-- .../wilson_flow_adpt_cf3_a.symanzik.2.errtol | 36 ++++++++ ...lson_flow_adpt_cf3_a.symanzik.2.sample-out | 14 +-- .../wilson_flow_adpt_cf3_a.wilson.1.errtol | 22 +++++ ...wilson_flow_adpt_cf3_a.wilson.1.sample-out | 16 ++-- .../wilson_flow_adpt_cf3_a.wilson.2.errtol | 22 +++++ ...wilson_flow_adpt_cf3_a.wilson.2.sample-out | 14 +-- .../test/wilson_flow_bbb.symanzik.1.errtol | 17 ++++ .../wilson_flow_bbb.symanzik.1.sample-out | 19 ++-- .../test/wilson_flow_bbb.symanzik.2.errtol | 17 ++++ .../wilson_flow_bbb.symanzik.2.sample-out | 19 ++-- .../test/wilson_flow_bbb.wilson.1.errtol | 17 ++++ .../test/wilson_flow_bbb.wilson.1.sample-out | 19 ++-- .../test/wilson_flow_bbb.wilson.2.errtol | 17 ++++ .../test/wilson_flow_bbb.wilson.2.sample-out | 19 ++-- .../test/wilson_flow_bbb_a.symanzik.1.errtol | 17 ++++ .../wilson_flow_bbb_a.symanzik.1.sample-out | 12 +-- .../test/wilson_flow_bbb_a.symanzik.2.errtol | 17 ++++ .../wilson_flow_bbb_a.symanzik.2.sample-out | 14 +-- .../test/wilson_flow_bbb_a.wilson.1.errtol | 17 ++++ .../wilson_flow_bbb_a.wilson.1.sample-out | 12 +-- .../test/wilson_flow_bbb_a.wilson.2.errtol | 17 ++++ .../wilson_flow_bbb_a.wilson.2.sample-out | 12 +-- .../test/wilson_flow_cf3.symanzik.1.errtol | 17 ++++ .../wilson_flow_cf3.symanzik.1.sample-out | 19 ++-- .../test/wilson_flow_cf3.symanzik.2.errtol | 17 ++++ .../wilson_flow_cf3.symanzik.2.sample-out | 19 ++-- .../test/wilson_flow_cf3.wilson.1.errtol | 17 ++++ .../test/wilson_flow_cf3.wilson.1.sample-out | 19 ++-- .../test/wilson_flow_cf3.wilson.2.errtol | 17 ++++ .../test/wilson_flow_cf3.wilson.2.sample-out | 19 ++-- .../test/wilson_flow_cf3_a.symanzik.1.errtol | 17 ++++ .../wilson_flow_cf3_a.symanzik.1.sample-out | 12 +-- .../test/wilson_flow_cf3_a.symanzik.2.errtol | 17 ++++ .../wilson_flow_cf3_a.symanzik.2.sample-out | 14 +-- .../test/wilson_flow_cf3_a.wilson.1.errtol | 17 ++++ .../wilson_flow_cf3_a.wilson.1.sample-out | 12 +-- .../test/wilson_flow_cf3_a.wilson.2.errtol | 17 ++++ .../wilson_flow_cf3_a.wilson.2.sample-out | 14 +-- .../test/wilson_flow_ck.symanzik.1.errtol | 17 ++++ .../test/wilson_flow_ck.symanzik.1.sample-out | 19 ++-- .../test/wilson_flow_ck.symanzik.2.errtol | 17 ++++ .../test/wilson_flow_ck.symanzik.2.sample-out | 19 ++-- .../test/wilson_flow_ck.wilson.1.errtol | 17 ++++ .../test/wilson_flow_ck.wilson.1.sample-out | 19 ++-- .../test/wilson_flow_ck.wilson.2.errtol | 17 ++++ .../test/wilson_flow_ck.wilson.2.sample-out | 19 ++-- .../test/wilson_flow_ck_a.symanzik.1.errtol | 17 ++++ .../wilson_flow_ck_a.symanzik.1.sample-out | 14 +-- .../test/wilson_flow_ck_a.symanzik.2.errtol | 17 ++++ .../wilson_flow_ck_a.symanzik.2.sample-out | 14 +-- .../test/wilson_flow_ck_a.wilson.1.errtol | 17 ++++ .../test/wilson_flow_ck_a.wilson.1.sample-out | 14 +-- .../test/wilson_flow_ck_a.wilson.2.errtol | 17 ++++ .../test/wilson_flow_ck_a.wilson.2.sample-out | 14 +-- .../test/wilson_flow_rkmk3.symanzik.1.errtol | 17 ++++ .../wilson_flow_rkmk3.symanzik.1.sample-out | 19 ++-- .../test/wilson_flow_rkmk3.symanzik.2.errtol | 17 ++++ .../wilson_flow_rkmk3.symanzik.2.sample-out | 19 ++-- .../test/wilson_flow_rkmk3.wilson.1.errtol | 17 ++++ .../wilson_flow_rkmk3.wilson.1.sample-out | 19 ++-- .../test/wilson_flow_rkmk3.wilson.2.errtol | 17 ++++ .../wilson_flow_rkmk3.wilson.2.sample-out | 19 ++-- .../wilson_flow_rkmk3_a.symanzik.1.errtol | 17 ++++ .../wilson_flow_rkmk3_a.symanzik.1.sample-out | 14 +-- .../wilson_flow_rkmk3_a.symanzik.2.errtol | 17 ++++ .../wilson_flow_rkmk3_a.symanzik.2.sample-out | 14 +-- .../test/wilson_flow_rkmk3_a.wilson.1.errtol | 17 ++++ .../wilson_flow_rkmk3_a.wilson.1.sample-out | 14 +-- .../test/wilson_flow_rkmk3_a.wilson.2.errtol | 17 ++++ .../wilson_flow_rkmk3_a.wilson.2.sample-out | 14 +-- .../test/wilson_flow_rkmk4.symanzik.1.errtol | 17 ++++ .../wilson_flow_rkmk4.symanzik.1.sample-out | 19 ++-- .../test/wilson_flow_rkmk4.symanzik.2.errtol | 17 ++++ .../wilson_flow_rkmk4.symanzik.2.sample-out | 19 ++-- .../test/wilson_flow_rkmk4.wilson.1.errtol | 17 ++++ .../wilson_flow_rkmk4.wilson.1.sample-out | 19 ++-- .../test/wilson_flow_rkmk4.wilson.2.errtol | 17 ++++ .../wilson_flow_rkmk4.wilson.2.sample-out | 19 ++-- .../wilson_flow_rkmk4_a.symanzik.1.errtol | 17 ++++ .../wilson_flow_rkmk4_a.symanzik.1.sample-out | 12 +-- .../wilson_flow_rkmk4_a.symanzik.2.errtol | 17 ++++ .../wilson_flow_rkmk4_a.symanzik.2.sample-out | 14 +-- .../test/wilson_flow_rkmk4_a.wilson.1.errtol | 17 ++++ .../wilson_flow_rkmk4_a.wilson.1.sample-out | 14 +-- .../test/wilson_flow_rkmk4_a.wilson.2.errtol | 17 ++++ .../wilson_flow_rkmk4_a.wilson.2.sample-out | 14 +-- .../test/wilson_flow_rkmk5.symanzik.1.errtol | 17 ++++ .../wilson_flow_rkmk5.symanzik.1.sample-out | 19 ++-- .../test/wilson_flow_rkmk5.symanzik.2.errtol | 17 ++++ .../wilson_flow_rkmk5.symanzik.2.sample-out | 19 ++-- .../test/wilson_flow_rkmk5.wilson.1.errtol | 17 ++++ .../wilson_flow_rkmk5.wilson.1.sample-out | 19 ++-- .../test/wilson_flow_rkmk5.wilson.2.errtol | 17 ++++ .../wilson_flow_rkmk5.wilson.2.sample-out | 19 ++-- .../wilson_flow_rkmk5_a.symanzik.1.errtol | 17 ++++ .../wilson_flow_rkmk5_a.symanzik.1.sample-out | 14 +-- .../wilson_flow_rkmk5_a.symanzik.2.errtol | 17 ++++ .../wilson_flow_rkmk5_a.symanzik.2.sample-out | 14 +-- .../test/wilson_flow_rkmk5_a.wilson.1.errtol | 17 ++++ .../wilson_flow_rkmk5_a.wilson.1.sample-out | 14 +-- .../test/wilson_flow_rkmk5_a.wilson.2.errtol | 17 ++++ .../wilson_flow_rkmk5_a.wilson.2.sample-out | 14 +-- .../test/wilson_flow_rkmk8.symanzik.1.errtol | 17 ++++ .../wilson_flow_rkmk8.symanzik.1.sample-out | 19 ++-- .../test/wilson_flow_rkmk8.symanzik.2.errtol | 17 ++++ .../wilson_flow_rkmk8.symanzik.2.sample-out | 19 ++-- .../test/wilson_flow_rkmk8.wilson.1.errtol | 17 ++++ .../wilson_flow_rkmk8.wilson.1.sample-out | 19 ++-- .../test/wilson_flow_rkmk8.wilson.2.errtol | 17 ++++ .../wilson_flow_rkmk8.wilson.2.sample-out | 19 ++-- .../wilson_flow_rkmk8_a.symanzik.1.errtol | 17 ++++ .../wilson_flow_rkmk8_a.symanzik.1.sample-out | 14 +-- .../wilson_flow_rkmk8_a.symanzik.2.errtol | 17 ++++ .../wilson_flow_rkmk8_a.symanzik.2.sample-out | 14 +-- .../test/wilson_flow_rkmk8_a.wilson.1.errtol | 17 ++++ .../wilson_flow_rkmk8_a.wilson.1.sample-out | 14 +-- .../test/wilson_flow_rkmk8_a.wilson.2.errtol | 17 ++++ .../wilson_flow_rkmk8_a.wilson.2.sample-out | 14 +-- 178 files changed, 2476 insertions(+), 761 deletions(-) create mode 100644 wilson_flow/test/Makefile create mode 100644 wilson_flow/test/checklist create mode 100644 wilson_flow/test/wilson_flow.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_a.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_a.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_a.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_a.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_a.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_a.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_a.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_a.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_bs.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_bs.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_bbb.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_bbb.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_bbb.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_bbb.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_bbb_a.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_bbb_a.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_bbb_a.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_bbb_a.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_cf3.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_cf3.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_cf3.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_cf3.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_cf3_a.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_cf3_a.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_cf3_a.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_cf3_a.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_ck.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_ck.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_ck.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_ck.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_ck_a.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_ck_a.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_ck_a.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_ck_a.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk3.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk3.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk3.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk3.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk4.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk4.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk4.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk4.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk5.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk5.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk5.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk5.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk8.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk8.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk8.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk8.wilson.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.errtol create mode 100644 wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.errtol diff --git a/wilson_flow/test/Makefile b/wilson_flow/test/Makefile new file mode 100644 index 000000000..395ca1c57 --- /dev/null +++ b/wilson_flow/test/Makefile @@ -0,0 +1 @@ +include ../../Make_test_template diff --git a/wilson_flow/test/checklist b/wilson_flow/test/checklist new file mode 100644 index 000000000..2947c1149 --- /dev/null +++ b/wilson_flow/test/checklist @@ -0,0 +1,90 @@ +# Executable precision add-macro input-case pattern1 pattern2 + +exec wilson_flow 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_a 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_a 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_a 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_a 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_cf3 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_cf3 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_cf3 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_cf3 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_cf3_a 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_cf3_a 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_cf3_a 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_cf3_a 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_ck 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_ck 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_ck 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_ck 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_ck_a 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_ck_a 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_ck_a 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_ck_a 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_bbb 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_bbb 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_bbb 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_bbb 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_bbb_a 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_bbb_a 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_bbb_a 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_bbb_a 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk3 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk3 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk3 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk3 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk3_a 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk3_a 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk3_a 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk3_a 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk4 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk4 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk4 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk4 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk4_a 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk4_a 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk4_a 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk4_a 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk5 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk5 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk5 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk5 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk5_a 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk5_a 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk5_a 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk5_a 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk8 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk8 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk8 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk8 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk8_a 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk8_a 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk8_a 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_rkmk8_a 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_a 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_a 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_a 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_a 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_cf3 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_cf3 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_cf3 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_cf3 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_cf3_a 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_cf3_a 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_cf3_a 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_cf3_a 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_bs 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_bs 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_bs 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_bs 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_bs_a 1 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_bs_a 2 - wilson Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_bs_a 1 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' +exec wilson_flow_adpt_bs_a 2 - symanzik Restored RUNNING 'SELECT=GFLOW|ADAPT' diff --git a/wilson_flow/test/wilson_flow.symanzik.1.errtol b/wilson_flow/test/wilson_flow.symanzik.1.errtol new file mode 100644 index 000000000..4f3682170 --- /dev/null +++ b/wilson_flow/test/wilson_flow.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow.symanzik.1.sample-out b/wilson_flow/test/wilson_flow.symanzik.1.sample-out index 98431fc59..71dabb1a8 100644 --- a/wilson_flow/test/wilson_flow.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:09 2021 +start: Fri Oct 28 16:42:17 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 0.7 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.101463e-04 +Time to reload gauge configuration = 2.000332e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 2.670288e-04 +Time to check unitarity = 6.914139e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.854375 0.829395 2.37618 2.36268 1.8023 1.77541 0.0472255 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.0509329 0.0345465 2.99269 2.9895 2.97398 2.96222 0.000456401 GFLOW: 0.9375 0.0460398 0.0306385 2.99364 2.99065 2.97716 2.96611 0.000256605 GFLOW: 1 0.0419356 0.0274253 2.99441 2.9916 2.97974 2.96935 0.000106462 Number of steps = 16 -Time to complete flow = 3.218560e-01 seconds +Time to complete flow = 3.713319e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.265660e-01 seconds -exit: Tue Jan 5 19:00:10 2021 +Time = 3.722730e-01 seconds +exit: Fri Oct 28 16:42:17 2022 diff --git a/wilson_flow/test/wilson_flow.symanzik.2.errtol b/wilson_flow/test/wilson_flow.symanzik.2.errtol new file mode 100644 index 000000000..1d1252a22 --- /dev/null +++ b/wilson_flow/test/wilson_flow.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow.symanzik.2.sample-out b/wilson_flow/test/wilson_flow.symanzik.2.sample-out index 2f477baab..d36c1d305 100644 --- a/wilson_flow/test/wilson_flow.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:16 2021 +start: Fri Oct 28 16:42:17 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.2 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.860661e-04 +Time to reload gauge configuration = 2.150536e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.055956e-03 +Time to check unitarity = 2.739429e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.8543748488315552 0.8293947648705751 2.376179304698458 2.362677101758874 1.802304115569335 1.775411064068106 0.04722547316371967 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.0509329296473873 0.03454650834311609 2.992688534541917 2.98949555 GFLOW: 0.9375 0.04603982348521207 0.03063847099215955 2.993641647248294 2.990648540586426 2.977159335473908 2.966114645475173 0.0002566117660345612 GFLOW: 1 0.0419356489459576 0.02742531139858422 2.994408837275467 2.991597206925263 2.979741995823919 2.969346241070383 0.0001064621400328506 Number of steps = 16 -Time to complete flow = 3.676491e-01 seconds +Time to complete flow = 4.482050e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.742211e-01 seconds -exit: Tue Jan 5 19:01:17 2021 +Time = 4.496031e-01 seconds +exit: Fri Oct 28 16:42:18 2022 diff --git a/wilson_flow/test/wilson_flow.wilson.1.errtol b/wilson_flow/test/wilson_flow.wilson.1.errtol new file mode 100644 index 000000000..b12aa37bc --- /dev/null +++ b/wilson_flow/test/wilson_flow.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0004 0.0004 0.0003 0.0003 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow.wilson.1.sample-out b/wilson_flow/test/wilson_flow.wilson.1.sample-out index dd4b3aadb..b06d6b7c8 100644 --- a/wilson_flow/test/wilson_flow.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:10 2021 +start: Fri Oct 28 16:42:17 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 0.7 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.960796e-04 +Time to reload gauge configuration = 2.260208e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 2.679825e-04 +Time to check unitarity = 7.605553e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.905792 0.879676 2.21651 2.1972 1.61657 1.58347 0.0557441 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.061343 0.042695 2.99027 2.98659 2.96661 2.95314 0.00101776 GFLOW: 0.9375 0.0548423 0.0373368 2.99172 2.98826 2.9712 2.95856 0.000714273 GFLOW: 1 0.0494345 0.0329748 2.99285 2.98962 2.97487 2.963 0.000479992 Number of steps = 16 -Time to complete flow = 1.324608e-01 seconds +Time to complete flow = 1.357141e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.371360e-01 seconds -exit: Tue Jan 5 19:00:10 2021 +Time = 1.367521e-01 seconds +exit: Fri Oct 28 16:42:17 2022 diff --git a/wilson_flow/test/wilson_flow.wilson.2.errtol b/wilson_flow/test/wilson_flow.wilson.2.errtol new file mode 100644 index 000000000..7ea772603 --- /dev/null +++ b/wilson_flow/test/wilson_flow.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 4e-08 4e-08 3e-08 3e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow.wilson.2.sample-out b/wilson_flow/test/wilson_flow.wilson.2.sample-out index 1f3c76418..5e7adc97f 100644 --- a/wilson_flow/test/wilson_flow.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:17 2021 +start: Fri Oct 28 16:42:17 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.2 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.898808e-04 +Time to reload gauge configuration = 2.040863e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.055956e-03 +Time to check unitarity = 2.889633e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.9057920856915209 0.8796763820494508 2.216509410522774 2.197197056299902 1.616570355489586 1.58347344130154 0.05574407551897611 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.0613429742027722 0.04269504883572837 2.990272420817325 2.98658594 GFLOW: 0.9375 0.05484232116236083 0.0373367933048642 2.991715320551761 2.988261588306987 2.971196164946877 2.958558453908063 0.0007142723612204322 GFLOW: 1 0.04943445691703316 0.03297478460438698 2.992854278477389 2.989615598876857 2.974869836345496 2.962995615162936 0.0004799888742834227 Number of steps = 16 -Time to complete flow = 1.491899e-01 seconds +Time to complete flow = 1.599121e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.557589e-01 seconds -exit: Tue Jan 5 19:01:17 2021 +Time = 1.612830e-01 seconds +exit: Fri Oct 28 16:42:17 2022 diff --git a/wilson_flow/test/wilson_flow_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_a.symanzik.1.errtol new file mode 100644 index 000000000..d97f3e6b8 --- /dev/null +++ b/wilson_flow/test/wilson_flow_a.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_a.symanzik.1.sample-out index 50852d233..85abc01b2 100644 --- a/wilson_flow/test/wilson_flow_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_a.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 17:48:30 2022 +start: Fri Oct 28 16:42:18 2022 Options selected... Generic single precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.001328e-04 +Time to reload gauge configuration = 1.997948e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 2.617836e-04 +Time to check unitarity = 6.914139e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.688143 0.693495 2.48792 2.65889 2.01025 2.19915 -0.00155342 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0235969 0.0311476 2.4638 2.45261 2.93988 2.9421 0.00119829 GFLOW: 0.9375 0.022608 0.0302365 2.45618 2.44535 2.93955 2.94001 0.000196934 GFLOW: 1 0.0220552 0.0297286 2.4473 2.44495 2.93867 2.93825 -0.000625787 Number of steps = 16 -Time to complete flow = 3.700421e-01 seconds +Time to complete flow = 3.709729e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.736341e-01 seconds -exit: Wed Oct 26 17:48:31 2022 +Time = 3.719139e-01 seconds +exit: Fri Oct 28 16:42:18 2022 diff --git a/wilson_flow/test/wilson_flow_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_a.symanzik.2.errtol new file mode 100644 index 000000000..f687f7888 --- /dev/null +++ b/wilson_flow/test/wilson_flow_a.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_a.symanzik.2.sample-out index 548b10080..45e660d71 100644 --- a/wilson_flow/test/wilson_flow_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_a.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 17:48:42 2022 +start: Fri Oct 28 16:42:18 2022 Options selected... Generic double precision @@ -33,7 +33,7 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.070469e-04 +Time to reload gauge configuration = 2.129078e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.02359694336950003 0.0311475664709202 2.463798899585927 2.45260511 GFLOW: 0.9375 0.02260801072881476 0.03023649624969676 2.456176237754999 2.445352222306607 2.939548804307395 2.940013560349347 0.0001969349289674609 GFLOW: 1 0.02205524213839188 0.02972861893377215 2.447300220463655 2.444952047043663 2.938672530681634 2.938251988441712 -0.0006257815885930972 Number of steps = 16 -Time to complete flow = 4.336300e-01 seconds +Time to complete flow = 4.487481e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.379818e-01 seconds -exit: Wed Oct 26 17:48:42 2022 +Time = 4.500990e-01 seconds +exit: Fri Oct 28 16:42:19 2022 diff --git a/wilson_flow/test/wilson_flow_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_a.wilson.1.errtol new file mode 100644 index 000000000..63a791fb2 --- /dev/null +++ b/wilson_flow/test/wilson_flow_a.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_a.wilson.1.sample-out index 27504528a..466ca9553 100644 --- a/wilson_flow/test/wilson_flow_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_a.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 17:42:08 2022 +start: Fri Oct 28 16:42:18 2022 Options selected... Generic single precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.469654e-04 +Time to reload gauge configuration = 2.069473e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 2.610683e-04 +Time to check unitarity = 6.914139e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.771612 0.764046 2.34805 2.51098 1.82512 1.98514 0.00915371 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0262407 0.0296223 2.99299 2.99463 2.97637 2.98057 0.00123202 GFLOW: 0.9375 0.0231928 0.02558 2.9941 2.99532 2.97987 2.98295 0.000974731 GFLOW: 1 0.0206429 0.0222619 2.99499 2.99588 2.98269 2.98492 0.000763828 Number of steps = 16 -Time to complete flow = 1.332152e-01 seconds +Time to complete flow = 1.341209e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.367610e-01 seconds -exit: Wed Oct 26 17:42:08 2022 +Time = 1.350551e-01 seconds +exit: Fri Oct 28 16:42:18 2022 diff --git a/wilson_flow/test/wilson_flow_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_a.wilson.2.errtol new file mode 100644 index 000000000..8e6cbfe2d --- /dev/null +++ b/wilson_flow/test/wilson_flow_a.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_a.wilson.2.sample-out index b64dacdab..d291c1b50 100644 --- a/wilson_flow/test/wilson_flow_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_a.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 17:44:53 2022 +start: Fri Oct 28 16:42:18 2022 Options selected... Generic double precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.500648e-04 +Time to reload gauge configuration = 2.090931e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.770424e-04 +Time to check unitarity = 2.739429e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.7716121155403498 0.764046359764188 2.348047981504413 2.510977839760153 1.825117821572047 1.985142786629284 0.009153697879548001 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.02624073755366365 0.02962228776361844 2.992991040776793 2.9946318 GFLOW: 0.9375 0.02319280685505681 0.02557999181631904 2.994103885417432 2.995317888726593 2.979866794178076 2.982946883616409 0.0009747348219404205 GFLOW: 1 0.02064290122224121 0.02226186919907126 2.994990449654293 2.9958819549761 2.982694113388896 2.984915276270505 0.0007638305711427885 Number of steps = 16 -Time to complete flow = 1.574640e-01 seconds +Time to complete flow = 1.598301e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.615810e-01 seconds -exit: Wed Oct 26 17:44:53 2022 +Time = 1.611950e-01 seconds +exit: Fri Oct 28 16:42:18 2022 diff --git a/wilson_flow/test/wilson_flow_adpt.symanzik.1.errtol b/wilson_flow/test/wilson_flow_adpt.symanzik.1.errtol new file mode 100644 index 000000000..d8f0dd045 --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt.symanzik.1.errtol @@ -0,0 +1,22 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +ADAPT: 0 0.0002 0 0 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0006 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0006 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0005 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0 0.0002 0.0002 0.01 diff --git a/wilson_flow/test/wilson_flow_adpt.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt.symanzik.1.sample-out index c267de8d4..f3325c076 100644 --- a/wilson_flow/test/wilson_flow_adpt.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:01 2021 +start: Fri Oct 28 19:00:36 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.0 MBytes per node for lattice Made lattice @@ -34,13 +33,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.709461e-04 +Time to reload gauge configuration = 2.000332e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 5.602837e-05 +Time to check unitarity = 6.890297e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.854375 0.829395 2.37618 2.36268 1.8023 1.77541 0.0472255 @@ -65,11 +64,11 @@ GFLOW: 1 0.0419416 0.0274348 2.99427 2.99151 2.97973 2.96934 0.000107674 ADAPT: 1 0.0296079 0.000153453 65.1664 Number of steps = 10 Number of rejected steps = 2 -Time to complete flow = 2.402999e-01 seconds +Time to complete flow = 2.999711e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.414088e-01 seconds -exit: Tue Jan 5 19:00:01 2021 +Time = 3.010030e-01 seconds +exit: Fri Oct 28 19:00:37 2022 diff --git a/wilson_flow/test/wilson_flow_adpt.symanzik.2.errtol b/wilson_flow/test/wilson_flow_adpt.symanzik.2.errtol new file mode 100644 index 000000000..fb8ec0f3a --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt.symanzik.2.errtol @@ -0,0 +1,22 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +ADAPT: 0 2e-08 0 0 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 6e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 6e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 5e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 0 2e-08 2e-08 1e-06 diff --git a/wilson_flow/test/wilson_flow_adpt.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt.symanzik.2.sample-out index 6d88191f1..4c3313e6d 100644 --- a/wilson_flow/test/wilson_flow_adpt.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:08 2021 +start: Fri Oct 28 19:00:37 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 2.0 MBytes per node for lattice Made lattice @@ -34,13 +33,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.320808e-04 +Time to reload gauge configuration = 2.069473e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.060009e-03 +Time to check unitarity = 2.760887e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.8543748488315552 0.8293947648705751 2.376179304698458 2.362677101758874 1.802304115569335 1.775411064068106 0.04722547316371967 @@ -65,11 +64,11 @@ GFLOW: 1 0.04194154668274509 0.0274348058969209 2.99427469462497 2.9915084113182 ADAPT: 1 0.0296103340646392 0.00015349341050008 65.14937655903336 Number of steps = 10 Number of rejected steps = 2 -Time to complete flow = 2.866352e-01 seconds +Time to complete flow = 3.315239e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.942119e-01 seconds -exit: Tue Jan 5 19:01:08 2021 +Time = 3.331139e-01 seconds +exit: Fri Oct 28 19:00:37 2022 diff --git a/wilson_flow/test/wilson_flow_adpt.wilson.1.errtol b/wilson_flow/test/wilson_flow_adpt.wilson.1.errtol new file mode 100644 index 000000000..1dcb153ac --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt.wilson.1.errtol @@ -0,0 +1,16 @@ +XXX XXX XXX XXX XXX +XXX 0 2 2 3 3 2 2 0.2 +XXX 0 2 0 0 +XXX 0.0002 2 2 1e+01 4 3 3 0.1 +XXX 0.3 0.9 1 1e+01 +XXX 0.0002 0.8 1 3 5 5 5 0.04 +XXX 0.2 0.4 0.5 4 +XXX 0.0002 0.4 0.5 1 6 5 5 0.02 +XXX 0.3 0.1 0.3 2 +XXX 0.0002 0.04 0.3 2 6 6 6 0.01 +XXX 0.4 0.1 0.1 2 +XXX 0.0002 0.2 0.1 0.9 6 6 6 0.006 +XXX 0.5 0.2 0.08 0.9 +XXX 0.0002 0.3 0.08 1 6 6 6 0.002 +XXX 0.2 0.4 0.06 1 +XXX 0 0.1 0.07 8e+01 6 6 6 0.001 diff --git a/wilson_flow/test/wilson_flow_adpt.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt.wilson.1.sample-out index 9322ef97b..2511baea2 100644 --- a/wilson_flow/test/wilson_flow_adpt.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:01 2021 +start: Fri Oct 28 19:00:36 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.0 MBytes per node for lattice Made lattice @@ -34,13 +33,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.998943e-04 +Time to reload gauge configuration = 2.059937e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 2.691746e-04 +Time to check unitarity = 7.009506e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.905792 0.879676 2.21651 2.1972 1.61657 1.58347 0.0557441 @@ -59,11 +58,11 @@ GFLOW: 1 0.0493726 0.032906 2.99289 2.98965 2.97495 2.96307 0.000482842 ADAPT: 1 0.121814 0.000226299 44.1893 Number of steps = 7 Number of rejected steps = 0 -Time to complete flow = 8.409286e-02 seconds +Time to complete flow = 7.253003e-02 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 8.938813e-02 seconds -exit: Tue Jan 5 19:00:01 2021 +Time = 7.357502e-02 seconds +exit: Fri Oct 28 19:00:36 2022 diff --git a/wilson_flow/test/wilson_flow_adpt.wilson.2.errtol b/wilson_flow/test/wilson_flow_adpt.wilson.2.errtol new file mode 100644 index 000000000..9c669c83a --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt.wilson.2.errtol @@ -0,0 +1,16 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +ADAPT: 0 2e-08 0 0 +GFLOW: 2e-08 2e-08 2e-08 4e-08 4e-08 3e-08 3e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-07 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 5e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 7e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 0 2e-08 2e-08 9e-07 diff --git a/wilson_flow/test/wilson_flow_adpt.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt.wilson.2.sample-out index 3dfc1b530..5af647469 100644 --- a/wilson_flow/test/wilson_flow_adpt.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:08 2021 +start: Fri Oct 28 19:00:36 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 2.0 MBytes per node for lattice Made lattice @@ -34,13 +33,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.989407e-04 +Time to reload gauge configuration = 2.048016e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.181530e-04 +Time to check unitarity = 2.789497e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.9057920856915209 0.8796763820494508 2.216509410522774 2.197197056299902 1.616570355489586 1.58347344130154 0.05574407551897611 @@ -59,11 +58,11 @@ GFLOW: 1 0.04937260171838897 0.03290598594763042 2.992888213650807 2.98964729108 ADAPT: 1 0.1218129056625 0.0002262791389213261 44.1932033490584 Number of steps = 7 Number of rejected steps = 0 -Time to complete flow = 5.868578e-02 seconds +Time to complete flow = 7.608509e-02 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 6.438303e-02 seconds -exit: Tue Jan 5 19:01:08 2021 +Time = 7.764721e-02 seconds +exit: Fri Oct 28 19:00:36 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.errtol new file mode 100644 index 000000000..056301c39 --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.errtol @@ -0,0 +1,36 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +ADAPT: 0 0.0002 0 0 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0003 0.0004 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0005 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0007 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0005 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0 0.0002 0.0002 0.0004 diff --git a/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.sample-out index 01c649791..159b71b62 100644 --- a/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 16:07:18 2022 +start: Fri Oct 28 19:00:37 2022 Options selected... Generic single precision @@ -34,13 +34,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.079010e-04 +Time to reload gauge configuration = 1.881123e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 7.009506e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 ADAPT: 0 0.0625 0 0 GFLOW: 0.0359955 0.869392 0.836963 2.27108 2.42501 1.69594 1.82862 0.0227316 @@ -79,11 +79,11 @@ GFLOW: 1 0.0182775 0.0188039 2.9953 2.99589 2.98589 2.98685 0.000502461 ADAPT: 1 0.0494025 0.0056356 1.77443 Number of steps = 17 Number of rejected steps = 3 -Time to complete flow = 5.060451e-01 seconds +Time to complete flow = 4.978511e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.070961e-01 seconds -exit: Thu Oct 27 16:07:18 2022 +Time = 4.988551e-01 seconds +exit: Fri Oct 28 19:00:38 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.errtol new file mode 100644 index 000000000..57d696288 --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.errtol @@ -0,0 +1,36 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +ADAPT: 0 2e-08 0 0 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 3e-08 4e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 5e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 7e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 5e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 0 2e-08 2e-08 4e-08 diff --git a/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.sample-out index 59f6bc3a6..34f0106ad 100644 --- a/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 16:07:18 2022 +start: Fri Oct 28 19:00:38 2022 Options selected... Generic double precision @@ -34,13 +34,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.090931e-04 +Time to reload gauge configuration = 2.131462e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.808571e-04 +Time to check unitarity = 2.791882e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 ADAPT: 0 0.0625 0 0 GFLOW: 0.03599546846841682 0.8693921629065754 0.8369631263535411 2.271076952321912 2.425012888161282 1.695937200650389 1.828622014599843 0.0227316020814034 @@ -79,11 +79,11 @@ GFLOW: 1 0.01827746029273741 0.01880386248156381 2.995297647211201 2.99588990882 ADAPT: 1 0.04939947724125571 0.005635982002035225 1.77431368595373 Number of steps = 17 Number of rejected steps = 3 -Time to complete flow = 5.706580e-01 seconds +Time to complete flow = 5.511510e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.722380e-01 seconds -exit: Thu Oct 27 16:07:19 2022 +Time = 5.526919e-01 seconds +exit: Fri Oct 28 19:00:38 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_adpt_a.wilson.1.errtol new file mode 100644 index 000000000..9b19c25bb --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_a.wilson.1.errtol @@ -0,0 +1,22 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +ADAPT: 0 0.0002 0 0 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0004 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0005 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0007 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0006 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0006 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0 0.0002 0.0002 0.0004 diff --git a/wilson_flow/test/wilson_flow_adpt_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_a.wilson.1.sample-out index 4942121fc..ab7f2a97d 100644 --- a/wilson_flow/test/wilson_flow_adpt_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_a.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 16:07:17 2022 +start: Fri Oct 28 19:00:37 2022 Options selected... Generic single precision @@ -34,13 +34,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.250671e-04 +Time to reload gauge configuration = 1.969337e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.890297e-05 +Time to check unitarity = 6.914139e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 ADAPT: 0 0.0625 0 0 GFLOW: 0.0571049 0.800714 0.787511 2.31039 2.46834 1.77238 1.92182 0.0138191 @@ -65,11 +65,11 @@ GFLOW: 1 0.0206362 0.0222634 2.99469 2.99563 2.98265 2.9849 0.000764279 ADAPT: 1 0.0855431 0.00527397 1.8961 Number of steps = 10 Number of rejected steps = 3 -Time to complete flow = 1.202490e-01 seconds +Time to complete flow = 1.178849e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.213200e-01 seconds -exit: Thu Oct 27 16:07:17 2022 +Time = 1.189060e-01 seconds +exit: Fri Oct 28 19:00:37 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_adpt_a.wilson.2.errtol new file mode 100644 index 000000000..1b0186a08 --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_a.wilson.2.errtol @@ -0,0 +1,22 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +ADAPT: 0 2e-08 0 0 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 4e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 5e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 7e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 6e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 6e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 0 2e-08 2e-08 4e-08 diff --git a/wilson_flow/test/wilson_flow_adpt_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_a.wilson.2.sample-out index cc6a56880..4bbfaf453 100644 --- a/wilson_flow/test/wilson_flow_adpt_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_a.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 16:07:17 2022 +start: Fri Oct 28 19:00:37 2022 Options selected... Generic double precision @@ -34,13 +34,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.100468e-04 +Time to reload gauge configuration = 2.098083e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.908707e-04 +Time to check unitarity = 2.751350e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 ADAPT: 0 0.0625 0 0 GFLOW: 0.05710494765115298 0.8007141141671855 0.7875110119468766 2.310394358604133 2.468341842034199 1.772384782568168 1.921820807049433 0.01381909135754463 @@ -65,11 +65,11 @@ GFLOW: 1 0.02063617728955537 0.02226340655817641 2.994685815413246 2.99562820169 ADAPT: 1 0.08554396862824776 0.00527385068403723 1.896147729450849 Number of steps = 10 Number of rejected steps = 3 -Time to complete flow = 1.353381e-01 seconds +Time to complete flow = 1.292069e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.369169e-01 seconds -exit: Thu Oct 27 16:07:18 2022 +Time = 1.307490e-01 seconds +exit: Fri Oct 28 19:00:37 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.errtol b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.errtol new file mode 100644 index 000000000..6e1cdc0d8 --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.errtol @@ -0,0 +1,22 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +ADAPT: 0 0.0002 0 0 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0 0.0002 0.0002 0.004 diff --git a/wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.sample-out index 327f3f02f..b1c4d2ccf 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:00 2021 +start: Fri Oct 28 19:17:56 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.1 MBytes per node for lattice Made lattice @@ -34,13 +33,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.051395e-04 +Time to reload gauge configuration = 1.969337e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 2.679825e-04 +Time to check unitarity = 6.818771e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.854382 0.829414 2.37915 2.36573 1.80473 1.77801 0.0474035 @@ -65,11 +64,11 @@ GFLOW: 1 0.0431623 0.0296096 2.99359 2.99109 2.97809 2.96837 0.000100566 ADAPT: 1 0.0573351 0.000518214 19.2971 Number of steps = 10 Number of rejected steps = 5 -Time to complete flow = 3.338871e-01 seconds +Time to complete flow = 3.858030e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.392401e-01 seconds -exit: Tue Jan 5 19:00:00 2021 +Time = 3.868611e-01 seconds +exit: Fri Oct 28 19:17:56 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.errtol b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.errtol new file mode 100644 index 000000000..88abc9197 --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.errtol @@ -0,0 +1,22 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +ADAPT: 0 2e-08 0 0 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-07 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 0 2e-08 2e-08 4e-07 diff --git a/wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.sample-out index 8c44c6e33..aa2abe07c 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:06 2021 +start: Fri Oct 28 19:17:56 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 2.2 MBytes per node for lattice Made lattice @@ -34,13 +33,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 9.739399e-04 +Time to reload gauge configuration = 2.379417e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.062870e-03 +Time to check unitarity = 2.779961e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.8543821081090931 0.8294143032164626 2.379153297732387 2.365728299275925 1.804732423553656 1.778009568228787 0.04740354964843416 @@ -65,11 +64,11 @@ GFLOW: 1 0.04316226745587198 0.02960955443443196 2.993589530629894 2.99108667826 ADAPT: 1 0.05733513939468937 0.0005182155946722611 19.29698778425295 Number of steps = 10 Number of rejected steps = 5 -Time to complete flow = 3.536539e-01 seconds +Time to complete flow = 4.305630e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.614480e-01 seconds -exit: Tue Jan 5 19:01:07 2021 +Time = 4.321828e-01 seconds +exit: Fri Oct 28 19:17:57 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs.wilson.1.errtol b/wilson_flow/test/wilson_flow_adpt_bs.wilson.1.errtol new file mode 100644 index 000000000..19b04dbdb --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_bs.wilson.1.errtol @@ -0,0 +1,14 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +ADAPT: 0 0.0002 0 0 +GFLOW: 0.0002 0.0002 0.0002 0.0004 0.0004 0.0003 0.0003 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.007 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0 0.0002 0.0002 0.0002 diff --git a/wilson_flow/test/wilson_flow_adpt_bs.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_bs.wilson.1.sample-out index b5737505c..e0f230fca 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:00 2021 +start: Fri Oct 28 19:17:56 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.1 MBytes per node for lattice Made lattice @@ -34,13 +33,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.730919e-04 +Time to reload gauge configuration = 2.100468e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 9.012222e-05 +Time to check unitarity = 7.009506e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.905813 0.879699 2.21718 2.19787 1.61709 1.58402 0.0557593 @@ -57,11 +56,11 @@ GFLOW: 1 0.0494375 0.0331527 2.91175 2.93562 2.96599 2.95378 0.00081349 ADAPT: 1 0.183572 0.0107831 0.927381 Number of steps = 6 Number of rejected steps = 2 -Time to complete flow = 6.551790e-02 seconds +Time to complete flow = 7.831693e-02 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 6.672192e-02 seconds -exit: Tue Jan 5 19:00:00 2021 +Time = 7.939696e-02 seconds +exit: Fri Oct 28 19:17:56 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs.wilson.2.errtol b/wilson_flow/test/wilson_flow_adpt_bs.wilson.2.errtol new file mode 100644 index 000000000..9642378ee --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_bs.wilson.2.errtol @@ -0,0 +1,14 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +ADAPT: 0 2e-08 0 0 +GFLOW: 2e-08 2e-08 2e-08 4e-08 4e-08 3e-08 3e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 7e-07 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 0 2e-08 2e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_adpt_bs.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_bs.wilson.2.sample-out index 175b50a33..6868d74f3 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:07 2021 +start: Fri Oct 28 19:17:56 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 2.2 MBytes per node for lattice Made lattice @@ -34,13 +33,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 9.121895e-04 +Time to reload gauge configuration = 2.410412e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.063108e-03 +Time to check unitarity = 2.760887e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.9058132281572296 0.8796992037234977 2.217180550948812 2.197869838719706 1.617090518681119 1.58401604382473 0.05575934074905174 @@ -57,11 +56,11 @@ GFLOW: 1 0.04943750065083356 0.03315273085490399 2.911750219454325 2.93562456297 ADAPT: 1 0.183572135865139 0.01078307604393198 0.9273791596440941 Number of steps = 6 Number of rejected steps = 2 -Time to complete flow = 9.064603e-02 seconds +Time to complete flow = 8.491206e-02 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 9.840178e-02 seconds -exit: Tue Jan 5 19:01:07 2021 +Time = 8.656812e-02 seconds +exit: Fri Oct 28 19:17:56 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.errtol new file mode 100644 index 000000000..a5656b36c --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.errtol @@ -0,0 +1,38 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +ADAPT: 0 0.0002 0 0 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0005 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0 0.0002 0.0002 0.4 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.sample-out index 270e2711f..93953a743 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 16:22:36 2022 +start: Fri Oct 28 19:17:57 2022 Options selected... Generic single precision @@ -34,13 +34,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.000332e-04 +Time to reload gauge configuration = 2.088547e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.794930e-05 +Time to check unitarity = 7.200241e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.683596 0.689287 2.49362 2.66867 2.01982 2.21584 -0.000286496 @@ -81,11 +81,11 @@ GFLOW: 1 0.0194985 0.021177 2.96389 2.97427 2.98282 2.98517 0.000668589 ADAPT: 1 0.00634208 5.51399e-06 1813.57 Number of steps = 18 Number of rejected steps = 5 -Time to complete flow = 5.880110e-01 seconds +Time to complete flow = 6.002800e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.890689e-01 seconds -exit: Thu Oct 27 16:22:37 2022 +Time = 6.013589e-01 seconds +exit: Fri Oct 28 19:17:57 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.errtol new file mode 100644 index 000000000..f230abd08 --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.errtol @@ -0,0 +1,38 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +ADAPT: 0 2e-08 0 0 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 5e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 0 2e-08 2e-08 4e-05 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.sample-out index 6e433afc8..5ef78a0ad 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 16:22:37 2022 +start: Fri Oct 28 19:17:57 2022 Options selected... Generic double precision @@ -34,13 +34,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.429485e-04 +Time to reload gauge configuration = 2.360344e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.739429e-04 +Time to check unitarity = 2.801418e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.6835964225873505 0.689286618530199 2.493615815143509 2.66866524114337 2.019823710776547 2.215838902238242 -0.0002864649851840247 @@ -81,11 +81,11 @@ GFLOW: 1 0.01949847319940713 0.02117697291567539 2.963892902859471 2.97426845384 ADAPT: 1 0.006342111118304405 5.51603099757058e-06 1812.89771656546 Number of steps = 18 Number of rejected steps = 5 -Time to complete flow = 6.432030e-01 seconds +Time to complete flow = 6.621070e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 6.448529e-01 seconds -exit: Thu Oct 27 16:22:37 2022 +Time = 6.637039e-01 seconds +exit: Fri Oct 28 19:17:58 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.errtol new file mode 100644 index 000000000..10a4b079b --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.errtol @@ -0,0 +1,24 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +ADAPT: 0 0.0002 0 0 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0008 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0005 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0 0.0002 0.0002 0.07 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.sample-out index de6160114..6ad6c9186 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 16:22:36 2022 +start: Fri Oct 28 19:17:57 2022 Options selected... Generic single precision @@ -40,7 +40,7 @@ CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 Time to check unitarity = 6.985664e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.771013 0.762609 2.35235 2.51803 1.83004 1.99213 0.00916212 @@ -67,11 +67,11 @@ GFLOW: 1 0.0207483 0.0226218 2.98427 2.9889 2.98128 2.9842 0.000862002 ADAPT: 1 0.0245933 3.00327e-05 332.97 Number of steps = 11 Number of rejected steps = 5 -Time to complete flow = 1.468699e-01 seconds +Time to complete flow = 1.486459e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.479390e-01 seconds -exit: Thu Oct 27 16:22:36 2022 +Time = 1.497309e-01 seconds +exit: Fri Oct 28 19:17:57 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.errtol new file mode 100644 index 000000000..9bd036e38 --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.errtol @@ -0,0 +1,24 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +ADAPT: 0 2e-08 0 0 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 8e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 5e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 0 2e-08 2e-08 7e-06 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.sample-out index 57f0c9153..a17bb324a 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 16:22:36 2022 +start: Fri Oct 28 19:17:57 2022 Options selected... Generic double precision @@ -34,13 +34,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.291203e-04 +Time to reload gauge configuration = 2.229214e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.751350e-04 +Time to check unitarity = 2.789497e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.7710131731574482 0.7626088229355815 2.352352162560256 2.518030482716568 1.830041058060231 1.992134797207159 0.009162119049090731 @@ -67,11 +67,11 @@ GFLOW: 1 0.02074832903081137 0.02262180107017475 2.984266224406261 2.98889941547 ADAPT: 1 0.02459329482684502 3.003565354947315e-05 332.93765303054 Number of steps = 11 Number of rejected steps = 5 -Time to complete flow = 1.581190e-01 seconds +Time to complete flow = 1.638639e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.597080e-01 seconds -exit: Thu Oct 27 16:22:36 2022 +Time = 1.654320e-01 seconds +exit: Fri Oct 28 19:17:57 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.errtol b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.errtol new file mode 100644 index 000000000..d8f0dd045 --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.errtol @@ -0,0 +1,22 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +ADAPT: 0 0.0002 0 0 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0006 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0006 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0005 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0 0.0002 0.0002 0.01 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.sample-out index f75fff566..61d5f1c37 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Thu Jan 7 00:11:16 2021 +start: Fri Oct 28 19:10:26 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.0 MBytes per node for lattice Made lattice @@ -34,13 +33,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.882118e-04 +Time to reload gauge configuration = 1.959801e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 2.920628e-04 +Time to check unitarity = 6.890297e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.854375 0.829395 2.37618 2.36268 1.8023 1.77541 0.0472255 @@ -65,11 +64,11 @@ GFLOW: 1 0.0419416 0.0274348 2.99427 2.99151 2.97973 2.96934 0.000107674 ADAPT: 1 0.0296079 0.000153453 65.1664 Number of steps = 10 Number of rejected steps = 2 -Time to complete flow = 2.707369e-01 seconds +Time to complete flow = 2.972472e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.759831e-01 seconds -exit: Thu Jan 7 00:11:16 2021 +Time = 2.982430e-01 seconds +exit: Fri Oct 28 19:10:26 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.errtol b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.errtol new file mode 100644 index 000000000..fb8ec0f3a --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.errtol @@ -0,0 +1,22 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +ADAPT: 0 2e-08 0 0 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 6e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 6e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 5e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 0 2e-08 2e-08 1e-06 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.sample-out index 3eebaa85b..3aa417d92 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Thu Jan 7 00:08:02 2021 +start: Fri Oct 28 19:10:26 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 2.0 MBytes per node for lattice Made lattice @@ -34,13 +33,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.769066e-04 +Time to reload gauge configuration = 2.059937e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.181530e-04 +Time to check unitarity = 2.810955e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.8543748488315552 0.8293947648705751 2.376179304698458 2.362677101758874 1.802304115569335 1.775411064068106 0.04722547316371967 @@ -65,11 +64,11 @@ GFLOW: 1 0.04194154668274509 0.0274348058969209 2.99427469462497 2.9915084113182 ADAPT: 1 0.0296103340646392 0.00015349341050008 65.14937655903336 Number of steps = 10 Number of rejected steps = 2 -Time to complete flow = 2.609689e-01 seconds +Time to complete flow = 3.421700e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.625742e-01 seconds -exit: Thu Jan 7 00:08:03 2021 +Time = 3.437469e-01 seconds +exit: Fri Oct 28 19:10:26 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.errtol b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.errtol new file mode 100644 index 000000000..218cbd685 --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.errtol @@ -0,0 +1,16 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +ADAPT: 0 0.0002 0 0 +GFLOW: 0.0002 0.0002 0.0002 0.0004 0.0004 0.0003 0.0003 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0005 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0007 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0 0.0002 0.0002 0.009 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.sample-out index aec599a0a..a949f477a 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Thu Jan 7 00:11:59 2021 +start: Fri Oct 28 19:10:25 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.0 MBytes per node for lattice Made lattice @@ -34,13 +33,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.819134e-04 +Time to reload gauge configuration = 2.100468e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 5.483627e-05 +Time to check unitarity = 7.104874e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.905792 0.879676 2.21651 2.1972 1.61657 1.58347 0.0557441 @@ -59,11 +58,11 @@ GFLOW: 1 0.0493726 0.032906 2.99289 2.98965 2.97495 2.96307 0.000482842 ADAPT: 1 0.121814 0.000226299 44.1893 Number of steps = 7 Number of rejected steps = 0 -Time to complete flow = 5.912995e-02 seconds +Time to complete flow = 7.096505e-02 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 6.026602e-02 seconds -exit: Thu Jan 7 00:11:59 2021 +Time = 7.203698e-02 seconds +exit: Fri Oct 28 19:10:25 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.errtol b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.errtol new file mode 100644 index 000000000..9c669c83a --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.errtol @@ -0,0 +1,16 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +ADAPT: 0 2e-08 0 0 +GFLOW: 2e-08 2e-08 2e-08 4e-08 4e-08 3e-08 3e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-07 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 5e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 7e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 0 2e-08 2e-08 9e-07 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.sample-out index 4c45b1c5d..b48f9091e 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Thu Jan 7 00:08:33 2021 +start: Fri Oct 28 19:10:25 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 2.0 MBytes per node for lattice Made lattice @@ -34,13 +33,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.111000e-04 +Time to reload gauge configuration = 2.038479e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.062870e-03 +Time to check unitarity = 2.791882e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 ADAPT: 0 0.0625 0 0 GFLOW: 0.0625 0.9057920856915209 0.8796763820494508 2.216509410522774 2.197197056299902 1.616570355489586 1.58347344130154 0.05574407551897611 @@ -59,11 +58,11 @@ GFLOW: 1 0.04937260171838897 0.03290598594763042 2.992888213650807 2.98964729108 ADAPT: 1 0.1218129056625 0.0002262791389213261 44.1932033490584 Number of steps = 7 Number of rejected steps = 0 -Time to complete flow = 8.574486e-02 seconds +Time to complete flow = 7.628584e-02 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 9.325886e-02 seconds -exit: Thu Jan 7 00:08:33 2021 +Time = 7.787681e-02 seconds +exit: Fri Oct 28 19:10:26 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.errtol new file mode 100644 index 000000000..056301c39 --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.errtol @@ -0,0 +1,36 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +ADAPT: 0 0.0002 0 0 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0003 0.0004 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0005 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0007 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0005 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0 0.0002 0.0002 0.0004 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.sample-out index a0c7c2b09..d17e9238e 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 16:14:28 2022 +start: Fri Oct 28 19:10:26 2022 Options selected... Generic single precision @@ -34,13 +34,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.100468e-04 +Time to reload gauge configuration = 2.059937e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 7.009506e-05 +Time to check unitarity = 6.890297e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 ADAPT: 0 0.0625 0 0 GFLOW: 0.0359955 0.869392 0.836963 2.27108 2.42501 1.69594 1.82862 0.0227316 @@ -79,11 +79,11 @@ GFLOW: 1 0.0182775 0.0188039 2.9953 2.99589 2.98589 2.98685 0.000502461 ADAPT: 1 0.0494025 0.0056356 1.77443 Number of steps = 17 Number of rejected steps = 3 -Time to complete flow = 5.188799e-01 seconds +Time to complete flow = 5.096719e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.199368e-01 seconds -exit: Thu Oct 27 16:14:29 2022 +Time = 5.107181e-01 seconds +exit: Fri Oct 28 19:10:27 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.errtol new file mode 100644 index 000000000..57d696288 --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.errtol @@ -0,0 +1,36 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +ADAPT: 0 2e-08 0 0 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 3e-08 4e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 5e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 7e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 5e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 0 2e-08 2e-08 4e-08 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.sample-out index a49a3d711..19adfa986 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 16:14:29 2022 +start: Fri Oct 28 19:10:27 2022 Options selected... Generic double precision @@ -34,13 +34,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.157688e-04 +Time to reload gauge configuration = 2.179146e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 Time to check unitarity = 2.770424e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 ADAPT: 0 0.0625 0 0 GFLOW: 0.03599546846841682 0.8693921629065754 0.8369631263535411 2.271076952321912 2.425012888161282 1.695937200650389 1.828622014599843 0.0227316020814034 @@ -79,11 +79,11 @@ GFLOW: 1 0.01827746029273741 0.01880386248156381 2.995297647211201 2.99588990882 ADAPT: 1 0.04939947724125571 0.005635982002035225 1.77431368595373 Number of steps = 17 Number of rejected steps = 3 -Time to complete flow = 5.700831e-01 seconds +Time to complete flow = 5.676069e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.717061e-01 seconds -exit: Thu Oct 27 16:14:29 2022 +Time = 5.691988e-01 seconds +exit: Fri Oct 28 19:10:28 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.errtol new file mode 100644 index 000000000..9b19c25bb --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.errtol @@ -0,0 +1,22 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +ADAPT: 0 0.0002 0 0 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0004 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0003 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0005 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0007 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0006 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0006 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0 0.0002 0.0002 0.0004 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.sample-out index 559ba556d..2df3e9bbb 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 16:14:28 2022 +start: Fri Oct 28 19:10:26 2022 Options selected... Generic single precision @@ -34,13 +34,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.040863e-04 +Time to reload gauge configuration = 1.969337e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.818771e-05 +Time to check unitarity = 7.009506e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 ADAPT: 0 0.0625 0 0 GFLOW: 0.0571049 0.800714 0.787511 2.31039 2.46834 1.77238 1.92182 0.0138191 @@ -65,11 +65,11 @@ GFLOW: 1 0.0206362 0.0222634 2.99469 2.99563 2.98265 2.9849 0.000764279 ADAPT: 1 0.0855431 0.00527397 1.8961 Number of steps = 10 Number of rejected steps = 3 -Time to complete flow = 1.191759e-01 seconds +Time to complete flow = 1.203330e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.202171e-01 seconds -exit: Thu Oct 27 16:14:28 2022 +Time = 1.213620e-01 seconds +exit: Fri Oct 28 19:10:26 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.errtol new file mode 100644 index 000000000..1b0186a08 --- /dev/null +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.errtol @@ -0,0 +1,22 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +ADAPT: 0 2e-08 0 0 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 4e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 3e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 4e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 5e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 7e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 6e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 6e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 2e-08 2e-08 2e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +ADAPT: 0 2e-08 2e-08 4e-08 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.sample-out index 1e8f0ef64..d1e04e374 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 16:14:28 2022 +start: Fri Oct 28 19:10:26 2022 Options selected... Generic double precision @@ -34,13 +34,13 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.050400e-04 +Time to reload gauge configuration = 2.100468e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 Time to check unitarity = 2.799034e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -#ADAPT time stepsize distance local_tol/distance +#LABEL2 time stepsize distance local_tol/distance GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 ADAPT: 0 0.0625 0 0 GFLOW: 0.05710494765115298 0.8007141141671855 0.7875110119468766 2.310394358604133 2.468341842034199 1.772384782568168 1.921820807049433 0.01381909135754463 @@ -65,11 +65,11 @@ GFLOW: 1 0.02063617728955537 0.02226340655817641 2.994685815413246 2.99562820169 ADAPT: 1 0.08554396862824776 0.00527385068403723 1.896147729450849 Number of steps = 10 Number of rejected steps = 3 -Time to complete flow = 1.322830e-01 seconds +Time to complete flow = 1.293502e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.338181e-01 seconds -exit: Thu Oct 27 16:14:28 2022 +Time = 1.309221e-01 seconds +exit: Fri Oct 28 19:10:26 2022 diff --git a/wilson_flow/test/wilson_flow_bbb.symanzik.1.errtol b/wilson_flow/test/wilson_flow_bbb.symanzik.1.errtol new file mode 100644 index 000000000..4f3682170 --- /dev/null +++ b/wilson_flow/test/wilson_flow_bbb.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_bbb.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_bbb.symanzik.1.sample-out index fbbeae8b8..a6adfc71d 100644 --- a/wilson_flow/test/wilson_flow_bbb.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_bbb.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:02 2021 +start: Fri Oct 28 18:11:11 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 0.7 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.690388e-04 +Time to reload gauge configuration = 1.940727e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 5.483627e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.853779 0.828724 2.37564 2.36228 1.80287 1.77599 0.0467978 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.0509336 0.034547 2.99269 2.98949 2.97398 2.96222 0.000456387 GFLOW: 0.9375 0.0460404 0.0306387 2.99364 2.99065 2.97716 2.96611 0.000256592 GFLOW: 1 0.0419362 0.0274254 2.99441 2.9916 2.97974 2.96934 0.000106452 Number of steps = 16 -Time to complete flow = 5.497410e-01 seconds +Time to complete flow = 6.881561e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.507300e-01 seconds -exit: Tue Jan 5 19:00:02 2021 +Time = 6.890750e-01 seconds +exit: Fri Oct 28 18:11:12 2022 diff --git a/wilson_flow/test/wilson_flow_bbb.symanzik.2.errtol b/wilson_flow/test/wilson_flow_bbb.symanzik.2.errtol new file mode 100644 index 000000000..1d1252a22 --- /dev/null +++ b/wilson_flow/test/wilson_flow_bbb.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_bbb.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_bbb.symanzik.2.sample-out index d413ce256..23846fed3 100644 --- a/wilson_flow/test/wilson_flow_bbb.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_bbb.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:08 2021 +start: Fri Oct 28 18:11:12 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.2 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.790524e-04 +Time to reload gauge configuration = 2.160072e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.179146e-04 +Time to check unitarity = 2.720356e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.8537791928208965 0.8287240968808836 2.375643633023483 2.362284203906573 1.802873881578759 1.775991399513947 0.04679780936959217 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.05093361906063142 0.03454701239412665 2.992688069522625 2.9894951 GFLOW: 0.9375 0.04604041073010706 0.03063872534515245 2.993641360825576 2.99064824620643 2.977158733915813 2.966113910241789 0.000256590732256303 GFLOW: 1 0.04193618824726883 0.02742541248477937 2.994408659258282 2.991596987481982 2.979741640651542 2.969345652558458 0.0001064464610807303 Number of steps = 16 -Time to complete flow = 6.469951e-01 seconds +Time to complete flow = 8.138230e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 6.483922e-01 seconds -exit: Tue Jan 5 19:01:09 2021 +Time = 8.151941e-01 seconds +exit: Fri Oct 28 18:11:12 2022 diff --git a/wilson_flow/test/wilson_flow_bbb.wilson.1.errtol b/wilson_flow/test/wilson_flow_bbb.wilson.1.errtol new file mode 100644 index 000000000..b12aa37bc --- /dev/null +++ b/wilson_flow/test/wilson_flow_bbb.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0004 0.0004 0.0003 0.0003 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_bbb.wilson.1.sample-out b/wilson_flow/test/wilson_flow_bbb.wilson.1.sample-out index 6aa06b470..351d61492 100644 --- a/wilson_flow/test/wilson_flow_bbb.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_bbb.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:02 2021 +start: Fri Oct 28 18:11:10 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 0.7 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.810593e-04 +Time to reload gauge configuration = 2.000332e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 2.651215e-04 +Time to check unitarity = 6.890297e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.905712 0.879582 2.21652 2.19723 1.61673 1.58364 0.0556851 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.0613464 0.0426987 2.99027 2.98658 2.9666 2.95314 0.00101774 GFLOW: 0.9375 0.054845 0.0373395 2.99171 2.98826 2.97119 2.95855 0.000714281 GFLOW: 1 0.0494366 0.0329769 2.99285 2.98961 2.97487 2.96299 0.000480002 Number of steps = 16 -Time to complete flow = 1.742561e-01 seconds +Time to complete flow = 2.209580e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.789451e-01 seconds -exit: Tue Jan 5 19:00:02 2021 +Time = 2.218981e-01 seconds +exit: Fri Oct 28 18:11:11 2022 diff --git a/wilson_flow/test/wilson_flow_bbb.wilson.2.errtol b/wilson_flow/test/wilson_flow_bbb.wilson.2.errtol new file mode 100644 index 000000000..7ea772603 --- /dev/null +++ b/wilson_flow/test/wilson_flow_bbb.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 4e-08 4e-08 3e-08 3e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_bbb.wilson.2.sample-out b/wilson_flow/test/wilson_flow_bbb.wilson.2.sample-out index e32c2c53d..aee1834b9 100644 --- a/wilson_flow/test/wilson_flow_bbb.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_bbb.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:09 2021 +start: Fri Oct 28 18:11:11 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.2 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.580685e-04 +Time to reload gauge configuration = 2.150536e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.055002e-03 +Time to check unitarity = 2.758503e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.905711924174415 0.8795823886599846 2.216518730478592 2.197233362651558 1.616726756610125 1.583637066719202 0.05568514304979461 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.06134645016697105 0.0426986777399866 2.99027060701742 2.986584233 GFLOW: 0.9375 0.05484502628887294 0.03733954501336152 2.991714064983201 2.988260390791079 2.97119299631294 2.958555401455756 0.0007142713288834686 GFLOW: 1 0.04943660827674597 0.03297690098381909 2.992853388258293 2.989614736783057 2.974867507444884 2.962993323511122 0.0004799970003007463 Number of steps = 16 -Time to complete flow = 2.285290e-01 seconds +Time to complete flow = 2.641871e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.351310e-01 seconds -exit: Tue Jan 5 19:01:09 2021 +Time = 2.655661e-01 seconds +exit: Fri Oct 28 18:11:11 2022 diff --git a/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.errtol new file mode 100644 index 000000000..867204b69 --- /dev/null +++ b/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.sample-out index ae47ac40a..ad6c76a7b 100644 --- a/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 19:39:12 2022 +start: Fri Oct 28 18:11:13 2022 Options selected... Generic single precision @@ -33,7 +33,7 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.031326e-04 +Time to reload gauge configuration = 1.888275e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0229019 0.0244933 2.99466 2.99549 2.98126 2.98339 0.00087284 GFLOW: 0.9375 0.0203858 0.021359 2.99544 2.99603 2.98384 2.98529 0.000661748 GFLOW: 1 0.0182618 0.0187657 2.99607 2.99647 2.98594 2.98688 0.000497921 Number of steps = 16 -Time to complete flow = 6.886749e-01 seconds +Time to complete flow = 6.992242e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 6.895962e-01 seconds -exit: Wed Oct 26 19:39:13 2022 +Time = 7.001140e-01 seconds +exit: Fri Oct 28 18:11:14 2022 diff --git a/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.errtol new file mode 100644 index 000000000..efbf1dccc --- /dev/null +++ b/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.sample-out index 90dcc4535..0384cda7b 100644 --- a/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 19:39:13 2022 +start: Fri Oct 28 18:11:14 2022 Options selected... Generic double precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.231598e-04 +Time to reload gauge configuration = 2.100468e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.720356e-04 +Time to check unitarity = 2.741814e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.6809116840679351 0.690136924370674 2.497223870236982 2.661075349926381 2.020024076974875 2.206901036327745 -0.003322700295870131 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.02290189987380389 0.02449332090338607 2.994661938605119 2.9954931 GFLOW: 0.9375 0.02038580316023873 0.02135905455129621 2.995441555664428 2.99602896896278 2.983838596907122 2.985289226953014 0.0006617473585363039 GFLOW: 1 0.01826184433376579 0.01876567391651689 2.996071790065756 2.996475582993588 2.985942419346051 2.986884664557197 0.0004979229865748972 Number of steps = 16 -Time to complete flow = 8.135738e-01 seconds +Time to complete flow = 8.165240e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 8.149431e-01 seconds -exit: Wed Oct 26 19:39:14 2022 +Time = 8.178771e-01 seconds +exit: Fri Oct 28 18:11:14 2022 diff --git a/wilson_flow/test/wilson_flow_bbb_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_bbb_a.wilson.1.errtol new file mode 100644 index 000000000..63a791fb2 --- /dev/null +++ b/wilson_flow/test/wilson_flow_bbb_a.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_bbb_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_bbb_a.wilson.1.sample-out index afbd741f1..34badb81f 100644 --- a/wilson_flow/test/wilson_flow_bbb_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_bbb_a.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 19:39:12 2022 +start: Fri Oct 28 18:11:12 2022 Options selected... Generic single precision @@ -33,7 +33,7 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.959801e-04 +Time to reload gauge configuration = 1.988411e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0262447 0.0296281 2.99299 2.99463 2.97636 2.98057 0.00123183 GFLOW: 0.9375 0.0231961 0.0255849 2.9941 2.99532 2.97986 2.98294 0.000974571 GFLOW: 1 0.0206458 0.022266 2.99499 2.99588 2.98269 2.98491 0.000763708 Number of steps = 16 -Time to complete flow = 2.215741e-01 seconds +Time to complete flow = 2.204871e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.224879e-01 seconds -exit: Wed Oct 26 19:39:12 2022 +Time = 2.214100e-01 seconds +exit: Fri Oct 28 18:11:13 2022 diff --git a/wilson_flow/test/wilson_flow_bbb_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_bbb_a.wilson.2.errtol new file mode 100644 index 000000000..8e6cbfe2d --- /dev/null +++ b/wilson_flow/test/wilson_flow_bbb_a.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_bbb_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_bbb_a.wilson.2.sample-out index 76483c7d6..72b6fdbdc 100644 --- a/wilson_flow/test/wilson_flow_bbb_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_bbb_a.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 19:39:12 2022 +start: Fri Oct 28 18:11:13 2022 Options selected... Generic double precision @@ -33,7 +33,7 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.040863e-04 +Time to reload gauge configuration = 1.969337e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0262446883653137 0.02962814305894805 2.992989067200138 2.99463073 GFLOW: 0.9375 0.02319615042417657 0.02558491329732821 2.994102317338131 2.995317014920507 2.979862185347807 2.982944050533165 0.0009745741507404028 GFLOW: 1 0.02064577653969442 0.02226602977665494 2.994989181344406 2.995881234898003 2.98269030194665 2.984912897182801 0.0007637138225604164 Number of steps = 16 -Time to complete flow = 2.566321e-01 seconds +Time to complete flow = 2.566481e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.579710e-01 seconds -exit: Wed Oct 26 19:39:12 2022 +Time = 2.579651e-01 seconds +exit: Fri Oct 28 18:11:13 2022 diff --git a/wilson_flow/test/wilson_flow_cf3.symanzik.1.errtol b/wilson_flow/test/wilson_flow_cf3.symanzik.1.errtol new file mode 100644 index 000000000..4f3682170 --- /dev/null +++ b/wilson_flow/test/wilson_flow_cf3.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_cf3.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_cf3.symanzik.1.sample-out index c0b51284f..4dfbd2f1b 100644 --- a/wilson_flow/test/wilson_flow_cf3.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_cf3.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Thu Jan 7 00:12:42 2021 +start: Fri Oct 28 17:48:32 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 0.7 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.821518e-04 +Time to reload gauge configuration = 1.959801e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 5.507469e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.854372 0.829399 2.37781 2.36435 1.80364 1.77682 0.0473395 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.0509333 0.0345462 2.99269 2.9895 2.97398 2.96222 0.000456608 GFLOW: 0.9375 0.0460403 0.0306383 2.99364 2.99065 2.97716 2.96611 0.000256768 GFLOW: 1 0.0419362 0.0274252 2.99441 2.9916 2.97974 2.96935 0.000106591 Number of steps = 16 -Time to complete flow = 2.904770e-01 seconds +Time to complete flow = 3.703392e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.914960e-01 seconds -exit: Thu Jan 7 00:12:42 2021 +Time = 3.712351e-01 seconds +exit: Fri Oct 28 17:48:32 2022 diff --git a/wilson_flow/test/wilson_flow_cf3.symanzik.2.errtol b/wilson_flow/test/wilson_flow_cf3.symanzik.2.errtol new file mode 100644 index 000000000..1d1252a22 --- /dev/null +++ b/wilson_flow/test/wilson_flow_cf3.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_cf3.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_cf3.symanzik.2.sample-out index dfecab65f..a7a8d5120 100644 --- a/wilson_flow/test/wilson_flow_cf3.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_cf3.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Wed Jan 6 23:59:34 2021 +start: Fri Oct 28 17:48:32 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.2 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.280277e-04 +Time to reload gauge configuration = 2.028942e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.055002e-03 +Time to check unitarity = 2.770424e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.8543716615679702 0.8293993621997977 2.377809180202705 2.364347685635683 1.803642126471845 1.776821884930114 0.04733953641862654 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.05093331922520593 0.0345461986078126 2.992688657026303 2.98949554 GFLOW: 0.9375 0.04604029570896043 0.03063827683561837 2.993641720857155 2.990648481963264 2.977159538622672 2.96611436320869 0.0002567670485341259 GFLOW: 1 0.04193616190544152 0.0274251867371391 2.994408881949181 2.991597126998047 2.979742121488842 2.969345906113011 0.0001065860117359313 Number of steps = 16 -Time to complete flow = 3.675420e-01 seconds +Time to complete flow = 4.479511e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.741040e-01 seconds -exit: Wed Jan 6 23:59:35 2021 +Time = 4.493129e-01 seconds +exit: Fri Oct 28 17:48:33 2022 diff --git a/wilson_flow/test/wilson_flow_cf3.wilson.1.errtol b/wilson_flow/test/wilson_flow_cf3.wilson.1.errtol new file mode 100644 index 000000000..b12aa37bc --- /dev/null +++ b/wilson_flow/test/wilson_flow_cf3.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0004 0.0004 0.0003 0.0003 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_cf3.wilson.1.sample-out b/wilson_flow/test/wilson_flow_cf3.wilson.1.sample-out index 33deb24d4..8d7b879a3 100644 --- a/wilson_flow/test/wilson_flow_cf3.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_cf3.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Thu Jan 7 00:13:29 2021 +start: Fri Oct 28 17:48:32 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 0.7 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.728535e-04 +Time to reload gauge configuration = 2.081394e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 5.507469e-05 +Time to check unitarity = 6.818771e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.905807 0.879692 2.21687 2.19756 1.61685 1.58376 0.0557657 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.061343 0.0426947 2.99027 2.98659 2.96661 2.95314 0.00101783 GFLOW: 0.9375 0.0548425 0.0373367 2.99172 2.98826 2.9712 2.95856 0.000714324 GFLOW: 1 0.0494347 0.0329748 2.99285 2.98962 2.97487 2.963 0.000480026 Number of steps = 16 -Time to complete flow = 1.090231e-01 seconds +Time to complete flow = 1.338429e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.100101e-01 seconds -exit: Thu Jan 7 00:13:29 2021 +Time = 1.348071e-01 seconds +exit: Fri Oct 28 17:48:32 2022 diff --git a/wilson_flow/test/wilson_flow_cf3.wilson.2.errtol b/wilson_flow/test/wilson_flow_cf3.wilson.2.errtol new file mode 100644 index 000000000..7ea772603 --- /dev/null +++ b/wilson_flow/test/wilson_flow_cf3.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 4e-08 4e-08 3e-08 3e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_cf3.wilson.2.sample-out b/wilson_flow/test/wilson_flow_cf3.wilson.2.sample-out index c9a71ca45..4255b5ed8 100644 --- a/wilson_flow/test/wilson_flow_cf3.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_cf3.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Thu Jan 7 00:00:30 2021 +start: Fri Oct 28 17:48:32 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.2 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.740456e-04 +Time to reload gauge configuration = 2.129078e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.169609e-04 +Time to check unitarity = 2.751350e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.9058072391974819 0.8796920652115094 2.216872106002637 2.197559518115146 1.616847827366594 1.583758555648904 0.05576565378232661 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.06134298487857923 0.04269474465683353 2.990272643992486 2.9865861 GFLOW: 0.9375 0.05484248118210697 0.0373366634841456 2.991715443133546 2.988261650798499 2.971196422806157 2.958558496229756 0.0007143205679203317 GFLOW: 1 0.04943470001559129 0.03297475761403763 2.992854342352627 2.989615607391197 2.974869955652791 2.962995534693379 0.0004800257456124206 Number of steps = 16 -Time to complete flow = 1.222470e-01 seconds +Time to complete flow = 1.600370e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.236498e-01 seconds -exit: Thu Jan 7 00:00:30 2021 +Time = 1.614060e-01 seconds +exit: Fri Oct 28 17:48:32 2022 diff --git a/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.errtol new file mode 100644 index 000000000..bbe825dd1 --- /dev/null +++ b/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.sample-out index f1f251ffc..1af925bf8 100644 --- a/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 18:17:15 2022 +start: Fri Oct 28 17:48:33 2022 Options selected... Generic single precision @@ -33,7 +33,7 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.009869e-04 +Time to reload gauge configuration = 1.981258e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0267813 0.0365531 2.47058 2.45557 2.93189 2.93898 0.00513585 GFLOW: 0.9375 0.026401 0.0365579 2.46534 2.44887 2.93052 2.93618 0.00455004 GFLOW: 1 0.0264556 0.0370072 2.45886 2.44916 2.92844 2.93366 0.00398724 Number of steps = 16 -Time to complete flow = 3.673739e-01 seconds +Time to complete flow = 3.698521e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.683002e-01 seconds -exit: Wed Oct 26 18:17:15 2022 +Time = 3.707540e-01 seconds +exit: Fri Oct 28 17:48:34 2022 diff --git a/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.errtol new file mode 100644 index 000000000..a2f1eb591 --- /dev/null +++ b/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.sample-out index 9ec9cb7ce..cbcc82c08 100644 --- a/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 18:17:15 2022 +start: Fri Oct 28 17:48:34 2022 Options selected... Generic double precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.019405e-04 +Time to reload gauge configuration = 2.191067e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.760887e-04 +Time to check unitarity = 2.748966e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.6856607120142724 0.6915386007556226 2.490259090520325 2.665130186043828 2.014615384971077 2.209140985873434 -0.001584533264944331 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.02678129392845017 0.03655312386978807 2.470579560089488 2.4555735 GFLOW: 0.9375 0.02640101140658564 0.0365578627077278 2.465343859433491 2.448871421446105 2.930523903351459 2.936179598659281 0.00455003036918984 GFLOW: 1 0.0264555844795843 0.03700714527458681 2.458864900911031 2.44916440651395 2.928444532360039 2.933655576047524 0.003987242856075029 Number of steps = 16 -Time to complete flow = 4.405348e-01 seconds +Time to complete flow = 4.487572e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.418621e-01 seconds -exit: Wed Oct 26 18:17:16 2022 +Time = 4.501591e-01 seconds +exit: Fri Oct 28 17:48:34 2022 diff --git a/wilson_flow/test/wilson_flow_cf3_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_cf3_a.wilson.1.errtol new file mode 100644 index 000000000..63a791fb2 --- /dev/null +++ b/wilson_flow/test/wilson_flow_cf3_a.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_cf3_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_cf3_a.wilson.1.sample-out index 3ec0af28d..46073ec45 100644 --- a/wilson_flow/test/wilson_flow_cf3_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_cf3_a.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 18:17:15 2022 +start: Fri Oct 28 17:48:33 2022 Options selected... Generic single precision @@ -33,7 +33,7 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.009869e-04 +Time to reload gauge configuration = 2.040863e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0262435 0.0296268 2.99299 2.99463 2.97636 2.98057 0.00123245 GFLOW: 0.9375 0.0231953 0.0255839 2.9941 2.99532 2.97986 2.98295 0.000975064 GFLOW: 1 0.0206451 0.0222652 2.99499 2.99588 2.98269 2.98491 0.000764088 Number of steps = 16 -Time to complete flow = 1.336310e-01 seconds +Time to complete flow = 1.338301e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.345840e-01 seconds -exit: Wed Oct 26 18:17:15 2022 +Time = 1.347699e-01 seconds +exit: Fri Oct 28 17:48:33 2022 diff --git a/wilson_flow/test/wilson_flow_cf3_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_cf3_a.wilson.2.errtol new file mode 100644 index 000000000..8e6cbfe2d --- /dev/null +++ b/wilson_flow/test/wilson_flow_cf3_a.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_cf3_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_cf3_a.wilson.2.sample-out index 7352e95b1..7b3dd4783 100644 --- a/wilson_flow/test/wilson_flow_cf3_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_cf3_a.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 18:17:15 2022 +start: Fri Oct 28 17:48:33 2022 Options selected... Generic double precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.028942e-04 +Time to reload gauge configuration = 2.069473e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.748966e-04 +Time to check unitarity = 2.758503e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.7713943927111765 0.7634630606084033 2.350031769691219 2.514781281388779 1.827313562898589 1.988817497601031 0.009230654874579167 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.02624351365944406 0.02962682557763133 2.992989881229956 2.9946312 GFLOW: 0.9375 0.0231952897564902 0.02558385889964792 2.994102903052204 2.995317367964125 2.979863573115704 2.982945019270884 0.0009750678711856884 GFLOW: 1 0.02064511780478029 0.022265170435597 2.994989617920152 2.995881490355348 2.982691375757261 2.984913612506852 0.0007640898777279815 Number of steps = 16 -Time to complete flow = 1.573110e-01 seconds +Time to complete flow = 1.593132e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.586409e-01 seconds -exit: Wed Oct 26 18:17:15 2022 +Time = 1.606832e-01 seconds +exit: Fri Oct 28 17:48:33 2022 diff --git a/wilson_flow/test/wilson_flow_ck.symanzik.1.errtol b/wilson_flow/test/wilson_flow_ck.symanzik.1.errtol new file mode 100644 index 000000000..4f3682170 --- /dev/null +++ b/wilson_flow/test/wilson_flow_ck.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_ck.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_ck.symanzik.1.sample-out index 20d6e09a0..7bda83017 100644 --- a/wilson_flow/test/wilson_flow_ck.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_ck.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:03 2021 +start: Fri Oct 28 18:00:16 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 0.7 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.020401e-04 +Time to reload gauge configuration = 1.919270e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 2.660751e-04 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.853802 0.828745 2.37573 2.36237 1.80293 1.77604 0.0468074 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.0509342 0.0345475 2.99269 2.98949 2.97398 2.96222 0.000456365 GFLOW: 0.9375 0.0460408 0.0306391 2.99364 2.99065 2.97716 2.96611 0.000256573 GFLOW: 1 0.0419366 0.0274257 2.99441 2.9916 2.97974 2.96934 0.000106434 Number of steps = 16 -Time to complete flow = 4.541051e-01 seconds +Time to complete flow = 5.822339e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.587340e-01 seconds -exit: Tue Jan 5 19:00:04 2021 +Time = 5.831490e-01 seconds +exit: Fri Oct 28 18:00:17 2022 diff --git a/wilson_flow/test/wilson_flow_ck.symanzik.2.errtol b/wilson_flow/test/wilson_flow_ck.symanzik.2.errtol new file mode 100644 index 000000000..1d1252a22 --- /dev/null +++ b/wilson_flow/test/wilson_flow_ck.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_ck.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_ck.symanzik.2.sample-out index d33aa4fe3..9c66565e9 100644 --- a/wilson_flow/test/wilson_flow_ck.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_ck.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:10 2021 +start: Fri Oct 28 18:00:17 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.2 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.201599e-04 +Time to reload gauge configuration = 2.090931e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.054049e-03 +Time to check unitarity = 2.710819e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.8538024171258738 0.8287454255568873 2.375733022008848 2.362371644705775 1.802929097356299 1.776043623868389 0.0468073501846351 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.05093418380447465 0.03454751102613438 2.992687938055619 2.9894949 GFLOW: 0.9375 0.04604087926300007 0.03063912237458566 2.993641259296205 2.99064813445157 2.977158402728709 2.966113535860531 0.0002565843724865501 GFLOW: 1 0.0419365823466555 0.02742573261684322 2.994408579617042 2.991596896189359 2.979741377472791 2.969345342434051 0.0001064405011650979 Number of steps = 16 -Time to complete flow = 5.655839e-01 seconds +Time to complete flow = 6.883149e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.721772e-01 seconds -exit: Tue Jan 5 19:01:11 2021 +Time = 6.896830e-01 seconds +exit: Fri Oct 28 18:00:18 2022 diff --git a/wilson_flow/test/wilson_flow_ck.wilson.1.errtol b/wilson_flow/test/wilson_flow_ck.wilson.1.errtol new file mode 100644 index 000000000..b12aa37bc --- /dev/null +++ b/wilson_flow/test/wilson_flow_ck.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0004 0.0004 0.0003 0.0003 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_ck.wilson.1.sample-out b/wilson_flow/test/wilson_flow_ck.wilson.1.sample-out index 493911451..3675ffb2c 100644 --- a/wilson_flow/test/wilson_flow_ck.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_ck.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:04 2021 +start: Fri Oct 28 18:00:16 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 0.7 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.680851e-04 +Time to reload gauge configuration = 1.950264e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 5.602837e-05 +Time to check unitarity = 6.818771e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.905716 0.879587 2.21653 2.19725 1.61673 1.58364 0.0556872 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.0613466 0.0426989 2.99027 2.98658 2.9666 2.95314 0.00101775 GFLOW: 0.9375 0.0548452 0.0373397 2.99171 2.98826 2.97119 2.95855 0.000714273 GFLOW: 1 0.0494367 0.032977 2.99285 2.98961 2.97487 2.96299 0.000480004 Number of steps = 16 -Time to complete flow = 1.523640e-01 seconds +Time to complete flow = 1.925728e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.533720e-01 seconds -exit: Tue Jan 5 19:00:04 2021 +Time = 1.935089e-01 seconds +exit: Fri Oct 28 18:00:16 2022 diff --git a/wilson_flow/test/wilson_flow_ck.wilson.2.errtol b/wilson_flow/test/wilson_flow_ck.wilson.2.errtol new file mode 100644 index 000000000..7ea772603 --- /dev/null +++ b/wilson_flow/test/wilson_flow_ck.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 4e-08 4e-08 3e-08 3e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_ck.wilson.2.sample-out b/wilson_flow/test/wilson_flow_ck.wilson.2.sample-out index d73ac37d0..a6d888ae9 100644 --- a/wilson_flow/test/wilson_flow_ck.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_ck.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:11 2021 +start: Fri Oct 28 18:00:16 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.2 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.158684e-04 +Time to reload gauge configuration = 2.140999e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.056194e-03 +Time to check unitarity = 2.739429e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.9057161062336272 0.8795864854631501 2.216532461684175 2.197245946658469 1.616733492229816 1.583642874136251 0.05568724694142022 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.06134667165981911 0.04269887901289016 2.990270538864177 2.9865841 GFLOW: 0.9375 0.0548452058492109 0.03733970414687345 2.991714014616549 2.988260337223827 2.971192848733542 2.958555240730743 0.0007142739353339791 GFLOW: 1 0.04943675585547579 0.03297702832885498 2.992853350217406 2.989614695326577 2.974867392713423 2.962993195380845 0.0004799988896040288 Number of steps = 16 -Time to complete flow = 2.044120e-01 seconds +Time to complete flow = 2.222559e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.110310e-01 seconds -exit: Tue Jan 5 19:01:11 2021 +Time = 2.236199e-01 seconds +exit: Fri Oct 28 18:00:16 2022 diff --git a/wilson_flow/test/wilson_flow_ck_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_ck_a.symanzik.1.errtol new file mode 100644 index 000000000..867204b69 --- /dev/null +++ b/wilson_flow/test/wilson_flow_ck_a.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_ck_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_ck_a.symanzik.1.sample-out index fb0e3dd22..93f2bb0da 100644 --- a/wilson_flow/test/wilson_flow_ck_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_ck_a.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 19:12:45 2022 +start: Fri Oct 28 18:00:18 2022 Options selected... Generic single precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.990795e-04 +Time to reload gauge configuration = 1.950264e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.818771e-05 +Time to check unitarity = 6.699562e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.680938 0.690218 2.49733 2.6621 2.02003 2.20799 -0.00319527 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0229052 0.0244966 2.99466 2.99549 2.98126 2.98338 0.000873416 GFLOW: 0.9375 0.0203887 0.0213617 2.99544 2.99603 2.98383 2.98529 0.000662213 GFLOW: 1 0.0182644 0.0187679 2.99607 2.99647 2.98594 2.98688 0.000498303 Number of steps = 16 -Time to complete flow = 5.821950e-01 seconds +Time to complete flow = 5.794361e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.831180e-01 seconds -exit: Wed Oct 26 19:12:45 2022 +Time = 5.803492e-01 seconds +exit: Fri Oct 28 18:00:19 2022 diff --git a/wilson_flow/test/wilson_flow_ck_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_ck_a.symanzik.2.errtol new file mode 100644 index 000000000..efbf1dccc --- /dev/null +++ b/wilson_flow/test/wilson_flow_ck_a.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_ck_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_ck_a.symanzik.2.sample-out index eb90bf75d..989721d69 100644 --- a/wilson_flow/test/wilson_flow_ck_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_ck_a.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 19:12:45 2022 +start: Fri Oct 28 18:00:19 2022 Options selected... Generic double precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.138615e-04 +Time to reload gauge configuration = 2.028942e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.720356e-04 +Time to check unitarity = 2.729893e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.6809377819170422 0.6902181570005429 2.497327080203822 2.662101369132726 2.020032465175898 2.207990831261513 -0.003195251660284452 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.02290518310100093 0.02449663152696972 2.994661074055317 2.9954924 GFLOW: 0.9375 0.0203887027122765 0.02136172418101899 2.995440879350614 2.99602839324106 2.983836377475227 2.985287116025093 0.0006622122104084191 GFLOW: 1 0.01826444261148784 0.01876786428269259 2.996071251381579 2.996475077109209 2.985940627124168 2.98688279200371 0.0004983007764924855 Number of steps = 16 -Time to complete flow = 6.897380e-01 seconds +Time to complete flow = 6.878290e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 6.911170e-01 seconds -exit: Wed Oct 26 19:12:46 2022 +Time = 6.891580e-01 seconds +exit: Fri Oct 28 18:00:19 2022 diff --git a/wilson_flow/test/wilson_flow_ck_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_ck_a.wilson.1.errtol new file mode 100644 index 000000000..63a791fb2 --- /dev/null +++ b/wilson_flow/test/wilson_flow_ck_a.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_ck_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_ck_a.wilson.1.sample-out index 8acd27021..8c7589760 100644 --- a/wilson_flow/test/wilson_flow_ck_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_ck_a.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 19:12:44 2022 +start: Fri Oct 28 18:00:18 2022 Options selected... Generic single precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.969337e-04 +Time to reload gauge configuration = 1.981258e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.890297e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.769681 0.763276 2.34845 2.5114 1.8262 1.98787 0.00859189 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0262454 0.0296291 2.99299 2.99463 2.97636 2.98057 0.00123191 GFLOW: 0.9375 0.0231967 0.0255856 2.9941 2.99532 2.97986 2.98294 0.000974649 GFLOW: 1 0.0206463 0.0222666 2.99499 2.99588 2.98269 2.98491 0.000763776 Number of steps = 16 -Time to complete flow = 1.920221e-01 seconds +Time to complete flow = 1.912889e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.929390e-01 seconds -exit: Wed Oct 26 19:12:44 2022 +Time = 1.922190e-01 seconds +exit: Fri Oct 28 18:00:18 2022 diff --git a/wilson_flow/test/wilson_flow_ck_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_ck_a.wilson.2.errtol new file mode 100644 index 000000000..8e6cbfe2d --- /dev/null +++ b/wilson_flow/test/wilson_flow_ck_a.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_ck_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_ck_a.wilson.2.sample-out index b56bb1da7..24f265f23 100644 --- a/wilson_flow/test/wilson_flow_ck_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_ck_a.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Wed Oct 26 19:12:44 2022 +start: Fri Oct 28 18:00:18 2022 Options selected... Generic double precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.129078e-04 +Time to reload gauge configuration = 2.019405e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.729893e-04 +Time to check unitarity = 2.720356e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.7696809187708318 0.7632755031149672 2.348454047673703 2.511403545710404 1.82620484416736 1.987873613175696 0.008591905850607939 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.02624542922290212 0.02962909435690859 2.992988785218849 2.9946305 GFLOW: 0.9375 0.02319676441530075 0.02558566238286014 2.994102103443268 2.995316878239127 2.979861523812927 2.982943575465618 0.0009746437282930889 GFLOW: 1 0.02064629402617104 0.02226662775833122 2.994989016474138 2.995881122777838 2.982689783395693 2.984912502541169 0.0007637715104002226 Number of steps = 16 -Time to complete flow = 2.238960e-01 seconds +Time to complete flow = 2.242980e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.252450e-01 seconds -exit: Wed Oct 26 19:12:45 2022 +Time = 2.256460e-01 seconds +exit: Fri Oct 28 18:00:18 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3.symanzik.1.errtol b/wilson_flow/test/wilson_flow_rkmk3.symanzik.1.errtol new file mode 100644 index 000000000..4f3682170 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk3.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk3.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk3.symanzik.1.sample-out index 426fc9e56..f2694b607 100644 --- a/wilson_flow/test/wilson_flow_rkmk3.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:04 2021 +start: Fri Oct 28 18:23:00 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.0 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.688004e-04 +Time to reload gauge configuration = 2.069473e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 5.507469e-05 +Time to check unitarity = 7.009506e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.854382 0.829414 2.37915 2.36573 1.80473 1.77801 0.0474035 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.0509351 0.0345469 2.99269 2.9895 2.97398 2.96222 0.000455175 GFLOW: 0.9375 0.0460418 0.0306387 2.99364 2.99065 2.97716 2.96611 0.000255616 GFLOW: 1 0.0419374 0.0274254 2.99441 2.9916 2.97974 2.96934 0.000105656 Number of steps = 16 -Time to complete flow = 3.121200e-01 seconds +Time to complete flow = 4.018769e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.132370e-01 seconds -exit: Tue Jan 5 19:00:05 2021 +Time = 4.029210e-01 seconds +exit: Fri Oct 28 18:23:01 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3.symanzik.2.errtol b/wilson_flow/test/wilson_flow_rkmk3.symanzik.2.errtol new file mode 100644 index 000000000..1d1252a22 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk3.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk3.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk3.symanzik.2.sample-out index 7b65b5279..1b9dbb5c3 100644 --- a/wilson_flow/test/wilson_flow_rkmk3.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:11 2021 +start: Fri Oct 28 18:23:01 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 2.0 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 8.091927e-04 +Time to reload gauge configuration = 2.069473e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.169609e-04 +Time to check unitarity = 2.799034e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.8543821081090931 0.8294143032164626 2.379153297732387 2.365728299275925 1.804732423553656 1.778009568228787 0.04740354964843416 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.05093511043212982 0.03454688198382789 2.99268840997204 2.98949505 GFLOW: 0.9375 0.04604176321113369 0.03063871954166489 2.993641540327165 2.990648086494692 2.977159028698294 2.966113095305094 0.000255614820690152 GFLOW: 1 0.04193736236334834 0.02742544045818422 2.994408756080345 2.991596805875664 2.979741784424635 2.969344873732489 0.0001056561418256736 Number of steps = 16 -Time to complete flow = 3.392830e-01 seconds +Time to complete flow = 4.535751e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.449728e-01 seconds -exit: Tue Jan 5 19:01:12 2021 +Time = 4.551489e-01 seconds +exit: Fri Oct 28 18:23:01 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3.wilson.1.errtol b/wilson_flow/test/wilson_flow_rkmk3.wilson.1.errtol new file mode 100644 index 000000000..b12aa37bc --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk3.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0004 0.0004 0.0003 0.0003 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk3.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk3.wilson.1.sample-out index e9670e148..2e73ce5c2 100644 --- a/wilson_flow/test/wilson_flow_rkmk3.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:05 2021 +start: Fri Oct 28 18:23:00 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.0 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.671314e-04 +Time to reload gauge configuration = 2.028942e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 5.602837e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.905813 0.879699 2.21718 2.19787 1.61709 1.58402 0.0557593 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.061344 0.0426954 2.99027 2.98659 2.96661 2.95314 0.00101734 GFLOW: 0.9375 0.0548433 0.0373373 2.99172 2.98826 2.9712 2.95856 0.000713902 GFLOW: 1 0.0494355 0.0329753 2.99285 2.98962 2.97487 2.96299 0.000479679 Number of steps = 16 -Time to complete flow = 1.153760e-01 seconds +Time to complete flow = 1.440270e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.164730e-01 seconds -exit: Tue Jan 5 19:00:05 2021 +Time = 1.450660e-01 seconds +exit: Fri Oct 28 18:23:00 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3.wilson.2.errtol b/wilson_flow/test/wilson_flow_rkmk3.wilson.2.errtol new file mode 100644 index 000000000..7ea772603 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk3.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 4e-08 4e-08 3e-08 3e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk3.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk3.wilson.2.sample-out index 30422333c..84194c619 100644 --- a/wilson_flow/test/wilson_flow_rkmk3.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:12 2021 +start: Fri Oct 28 18:23:00 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 2.0 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.959801e-04 +Time to reload gauge configuration = 2.238750e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.360344e-04 +Time to check unitarity = 2.751350e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.9058132281572296 0.8796992037234977 2.217180550948812 2.197869838719706 1.617090518681119 1.58401604382473 0.05575934074905174 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.06134395572850838 0.04269544502149491 2.990272515017896 2.9865858 GFLOW: 0.9375 0.05484335057073104 0.03733727484505324 2.991715307722234 2.988261447229226 2.971195933971117 2.958557792416499 0.0007139043046858566 GFLOW: 1 0.04943546225522002 0.03297527593893552 2.99285421627351 2.989615421564702 2.974869524266856 2.96299490780264 0.0004796786451075099 Number of steps = 16 -Time to complete flow = 1.280730e-01 seconds +Time to complete flow = 1.626430e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.297901e-01 seconds -exit: Tue Jan 5 19:01:12 2021 +Time = 1.642449e-01 seconds +exit: Fri Oct 28 18:23:00 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.errtol new file mode 100644 index 000000000..d97f3e6b8 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.sample-out index 323ad442b..b176e0736 100644 --- a/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 13:31:10 2022 +start: Fri Oct 28 18:23:02 2022 Options selected... Generic single precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.100468e-04 +Time to reload gauge configuration = 2.028942e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.818771e-05 +Time to check unitarity = 6.914139e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.683596 0.689287 2.49362 2.66867 2.01982 2.21584 -0.000286496 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0325555 0.0470688 2.62184 2.61284 2.93089 2.94566 0.00575045 GFLOW: 0.9375 0.0330521 0.0488943 2.61941 2.61067 2.92881 2.94361 0.00576839 GFLOW: 1 0.0340194 0.0512615 2.61611 2.61202 2.92611 2.94153 0.00576525 Number of steps = 16 -Time to complete flow = 3.935199e-01 seconds +Time to complete flow = 3.963470e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.945501e-01 seconds -exit: Thu Oct 27 13:31:10 2022 +Time = 3.973830e-01 seconds +exit: Fri Oct 28 18:23:02 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.errtol new file mode 100644 index 000000000..f687f7888 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.sample-out index 516582076..02578da22 100644 --- a/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 13:31:10 2022 +start: Fri Oct 28 18:23:02 2022 Options selected... Generic double precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.171993e-04 +Time to reload gauge configuration = 2.100468e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.760887e-04 +Time to check unitarity = 2.779961e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.6835964225873505 0.689286618530199 2.493615815143509 2.66866524114337 2.019823710776547 2.215838902238242 -0.0002864649851840247 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.03255545618685056 0.04706884643192256 2.621841859605768 2.6128431 GFLOW: 0.9375 0.03305214740293687 0.04889429434398371 2.61941302923453 2.610673653295389 2.928812261087174 2.94361245799095 0.00576838885615973 GFLOW: 1 0.03401938011060365 0.05126153901588022 2.616106321836107 2.612018857763462 2.926107543646373 2.941533720464648 0.005765256445412413 Number of steps = 16 -Time to complete flow = 4.393349e-01 seconds +Time to complete flow = 4.470880e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.408669e-01 seconds -exit: Thu Oct 27 13:31:10 2022 +Time = 4.486158e-01 seconds +exit: Fri Oct 28 18:23:02 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.errtol new file mode 100644 index 000000000..63a791fb2 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.sample-out index 976d4c8b8..53d2f64e4 100644 --- a/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 13:31:09 2022 +start: Fri Oct 28 18:23:01 2022 Options selected... Generic single precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.059937e-04 +Time to reload gauge configuration = 2.009869e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.890297e-05 +Time to check unitarity = 6.914139e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.771013 0.762609 2.35235 2.51803 1.83004 1.99213 0.00916212 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0262433 0.0296267 2.99299 2.99463 2.97636 2.98057 0.00123066 GFLOW: 0.9375 0.0231948 0.0255837 2.9941 2.99532 2.97986 2.98295 0.000973762 GFLOW: 1 0.0206445 0.022265 2.99499 2.99588 2.98269 2.98491 0.000763127 Number of steps = 16 -Time to complete flow = 1.443062e-01 seconds +Time to complete flow = 1.470511e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.453540e-01 seconds -exit: Thu Oct 27 13:31:09 2022 +Time = 1.480770e-01 seconds +exit: Fri Oct 28 18:23:01 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.errtol new file mode 100644 index 000000000..8e6cbfe2d --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.sample-out index 88ec627bf..5437fa8b6 100644 --- a/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 13:31:09 2022 +start: Fri Oct 28 18:23:01 2022 Options selected... Generic double precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.188683e-04 +Time to reload gauge configuration = 2.088547e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.770424e-04 +Time to check unitarity = 2.789497e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.7710131731574482 0.7626088229355815 2.352352162560256 2.518030482716568 1.830041058060231 1.992134797207159 0.009162119049090731 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.02624328171675649 0.02962667880256372 2.992989694901286 2.9946311 GFLOW: 0.9375 0.02319482790702301 0.02558367825370402 2.994102769573283 2.995317330850922 2.979863381684063 2.98294510086421 0.0009737558903427751 GFLOW: 1 0.0206444759490759 0.02226495693069587 2.99498953135431 2.99588150627508 2.982691286524783 2.984913859497751 0.0007631313790103263 Number of steps = 16 -Time to complete flow = 1.594429e-01 seconds +Time to complete flow = 1.657190e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.610079e-01 seconds -exit: Thu Oct 27 13:31:10 2022 +Time = 1.672649e-01 seconds +exit: Fri Oct 28 18:23:02 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4.symanzik.1.errtol b/wilson_flow/test/wilson_flow_rkmk4.symanzik.1.errtol new file mode 100644 index 000000000..4f3682170 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk4.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk4.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk4.symanzik.1.sample-out index e771ed8b0..d5cda1c04 100644 --- a/wilson_flow/test/wilson_flow_rkmk4.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:05 2021 +start: Fri Oct 28 18:31:58 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.1 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.379055e-04 +Time to reload gauge configuration = 1.909733e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 1.769066e-04 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.853742 0.828662 2.37481 2.36149 1.80236 1.77547 0.0466932 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.0509385 0.0345514 2.99269 2.98949 2.97398 2.96222 0.000456476 GFLOW: 0.9375 0.0460445 0.0306424 2.99364 2.99065 2.97716 2.96611 0.000256642 GFLOW: 1 0.0419396 0.0274286 2.99441 2.9916 2.97974 2.96934 0.000106471 Number of steps = 16 -Time to complete flow = 4.252911e-01 seconds +Time to complete flow = 5.258031e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.301410e-01 seconds -exit: Tue Jan 5 19:00:05 2021 +Time = 5.268540e-01 seconds +exit: Fri Oct 28 18:31:59 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4.symanzik.2.errtol b/wilson_flow/test/wilson_flow_rkmk4.symanzik.2.errtol new file mode 100644 index 000000000..1d1252a22 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk4.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk4.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk4.symanzik.2.sample-out index fcfb01937..a12ab487c 100644 --- a/wilson_flow/test/wilson_flow_rkmk4.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:12 2021 +start: Fri Oct 28 18:31:59 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 2.2 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 9.400845e-04 +Time to reload gauge configuration = 2.350807e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.063108e-03 +Time to check unitarity = 2.770424e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.8537424331834639 0.8286621639253783 2.374811455559379 2.361490389791526 1.802363517742788 1.775472646584519 0.04669314950067512 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.05093848754452047 0.03455140853168873 2.992687019673214 2.9894939 GFLOW: 0.9375 0.04604446051004991 0.03064242261772962 2.993640503634818 2.990647288438182 2.977155813582668 2.966110685375747 0.0002566402784533462 GFLOW: 1 0.04193959215924965 0.02742856224906824 2.994407947271924 2.991596198187827 2.979739185206611 2.96934296921576 0.0001064666822761098 Number of steps = 16 -Time to complete flow = 4.818871e-01 seconds +Time to complete flow = 5.786040e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.896829e-01 seconds -exit: Tue Jan 5 19:01:13 2021 +Time = 5.801799e-01 seconds +exit: Fri Oct 28 18:32:00 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4.wilson.1.errtol b/wilson_flow/test/wilson_flow_rkmk4.wilson.1.errtol new file mode 100644 index 000000000..b12aa37bc --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk4.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0004 0.0004 0.0003 0.0003 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk4.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk4.wilson.1.sample-out index 8fb2de125..22611e7a2 100644 --- a/wilson_flow/test/wilson_flow_rkmk4.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:06 2021 +start: Fri Oct 28 18:31:58 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.1 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.869202e-04 +Time to reload gauge configuration = 2.009869e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.008148e-05 +Time to check unitarity = 6.985664e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.905703 0.879571 2.21643 2.19715 1.61667 1.58359 0.0556743 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.0613478 0.0426998 2.99027 2.98658 2.9666 2.95314 0.00101778 GFLOW: 0.9375 0.0548461 0.0373404 2.99171 2.98826 2.97119 2.95855 0.000714291 GFLOW: 1 0.0494375 0.0329776 2.99285 2.98961 2.97487 2.96299 0.000480007 Number of steps = 16 -Time to complete flow = 1.503730e-01 seconds +Time to complete flow = 1.893249e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.516252e-01 seconds -exit: Tue Jan 5 19:00:06 2021 +Time = 1.904080e-01 seconds +exit: Fri Oct 28 18:31:58 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4.wilson.2.errtol b/wilson_flow/test/wilson_flow_rkmk4.wilson.2.errtol new file mode 100644 index 000000000..7ea772603 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk4.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 4e-08 4e-08 3e-08 3e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk4.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk4.wilson.2.sample-out index 0f4b1b0e8..9d83ae5f7 100644 --- a/wilson_flow/test/wilson_flow_rkmk4.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:13 2021 +start: Fri Oct 28 18:31:58 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 2.2 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 9.429455e-04 +Time to reload gauge configuration = 2.319813e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.062155e-03 +Time to check unitarity = 2.760887e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.9057031831608294 0.8795711436032624 2.216427462049307 2.197147988025131 1.616674189327134 1.583585295494178 0.05567430814614981 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.06134778341502817 0.0426997853211387 2.990270236012725 2.98658381 GFLOW: 0.9375 0.054846099742266 0.03734041874314368 2.99171379346905 2.988260074949406 2.97119219381856 2.95855444611783 0.0007142962930980275 GFLOW: 1 0.04943748561527679 0.03297760211092378 2.992853183680449 2.989614492842532 2.974866883827142 2.96299256481089 0.0004800148085506874 Number of steps = 16 -Time to complete flow = 1.869872e-01 seconds +Time to complete flow = 2.031140e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.947908e-01 seconds -exit: Tue Jan 5 19:01:13 2021 +Time = 2.047291e-01 seconds +exit: Fri Oct 28 18:31:58 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.errtol new file mode 100644 index 000000000..867204b69 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.sample-out index d09e39827..abded5596 100644 --- a/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 14:23:28 2022 +start: Fri Oct 28 18:32:00 2022 Options selected... Generic single precision @@ -33,7 +33,7 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.981258e-04 +Time to reload gauge configuration = 1.971722e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0229936 0.0246722 2.99356 2.99483 2.98107 2.9833 0.000881605 GFLOW: 0.9375 0.0204808 0.0215423 2.99408 2.99522 2.98364 2.98519 0.000671251 GFLOW: 1 0.0183645 0.018958 2.99439 2.99548 2.98572 2.98678 0.000507754 Number of steps = 16 -Time to complete flow = 5.289378e-01 seconds +Time to complete flow = 5.256810e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.299861e-01 seconds -exit: Thu Oct 27 14:23:28 2022 +Time = 5.267129e-01 seconds +exit: Fri Oct 28 18:32:00 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.errtol new file mode 100644 index 000000000..efbf1dccc --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.sample-out index f5fcdbc96..edfd9e672 100644 --- a/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 14:23:28 2022 +start: Fri Oct 28 18:32:00 2022 Options selected... Generic double precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.369881e-04 +Time to reload gauge configuration = 2.470016e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.758503e-04 +Time to check unitarity = 2.739429e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.6823946201659636 0.6920917136354631 2.490020026245956 2.649953699489648 2.012674262552984 2.198078215949578 -0.006400991034190496 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.02299362546727285 0.02467218979604128 2.99355993847521 2.99483110 GFLOW: 0.9375 0.02048084249783873 0.02154227295739387 2.994080254122519 2.995220387057091 2.983635133858775 2.985193411609623 0.0006712538264066448 GFLOW: 1 0.01836454355924732 0.01895798990065688 2.99438631449226 2.995483907278615 2.985724492422461 2.986780574435416 0.0005077537693918494 Number of steps = 16 -Time to complete flow = 5.788991e-01 seconds +Time to complete flow = 5.791352e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.805011e-01 seconds -exit: Thu Oct 27 14:23:29 2022 +Time = 5.807450e-01 seconds +exit: Fri Oct 28 18:32:01 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.errtol new file mode 100644 index 000000000..63a791fb2 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.sample-out index d837c3920..7c392e9fb 100644 --- a/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 14:23:28 2022 +start: Fri Oct 28 18:32:00 2022 Options selected... Generic single precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.079010e-04 +Time to reload gauge configuration = 2.000332e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.985664e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.769534 0.763513 2.34719 2.50921 1.82495 1.98626 0.0083358 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0262502 0.0296359 2.99299 2.99463 2.97636 2.98056 0.00123181 GFLOW: 0.9375 0.0232006 0.0255912 2.9941 2.99532 2.97986 2.98294 0.000974622 GFLOW: 1 0.0206494 0.0222712 2.99499 2.99588 2.98269 2.98491 0.000763777 Number of steps = 16 -Time to complete flow = 1.867380e-01 seconds +Time to complete flow = 1.861870e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.878059e-01 seconds -exit: Thu Oct 27 14:23:28 2022 +Time = 1.872559e-01 seconds +exit: Fri Oct 28 18:32:00 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.errtol new file mode 100644 index 000000000..8e6cbfe2d --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.sample-out index 86fc9cd8d..3c5ba5231 100644 --- a/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 14:23:28 2022 +start: Fri Oct 28 18:32:00 2022 Options selected... Generic double precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.379417e-04 +Time to reload gauge configuration = 2.288818e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.748966e-04 +Time to check unitarity = 2.739429e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.7695344475361042 0.7635128575041581 2.34718832356269 2.509213492391763 1.824954477043811 1.986264240444615 0.008335795943452493 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.02625015025266585 0.02963594875648565 2.992986815299941 2.9946294 GFLOW: 0.9375 0.02320059879253444 0.02559121107296509 2.994100560510657 2.995315983490872 2.979856685519148 2.982940526686201 0.0009746159357432641 GFLOW: 1 0.02064944259540563 0.0222711566211438 2.99498779187415 2.995880400661651 2.982685891060598 2.984910022250389 0.0007637764800629292 Number of steps = 16 -Time to complete flow = 2.068172e-01 seconds +Time to complete flow = 2.031450e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.084510e-01 seconds -exit: Thu Oct 27 14:23:28 2022 +Time = 2.047181e-01 seconds +exit: Fri Oct 28 18:32:00 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5.symanzik.1.errtol b/wilson_flow/test/wilson_flow_rkmk5.symanzik.1.errtol new file mode 100644 index 000000000..4f3682170 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk5.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk5.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk5.symanzik.1.sample-out index e4d1b27f5..8333d2e12 100644 --- a/wilson_flow/test/wilson_flow_rkmk5.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:06 2021 +start: Fri Oct 28 18:41:03 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.3 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.729893e-04 +Time to reload gauge configuration = 2.081394e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 9.012222e-05 +Time to check unitarity = 6.890297e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.853792 0.828736 2.37561 2.36225 1.80284 1.77595 0.0467987 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.050934 0.0345474 2.99269 2.9895 2.97398 2.96222 0.000456365 GFLOW: 0.9375 0.0460408 0.030639 2.99364 2.99065 2.97716 2.96611 0.000256579 GFLOW: 1 0.0419365 0.0274257 2.99441 2.9916 2.97974 2.96935 0.000106438 Number of steps = 16 -Time to complete flow = 6.291640e-01 seconds +Time to complete flow = 7.855151e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 6.310689e-01 seconds -exit: Tue Jan 5 19:00:06 2021 +Time = 7.866490e-01 seconds +exit: Fri Oct 28 18:41:04 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5.symanzik.2.errtol b/wilson_flow/test/wilson_flow_rkmk5.symanzik.2.errtol new file mode 100644 index 000000000..1d1252a22 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk5.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk5.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk5.symanzik.2.sample-out index 26693c7ba..c259751f4 100644 --- a/wilson_flow/test/wilson_flow_rkmk5.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:13 2021 +start: Fri Oct 28 18:41:04 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 2.5 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.019001e-03 +Time to reload gauge configuration = 3.008842e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.191067e-04 +Time to check unitarity = 2.748966e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.8537916210261531 0.8287360294796184 2.375609707049246 2.362249970407575 1.802838126616738 1.775953989958998 0.04679868483046359 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.05093403375201892 0.034547383492764 2.992687980195416 2.989495035 GFLOW: 0.9375 0.04604075682943066 0.0306390310636108 2.993641288724249 2.990648166237202 2.97715848982014 2.966113638147803 0.0002565770102453649 GFLOW: 1 0.04193647984013806 0.02742566727590413 2.994408600370921 2.991596921180119 2.979741439396236 2.969345425216337 0.0001064334786541582 Number of steps = 16 -Time to complete flow = 6.534541e-01 seconds +Time to complete flow = 8.493240e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 6.592181e-01 seconds -exit: Tue Jan 5 19:01:14 2021 +Time = 8.509991e-01 seconds +exit: Fri Oct 28 18:41:05 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5.wilson.1.errtol b/wilson_flow/test/wilson_flow_rkmk5.wilson.1.errtol new file mode 100644 index 000000000..b12aa37bc --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk5.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0004 0.0004 0.0003 0.0003 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk5.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk5.wilson.1.sample-out index 5e2f21148..948bed374 100644 --- a/wilson_flow/test/wilson_flow_rkmk5.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:07 2021 +start: Fri Oct 28 18:41:03 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.3 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.870197e-04 +Time to reload gauge configuration = 2.100468e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 2.708435e-04 +Time to check unitarity = 7.009506e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.905713 0.879583 2.21652 2.19724 1.61673 1.58364 0.0556855 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.0613465 0.0426987 2.99027 2.98658 2.96661 2.95314 0.00101775 GFLOW: 0.9375 0.0548451 0.0373396 2.99171 2.98826 2.97119 2.95856 0.000714267 GFLOW: 1 0.0494367 0.0329769 2.99285 2.98961 2.97487 2.96299 0.000479999 Number of steps = 16 -Time to complete flow = 2.308869e-01 seconds +Time to complete flow = 2.661700e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.365119e-01 seconds -exit: Tue Jan 5 19:00:07 2021 +Time = 2.673049e-01 seconds +exit: Fri Oct 28 18:41:03 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5.wilson.2.errtol b/wilson_flow/test/wilson_flow_rkmk5.wilson.2.errtol new file mode 100644 index 000000000..7ea772603 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk5.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 4e-08 4e-08 3e-08 3e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk5.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk5.wilson.2.sample-out index 3ba2d50c1..ee7705678 100644 --- a/wilson_flow/test/wilson_flow_rkmk5.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:14 2021 +start: Fri Oct 28 18:41:03 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 2.5 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.768040e-04 +Time to reload gauge configuration = 3.011227e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.188683e-04 +Time to check unitarity = 2.741814e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.9057125954469835 0.8795832297394959 2.216521950718044 2.197236731900541 1.616728448310817 1.583639082900349 0.05568554956644499 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.06134651460744035 0.04269872817078881 2.990270596682987 2.9865842 GFLOW: 0.9375 0.05484508170978916 0.03733958757568642 2.99171405580515 2.98826037886574 2.971192963493969 2.95855535915969 0.0007142712182310926 GFLOW: 1 0.04943665598553126 0.03297693695049054 2.992853380295785 2.989614726329019 2.974867479455541 2.962993286862163 0.0004799966761454965 Number of steps = 16 -Time to complete flow = 2.263842e-01 seconds +Time to complete flow = 2.837920e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.281160e-01 seconds -exit: Tue Jan 5 19:01:14 2021 +Time = 2.855041e-01 seconds +exit: Fri Oct 28 18:41:03 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.errtol new file mode 100644 index 000000000..867204b69 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.sample-out index e0e97e3b5..2546cff73 100644 --- a/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 14:31:56 2022 +start: Fri Oct 28 18:41:05 2022 Options selected... Generic single precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.009869e-04 +Time to reload gauge configuration = 2.021790e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.985664e-05 +Time to check unitarity = 6.914139e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.681253 0.690555 2.4957 2.65877 2.01844 2.20497 -0.00363664 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0229062 0.0244971 2.99466 2.99549 2.98126 2.98338 0.000872919 GFLOW: 0.9375 0.0203894 0.021362 2.99544 2.99603 2.98384 2.98529 0.000661833 GFLOW: 1 0.0182649 0.018768 2.99607 2.99647 2.98594 2.98688 0.000497996 Number of steps = 16 -Time to complete flow = 7.841921e-01 seconds +Time to complete flow = 7.859840e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 7.853050e-01 seconds -exit: Thu Oct 27 14:31:57 2022 +Time = 7.870929e-01 seconds +exit: Fri Oct 28 18:41:06 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.errtol new file mode 100644 index 000000000..efbf1dccc --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.sample-out index bfaf6a821..92e5e02fb 100644 --- a/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 14:31:57 2022 +start: Fri Oct 28 18:41:06 2022 Options selected... Generic double precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 3.077984e-04 +Time to reload gauge configuration = 3.118515e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.760887e-04 +Time to check unitarity = 2.770424e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.6812527301363549 0.6905552748723999 2.495698739073275 2.658766238316276 2.018442270126926 2.204974840882857 -0.003636599144172505 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.02290615567978586 0.02449707964957822 2.994660920433495 2.9954922 GFLOW: 0.9375 0.02038938365696562 0.02136198032000602 2.995440777621027 2.996028197164418 2.983836099751037 2.985286502934693 0.000661831751909048 GFLOW: 1 0.01826490036510634 0.01876797305344752 2.996071189292538 2.996474935931299 2.985940476473617 2.986882362045059 0.0004979980974827798 Number of steps = 16 -Time to complete flow = 8.517020e-01 seconds +Time to complete flow = 8.675370e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 8.534141e-01 seconds -exit: Thu Oct 27 14:31:57 2022 +Time = 8.692689e-01 seconds +exit: Fri Oct 28 18:41:07 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.errtol new file mode 100644 index 000000000..63a791fb2 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.sample-out index 8fb86b2ae..0db0ec2b4 100644 --- a/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 14:31:55 2022 +start: Fri Oct 28 18:41:05 2022 Options selected... Generic single precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.938343e-04 +Time to reload gauge configuration = 2.040863e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.794930e-05 +Time to check unitarity = 6.985664e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.76965 0.763296 2.34828 2.51099 1.82604 1.98753 0.0085606 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.026245 0.0296285 2.99299 2.99463 2.97636 2.98057 0.00123184 GFLOW: 0.9375 0.0231964 0.0255852 2.9941 2.99532 2.97986 2.98294 0.000974591 GFLOW: 1 0.020646 0.0222662 2.99499 2.99588 2.98269 2.98491 0.000763732 Number of steps = 16 -Time to complete flow = 2.621429e-01 seconds +Time to complete flow = 2.658291e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.632439e-01 seconds -exit: Thu Oct 27 14:31:55 2022 +Time = 2.669339e-01 seconds +exit: Fri Oct 28 18:41:05 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.errtol new file mode 100644 index 000000000..8e6cbfe2d --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.sample-out index c89cf47d6..3bf6b406f 100644 --- a/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 14:31:55 2022 +start: Fri Oct 28 18:41:05 2022 Options selected... Generic double precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.958775e-04 +Time to reload gauge configuration = 3.030300e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.760887e-04 +Time to check unitarity = 2.779961e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.7696498222965087 0.7632962094654938 2.348277997999302 2.510988313889286 1.826041643730268 1.987532742061868 0.008560598649514315 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.02624503940823876 0.02962849636547601 2.992988959015394 2.9946306 GFLOW: 0.9375 0.02319643646465528 0.02558518121058089 2.994102237121271 2.995316951170325 2.979861942024433 2.982943829224013 0.0009745941073566883 GFLOW: 1 0.02064601327111625 0.02226623502192059 2.994989121221476 2.995881183253729 2.982690117764371 2.984912716147716 0.0007637315772545068 Number of steps = 16 -Time to complete flow = 2.838891e-01 seconds +Time to complete flow = 2.896969e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.855361e-01 seconds -exit: Thu Oct 27 14:31:56 2022 +Time = 2.913930e-01 seconds +exit: Fri Oct 28 18:41:05 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8.symanzik.1.errtol b/wilson_flow/test/wilson_flow_rkmk8.symanzik.1.errtol new file mode 100644 index 000000000..4f3682170 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk8.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk8.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk8.symanzik.1.sample-out index c82ede76c..9a6ada288 100644 --- a/wilson_flow/test/wilson_flow_rkmk8.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:07 2021 +start: Fri Oct 28 18:49:05 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.9 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.898808e-04 +Time to reload gauge configuration = 2.021790e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 2.698898e-04 +Time to check unitarity = 6.914139e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.853797 0.828744 2.37571 2.36235 1.8029 1.77602 0.0468073 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.0509338 0.0345472 2.99269 2.9895 2.97398 2.96222 0.000456368 GFLOW: 0.9375 0.0460406 0.0306389 2.99364 2.99065 2.97716 2.96611 0.000256579 GFLOW: 1 0.0419363 0.0274255 2.99441 2.9916 2.97974 2.96935 0.00010644 Number of steps = 16 -Time to complete flow = 1.352756e+00 seconds +Time to complete flow = 1.718070e+00 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.359137e+00 seconds -exit: Tue Jan 5 19:00:08 2021 +Time = 1.719296e+00 seconds +exit: Fri Oct 28 18:49:06 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8.symanzik.2.errtol b/wilson_flow/test/wilson_flow_rkmk8.symanzik.2.errtol new file mode 100644 index 000000000..1d1252a22 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk8.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk8.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk8.symanzik.2.sample-out index 92f070a15..6a8c6748a 100644 --- a/wilson_flow/test/wilson_flow_rkmk8.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:14 2021 +start: Fri Oct 28 18:49:06 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 3.7 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.265049e-03 +Time to reload gauge configuration = 2.980232e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.065016e-03 +Time to check unitarity = 2.770424e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.853796999827394 0.8287444679533847 2.375709522214786 2.362348694211784 1.802901098815517 1.77602092305045 0.04680726497697795 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.05093380257879877 0.03454718605595396 2.992688028340035 2.9894950 GFLOW: 0.9375 0.04604056393294855 0.03063886819544278 2.993641327413877 2.990648211241214 2.977158620258511 2.966113790627775 0.0002565799129663199 GFLOW: 1 0.04193631709634497 0.02742553119646989 2.99440863194398 2.991596958414653 2.979741547043779 2.969345552574713 0.0001064363488566213 Number of steps = 16 -Time to complete flow = 1.419900e+00 seconds +Time to complete flow = 1.803812e+00 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.428019e+00 seconds -exit: Tue Jan 5 19:01:16 2021 +Time = 1.805495e+00 seconds +exit: Fri Oct 28 18:49:08 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8.wilson.1.errtol b/wilson_flow/test/wilson_flow_rkmk8.wilson.1.errtol new file mode 100644 index 000000000..b12aa37bc --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk8.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0004 0.0004 0.0003 0.0003 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk8.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk8.wilson.1.sample-out index e0fe01a72..7e492fca2 100644 --- a/wilson_flow/test/wilson_flow_rkmk8.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:00:09 2021 +start: Fri Oct 28 18:49:04 2022 Options selected... Generic single precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 1.9 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 7.708073e-04 +Time to reload gauge configuration = 2.100468e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 2.970695e-04 +Time to check unitarity = 6.914139e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.905713 0.879584 2.21653 2.19724 1.61673 1.58365 0.055686 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.0613465 0.0426987 2.99027 2.98658 2.96661 2.95314 0.00101775 GFLOW: 0.9375 0.054845 0.0373396 2.99171 2.98826 2.97119 2.95856 0.000714269 GFLOW: 1 0.0494366 0.0329769 2.99285 2.98961 2.97487 2.96299 0.000479994 Number of steps = 16 -Time to complete flow = 4.588401e-01 seconds +Time to complete flow = 5.512750e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.652209e-01 seconds -exit: Tue Jan 5 19:00:09 2021 +Time = 5.525560e-01 seconds +exit: Fri Oct 28 18:49:04 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8.wilson.2.errtol b/wilson_flow/test/wilson_flow_rkmk8.wilson.2.errtol new file mode 100644 index 000000000..7ea772603 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk8.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 4e-08 4e-08 3e-08 3e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk8.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk8.wilson.2.sample-out index f4fca586d..ec534abc2 100644 --- a/wilson_flow/test/wilson_flow_rkmk8.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 -Machine = MPI (portable), with 1 nodes -Host(0) = computer +Machine = Scalar processor, with 1 nodes +Host(0) = deviceab Username = bazavov -start: Tue Jan 5 19:01:16 2021 +start: Fri Oct 28 18:49:04 2022 Options selected... Generic double precision @@ -13,8 +13,7 @@ nx 4 ny 4 nz 4 nt 8 -LAYOUT = Hypercubes, options = hyper_prime, -automatic hyper_prime layout +LAYOUT = Hypercubes, options = with fixed input-parameter node_geometry ON EACH NODE (RANK) 4 x 4 x 4 x 8 Mallocing 3.7 MBytes per node for lattice Made lattice @@ -33,11 +32,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.267910e-03 +Time to reload gauge configuration = 2.958775e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 1.092911e-03 +Time to check unitarity = 2.760887e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.9057128352538293 0.8795836111703303 2.216530220464609 2.197244845077935 1.616734190614243 1.583644992779119 0.05568598814331142 @@ -57,11 +56,11 @@ GFLOW: 0.875 0.06134646509096026 0.04269868692576386 2.990270609102761 2.9865842 GFLOW: 0.9375 0.05484504130986963 0.03733955477913426 2.991714065133391 2.98826038974343 2.971192992276282 2.958555393474064 0.0007142705479596382 GFLOW: 1 0.04943662256222567 0.03297691047243369 2.99285338748525 2.989614734947725 2.974867502161272 2.962993314648029 0.0004799961967829997 Number of steps = 16 -Time to complete flow = 4.822879e-01 seconds +Time to complete flow = 5.865788e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.903991e-01 seconds -exit: Tue Jan 5 19:01:16 2021 +Time = 5.882661e-01 seconds +exit: Fri Oct 28 18:49:05 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.errtol new file mode 100644 index 000000000..867204b69 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.sample-out index afdc0affc..1db2b9e9b 100644 --- a/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 14:39:05 2022 +start: Fri Oct 28 18:49:09 2022 Options selected... Generic single precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.990795e-04 +Time to reload gauge configuration = 2.048016e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.985664e-05 +Time to check unitarity = 6.890297e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.681242 0.690266 2.49734 2.66172 2.02001 2.20716 -0.00336156 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0229028 0.024494 2.99466 2.99549 2.98126 2.98339 0.000873038 GFLOW: 0.9375 0.0203866 0.0213595 2.99544 2.99603 2.98384 2.98529 0.000661906 GFLOW: 1 0.0182625 0.018766 2.99607 2.99648 2.98594 2.98688 0.00049805 Number of steps = 16 -Time to complete flow = 1.728028e+00 seconds +Time to complete flow = 1.696417e+00 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.729330e+00 seconds -exit: Thu Oct 27 14:39:07 2022 +Time = 1.697658e+00 seconds +exit: Fri Oct 28 18:49:11 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.errtol new file mode 100644 index 000000000..efbf1dccc --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.sample-out index f80f32747..a9f6a634f 100644 --- a/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 14:39:07 2022 +start: Fri Oct 28 18:49:11 2022 Options selected... Generic double precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.899170e-04 +Time to reload gauge configuration = 2.911091e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.768040e-04 +Time to check unitarity = 2.791882e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.6812418021180373 0.6902660737443257 2.497344697303779 2.661715780682546 2.020007201180281 2.207163533522014 -0.003361552990312081 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.02290279218976056 0.02449400208348012 2.994661741141854 2.9954929 GFLOW: 0.9375 0.02038655844068718 0.02135954844244257 2.9954414146746 2.996028812484237 2.983838162077932 2.985288667401218 0.0006619062106640302 GFLOW: 1 0.01826249954510382 0.01876604019145745 2.996071687201424 2.996475450195106 2.985942100812565 2.986884185023936 0.0004980499037072802 Number of steps = 16 -Time to complete flow = 1.825555e+00 seconds +Time to complete flow = 1.809931e+00 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.827251e+00 seconds -exit: Thu Oct 27 14:39:09 2022 +Time = 1.811605e+00 seconds +exit: Fri Oct 28 18:49:13 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.errtol new file mode 100644 index 000000000..63a791fb2 --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.sample-out index 3309e8dad..9660b1524 100644 --- a/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 14:39:04 2022 +start: Fri Oct 28 18:49:08 2022 Options selected... Generic single precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.950264e-04 +Time to reload gauge configuration = 2.069473e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 8.106232e-05 +Time to check unitarity = 6.914139e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 GFLOW: 0.0625 0.76966 0.763254 2.34847 2.51129 1.82623 1.98777 0.00857575 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.0262448 0.0296282 2.99299 2.99463 2.97636 2.98057 0.00123183 GFLOW: 0.9375 0.0231962 0.0255849 2.9941 2.99532 2.97986 2.98294 0.000974579 GFLOW: 1 0.0206458 0.022266 2.99499 2.99588 2.98269 2.98491 0.000763722 Number of steps = 16 -Time to complete flow = 5.623939e-01 seconds +Time to complete flow = 5.576661e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.636470e-01 seconds -exit: Thu Oct 27 14:39:05 2022 +Time = 5.589211e-01 seconds +exit: Fri Oct 28 18:49:09 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.errtol new file mode 100644 index 000000000..8e6cbfe2d --- /dev/null +++ b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.errtol @@ -0,0 +1,17 @@ +GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.sample-out index 0cfaf90e6..8a2759378 100644 --- a/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.sample-out @@ -1,9 +1,9 @@ Wilson/Symanzik Flow application MIMD version 7 Machine = Scalar processor, with 1 nodes -Host(0) = computer +Host(0) = deviceab Username = bazavov -start: Thu Oct 27 14:39:05 2022 +start: Fri Oct 28 18:49:09 2022 Options selected... Generic double precision @@ -33,11 +33,11 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 3.108978e-04 +Time to reload gauge configuration = 3.180504e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.770424e-04 +Time to check unitarity = 2.760887e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 GFLOW: 0.0625 0.7696603796116908 0.7632535021238461 2.348466063984455 2.511293190836414 1.826235001739149 1.987771962562682 0.008575744180029276 @@ -57,11 +57,11 @@ GFLOW: 0.875 0.02624478213556808 0.02962818797598335 2.992989050275572 2.9946307 GFLOW: 0.9375 0.02319622482194006 0.02558493679604207 2.994102307277334 2.995316999268592 2.979862159031156 2.982943995007651 0.0009745787323062832 GFLOW: 1 0.02064583680682874 0.02226603935201163 2.994989175875793 2.995881222566901 2.982690289040906 2.984912852904781 0.000763717897752422 Number of steps = 16 -Time to complete flow = 5.953681e-01 seconds +Time to complete flow = 5.878210e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.970681e-01 seconds -exit: Thu Oct 27 14:39:05 2022 +Time = 5.895090e-01 seconds +exit: Fri Oct 28 18:49:09 2022 From ab3874ca9480e7ed4eb45e252416cabfc624d766 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Fri, 28 Oct 2022 19:44:18 -0400 Subject: [PATCH 47/49] Minor cleanup --- wilson_flow/Make_test | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 wilson_flow/Make_test diff --git a/wilson_flow/Make_test b/wilson_flow/Make_test deleted file mode 100644 index d4cf03126..000000000 --- a/wilson_flow/Make_test +++ /dev/null @@ -1,30 +0,0 @@ -# Makefile for testing code by comparing test output with sample output -# For ks_imp_dyn - -#------------------------------------------------------------ -# Examples: - -# make -f Make_test check -# or, for a specific project or projects -# make -f Make_test "PROJS=su3_rmd" check - -# Edit the Makefile for the appropriate architecture and the file -# ../Make_test_template to select the appropriate LAUNCH. - -# Results are in the files out.test.diff.* -#------------------------------------------------------------ - -# For comparing test output with sample output - -PROJS = \ - gauge_modify_su3 - -PRECLIST = 1 - -PATTERNS = WARMUPS RUNNING - -include ../Make_test_template - -check: test - -clean: test_clean From 54cb67c2ce4913de2dd377225e6f726dcc2b79c0 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Tue, 1 Nov 2022 11:56:02 -0400 Subject: [PATCH 48/49] Fixed the order of temporal/spatial plaquette and rectangle in the output, updated the tests --- wilson_flow/fmunu.c | 6 +-- .../test/wilson_flow.symanzik.1.sample-out | 44 ++++++++-------- .../test/wilson_flow.symanzik.2.sample-out | 46 ++++++++--------- .../test/wilson_flow.wilson.1.sample-out | 46 ++++++++--------- .../test/wilson_flow.wilson.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_a.symanzik.1.errtol | 2 +- .../test/wilson_flow_a.symanzik.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_a.symanzik.2.errtol | 2 +- .../test/wilson_flow_a.symanzik.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_a.wilson.1.errtol | 4 +- .../test/wilson_flow_a.wilson.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_a.wilson.2.errtol | 4 +- .../test/wilson_flow_a.wilson.2.sample-out | 44 ++++++++-------- .../wilson_flow_adpt.symanzik.1.sample-out | 34 ++++++------- .../wilson_flow_adpt.symanzik.2.sample-out | 34 ++++++------- .../test/wilson_flow_adpt.wilson.1.errtol | 32 ++++++------ .../test/wilson_flow_adpt.wilson.1.sample-out | 28 +++++------ .../test/wilson_flow_adpt.wilson.2.sample-out | 28 +++++------ .../test/wilson_flow_adpt_a.symanzik.1.errtol | 6 +-- .../wilson_flow_adpt_a.symanzik.1.sample-out | 48 +++++++++--------- .../test/wilson_flow_adpt_a.symanzik.2.errtol | 6 +-- .../wilson_flow_adpt_a.symanzik.2.sample-out | 48 +++++++++--------- .../test/wilson_flow_adpt_a.wilson.1.errtol | 4 +- .../wilson_flow_adpt_a.wilson.1.sample-out | 34 ++++++------- .../test/wilson_flow_adpt_a.wilson.2.errtol | 4 +- .../wilson_flow_adpt_a.wilson.2.sample-out | 34 ++++++------- .../wilson_flow_adpt_bs.symanzik.1.sample-out | 34 ++++++------- .../wilson_flow_adpt_bs.symanzik.2.sample-out | 34 ++++++------- .../wilson_flow_adpt_bs.wilson.1.sample-out | 26 +++++----- .../wilson_flow_adpt_bs.wilson.2.sample-out | 24 ++++----- .../wilson_flow_adpt_bs_a.symanzik.1.errtol | 2 +- ...ilson_flow_adpt_bs_a.symanzik.1.sample-out | 50 +++++++++---------- .../wilson_flow_adpt_bs_a.symanzik.2.errtol | 2 +- ...ilson_flow_adpt_bs_a.symanzik.2.sample-out | 50 +++++++++---------- .../wilson_flow_adpt_bs_a.wilson.1.errtol | 4 +- .../wilson_flow_adpt_bs_a.wilson.1.sample-out | 36 ++++++------- .../wilson_flow_adpt_bs_a.wilson.2.errtol | 4 +- .../wilson_flow_adpt_bs_a.wilson.2.sample-out | 36 ++++++------- ...wilson_flow_adpt_cf3.symanzik.1.sample-out | 34 ++++++------- ...wilson_flow_adpt_cf3.symanzik.2.sample-out | 34 ++++++------- .../wilson_flow_adpt_cf3.wilson.1.sample-out | 28 +++++------ .../wilson_flow_adpt_cf3.wilson.2.sample-out | 28 +++++------ .../wilson_flow_adpt_cf3_a.symanzik.1.errtol | 6 +-- ...lson_flow_adpt_cf3_a.symanzik.1.sample-out | 48 +++++++++--------- .../wilson_flow_adpt_cf3_a.symanzik.2.errtol | 6 +-- ...lson_flow_adpt_cf3_a.symanzik.2.sample-out | 48 +++++++++--------- .../wilson_flow_adpt_cf3_a.wilson.1.errtol | 4 +- ...wilson_flow_adpt_cf3_a.wilson.1.sample-out | 34 ++++++------- .../wilson_flow_adpt_cf3_a.wilson.2.errtol | 4 +- ...wilson_flow_adpt_cf3_a.wilson.2.sample-out | 34 ++++++------- .../wilson_flow_bbb.symanzik.1.sample-out | 44 ++++++++-------- .../wilson_flow_bbb.symanzik.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_bbb.wilson.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_bbb.wilson.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_bbb_a.symanzik.1.errtol | 2 +- .../wilson_flow_bbb_a.symanzik.1.sample-out | 44 ++++++++-------- .../test/wilson_flow_bbb_a.symanzik.2.errtol | 2 +- .../wilson_flow_bbb_a.symanzik.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_bbb_a.wilson.1.errtol | 4 +- .../wilson_flow_bbb_a.wilson.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_bbb_a.wilson.2.errtol | 4 +- .../wilson_flow_bbb_a.wilson.2.sample-out | 46 ++++++++--------- .../wilson_flow_cf3.symanzik.1.sample-out | 44 ++++++++-------- .../wilson_flow_cf3.symanzik.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_cf3.wilson.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_cf3.wilson.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_cf3_a.symanzik.1.errtol | 4 +- .../wilson_flow_cf3_a.symanzik.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_cf3_a.symanzik.2.errtol | 4 +- .../wilson_flow_cf3_a.symanzik.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_cf3_a.wilson.1.errtol | 4 +- .../wilson_flow_cf3_a.wilson.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_cf3_a.wilson.2.errtol | 4 +- .../wilson_flow_cf3_a.wilson.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_ck.symanzik.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_ck.symanzik.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_ck.wilson.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_ck.wilson.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_ck_a.symanzik.1.errtol | 2 +- .../wilson_flow_ck_a.symanzik.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_ck_a.symanzik.2.errtol | 2 +- .../wilson_flow_ck_a.symanzik.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_ck_a.wilson.1.errtol | 4 +- .../test/wilson_flow_ck_a.wilson.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_ck_a.wilson.2.errtol | 4 +- .../test/wilson_flow_ck_a.wilson.2.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk3.symanzik.1.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk3.symanzik.2.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk3.wilson.1.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk3.wilson.2.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk3_a.symanzik.1.errtol | 2 +- .../wilson_flow_rkmk3_a.symanzik.1.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk3_a.symanzik.2.errtol | 2 +- .../wilson_flow_rkmk3_a.symanzik.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_rkmk3_a.wilson.1.errtol | 4 +- .../wilson_flow_rkmk3_a.wilson.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_rkmk3_a.wilson.2.errtol | 4 +- .../wilson_flow_rkmk3_a.wilson.2.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk4.symanzik.1.sample-out | 44 ++++++++-------- .../wilson_flow_rkmk4.symanzik.2.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk4.wilson.1.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk4.wilson.2.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk4_a.symanzik.1.errtol | 2 +- .../wilson_flow_rkmk4_a.symanzik.1.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk4_a.symanzik.2.errtol | 2 +- .../wilson_flow_rkmk4_a.symanzik.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_rkmk4_a.wilson.1.errtol | 4 +- .../wilson_flow_rkmk4_a.wilson.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_rkmk4_a.wilson.2.errtol | 4 +- .../wilson_flow_rkmk4_a.wilson.2.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk5.symanzik.1.sample-out | 44 ++++++++-------- .../wilson_flow_rkmk5.symanzik.2.sample-out | 44 ++++++++-------- .../wilson_flow_rkmk5.wilson.1.sample-out | 44 ++++++++-------- .../wilson_flow_rkmk5.wilson.2.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk5_a.symanzik.1.errtol | 2 +- .../wilson_flow_rkmk5_a.symanzik.1.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk5_a.symanzik.2.errtol | 2 +- .../wilson_flow_rkmk5_a.symanzik.2.sample-out | 44 ++++++++-------- .../test/wilson_flow_rkmk5_a.wilson.1.errtol | 4 +- .../wilson_flow_rkmk5_a.wilson.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_rkmk5_a.wilson.2.errtol | 4 +- .../wilson_flow_rkmk5_a.wilson.2.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk8.symanzik.1.sample-out | 44 ++++++++-------- .../wilson_flow_rkmk8.symanzik.2.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk8.wilson.1.sample-out | 46 ++++++++--------- .../test/wilson_flow_rkmk8.wilson.2.errtol | 34 ++++++------- .../wilson_flow_rkmk8.wilson.2.sample-out | 46 ++++++++--------- .../wilson_flow_rkmk8_a.symanzik.1.errtol | 2 +- .../wilson_flow_rkmk8_a.symanzik.1.sample-out | 44 ++++++++-------- .../wilson_flow_rkmk8_a.symanzik.2.errtol | 2 +- .../wilson_flow_rkmk8_a.symanzik.2.sample-out | 46 ++++++++--------- .../test/wilson_flow_rkmk8_a.wilson.1.errtol | 4 +- .../wilson_flow_rkmk8_a.wilson.1.sample-out | 44 ++++++++-------- .../test/wilson_flow_rkmk8_a.wilson.2.errtol | 4 +- .../wilson_flow_rkmk8_a.wilson.2.sample-out | 46 ++++++++--------- 135 files changed, 2004 insertions(+), 2004 deletions(-) diff --git a/wilson_flow/fmunu.c b/wilson_flow/fmunu.c index ac1ea7036..9d19318c1 100644 --- a/wilson_flow/fmunu.c +++ b/wilson_flow/fmunu.c @@ -77,10 +77,10 @@ fmunu_fmunu( double *time, double *space, double *charge ) /* Compute loops: 1x1 -- plaquette, 1x2 + 2x1 -- rectangle for Wilson (one-plaquette) and Symanzik tree-level (plaquette and rectangle) action, - spatial and temporal part separately */ + temporal and spatial part separately */ void -gauge_action_w_s( double *wl1x1s, double *wl1x1t, - double *wl1x2s, double *wl1x2t ) { +gauge_action_w_s( double *wl1x1t, double *wl1x1s, + double *wl1x2t, double *wl1x2s ) { #define NTEMP_STORAGE 6 register int i, dir1, dir2; diff --git a/wilson_flow/test/wilson_flow.symanzik.1.sample-out b/wilson_flow/test/wilson_flow.symanzik.1.sample-out index 71dabb1a8..ec1953f14 100644 --- a/wilson_flow/test/wilson_flow.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 16:42:17 2022 +start: Mon Oct 31 14:58:55 2022 Options selected... Generic single precision @@ -36,31 +36,31 @@ Time to reload gauge configuration = 2.000332e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.914139e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.854375 0.829395 2.37618 2.36268 1.8023 1.77541 0.0472255 -GFLOW: 0.125 0.607297 0.583634 2.68539 2.68053 2.29016 2.27337 0.0232906 -GFLOW: 0.1875 0.424347 0.398777 2.82903 2.82518 2.56851 2.55221 0.0153032 -GFLOW: 0.25 0.305483 0.277945 2.89913 2.89473 2.72367 2.70586 0.0124005 -GFLOW: 0.3125 0.228908 0.20082 2.93569 2.93084 2.81268 2.79394 0.010123 -GFLOW: 0.375 0.177994 0.150526 2.95616 2.95117 2.86627 2.84746 0.00788821 -GFLOW: 0.4375 0.142745 0.11655 2.96845 2.96353 2.90028 2.88201 0.00591792 -GFLOW: 0.5 0.117393 0.0927492 2.97629 2.97157 2.92296 2.90556 0.00433489 -GFLOW: 0.5625 0.0985555 0.0755244 2.98156 2.97709 2.93873 2.92235 0.00312764 -GFLOW: 0.625 0.0841774 0.0627063 2.98525 2.98107 2.95012 2.93477 0.00223009 -GFLOW: 0.6875 0.0729572 0.0529411 2.98794 2.98403 2.95858 2.94423 0.00156921 -GFLOW: 0.75 0.0640376 0.045353 2.98995 2.9863 2.96502 2.95161 0.00108288 -GFLOW: 0.8125 0.0568333 0.0393561 2.99149 2.98807 2.97002 2.95748 0.000723537 -GFLOW: 0.875 0.0509329 0.0345465 2.99269 2.9895 2.97398 2.96222 0.000456401 -GFLOW: 0.9375 0.0460398 0.0306385 2.99364 2.99065 2.97716 2.96611 0.000256605 -GFLOW: 1 0.0419356 0.0274253 2.99441 2.9916 2.97974 2.96935 0.000106462 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.854375 0.829395 2.36268 2.37618 1.77541 1.8023 0.0472255 +GFLOW: 0.125 0.607297 0.583634 2.68053 2.68539 2.27337 2.29016 0.0232906 +GFLOW: 0.1875 0.424347 0.398777 2.82518 2.82903 2.55221 2.56851 0.0153032 +GFLOW: 0.25 0.305483 0.277945 2.89473 2.89913 2.70586 2.72367 0.0124005 +GFLOW: 0.3125 0.228908 0.20082 2.93084 2.93569 2.79394 2.81268 0.010123 +GFLOW: 0.375 0.177994 0.150526 2.95117 2.95616 2.84746 2.86627 0.00788821 +GFLOW: 0.4375 0.142745 0.11655 2.96353 2.96845 2.88201 2.90028 0.00591792 +GFLOW: 0.5 0.117393 0.0927492 2.97157 2.97629 2.90556 2.92296 0.00433489 +GFLOW: 0.5625 0.0985555 0.0755244 2.97709 2.98156 2.92235 2.93873 0.00312764 +GFLOW: 0.625 0.0841774 0.0627063 2.98107 2.98525 2.93477 2.95012 0.00223009 +GFLOW: 0.6875 0.0729572 0.0529411 2.98403 2.98794 2.94423 2.95858 0.00156921 +GFLOW: 0.75 0.0640376 0.045353 2.9863 2.98995 2.95161 2.96502 0.00108288 +GFLOW: 0.8125 0.0568333 0.0393561 2.98807 2.99149 2.95748 2.97002 0.000723537 +GFLOW: 0.875 0.0509329 0.0345465 2.9895 2.99269 2.96222 2.97398 0.000456401 +GFLOW: 0.9375 0.0460398 0.0306385 2.99065 2.99364 2.96611 2.97716 0.000256605 +GFLOW: 1 0.0419356 0.0274253 2.9916 2.99441 2.96935 2.97974 0.000106462 Number of steps = 16 -Time to complete flow = 3.713319e-01 seconds +Time to complete flow = 3.673191e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.722730e-01 seconds -exit: Fri Oct 28 16:42:17 2022 +Time = 3.682561e-01 seconds +exit: Mon Oct 31 14:58:55 2022 diff --git a/wilson_flow/test/wilson_flow.symanzik.2.sample-out b/wilson_flow/test/wilson_flow.symanzik.2.sample-out index d36c1d305..5b211583d 100644 --- a/wilson_flow/test/wilson_flow.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 16:42:17 2022 +start: Mon Oct 31 14:58:55 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.150536e-04 +Time to reload gauge configuration = 2.090931e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.739429e-04 +Time to check unitarity = 2.758503e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.8543748488315552 0.8293947648705751 2.376179304698458 2.362677101758874 1.802304115569335 1.775411064068106 0.04722547316371967 -GFLOW: 0.125 0.607296732005826 0.583634030515743 2.685386163777981 2.680527317794402 2.290155760576929 2.273370299644372 0.02329054038883645 -GFLOW: 0.1875 0.424346914969508 0.398777176668798 2.829029548444025 2.825180755353612 2.568505309536181 2.552213406175068 0.01530322134500398 -GFLOW: 0.25 0.3054830745527156 0.2779451337352716 2.899132697478956 2.894732870665771 2.723672463682794 2.705855811093686 0.01240047069847497 -GFLOW: 0.3125 0.2289075986696237 0.2008195858893897 2.935686911031598 2.930843784563374 2.812679074146463 2.79393810197508 0.01012296017063545 -GFLOW: 0.375 0.1779941179405538 0.1505257177249438 2.956162885645582 2.951173141766001 2.866269823240481 2.847464846379687 0.007888198958358414 -GFLOW: 0.4375 0.1427453109661756 0.1165495351757126 2.968449003526571 2.963530728687906 2.900280682119246 2.88201391134504 0.005917924755511772 -GFLOW: 0.5 0.1173930477397642 0.09274914305917904 2.97628702949801 2.971566184115716 2.922955165595177 2.9055578989782 0.004334884670204418 -GFLOW: 0.5625 0.09855547921308999 0.07552442955003591 2.981555115073407 2.977091784182832 2.938734312273377 2.922347847436767 0.003127635812480354 -GFLOW: 0.625 0.08417735434996666 0.06270631676714256 2.985251982487954 2.981065693164012 2.950117238929032 2.934768340128928 0.002230094133999229 -GFLOW: 0.6875 0.07295719890145635 0.0529410944085849 2.987939075683805 2.98402672259278 2.958576222594195 2.94422974032048 0.001569209632452986 -GFLOW: 0.75 0.0640375622899487 0.04535299482269756 2.989948801398805 2.986295912398262 2.965018005099284 2.95160941527986 0.001082884959947411 -GFLOW: 0.8125 0.05683329443880113 0.03935610083939756 2.991487453707733 2.98807475863344 2.970024431615372 2.957478471540453 0.000723537308480697 -GFLOW: 0.875 0.0509329296473873 0.03454650834311609 2.992688534541917 2.989495558752868 2.973982813719553 2.96222344775222 0.0004564043284416487 -GFLOW: 0.9375 0.04603982348521207 0.03063847099215955 2.993641647248294 2.990648540586426 2.977159335473908 2.966114645475173 0.0002566117660345612 -GFLOW: 1 0.0419356489459576 0.02742531139858422 2.994408837275467 2.991597206925263 2.979741995823919 2.969346241070383 0.0001064621400328506 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.8543748488315552 0.8293947648705751 2.362677101758874 2.376179304698458 1.775411064068106 1.802304115569335 0.04722547316371967 +GFLOW: 0.125 0.607296732005826 0.583634030515743 2.680527317794402 2.685386163777981 2.273370299644372 2.290155760576929 0.02329054038883645 +GFLOW: 0.1875 0.424346914969508 0.398777176668798 2.825180755353612 2.829029548444025 2.552213406175068 2.568505309536181 0.01530322134500398 +GFLOW: 0.25 0.3054830745527156 0.2779451337352716 2.894732870665771 2.899132697478956 2.705855811093686 2.723672463682794 0.01240047069847497 +GFLOW: 0.3125 0.2289075986696237 0.2008195858893897 2.930843784563374 2.935686911031598 2.79393810197508 2.812679074146463 0.01012296017063545 +GFLOW: 0.375 0.1779941179405538 0.1505257177249438 2.951173141766001 2.956162885645582 2.847464846379687 2.866269823240481 0.007888198958358414 +GFLOW: 0.4375 0.1427453109661756 0.1165495351757126 2.963530728687906 2.968449003526571 2.88201391134504 2.900280682119246 0.005917924755511772 +GFLOW: 0.5 0.1173930477397642 0.09274914305917904 2.971566184115716 2.97628702949801 2.9055578989782 2.922955165595177 0.004334884670204418 +GFLOW: 0.5625 0.09855547921308999 0.07552442955003591 2.977091784182832 2.981555115073407 2.922347847436767 2.938734312273377 0.003127635812480354 +GFLOW: 0.625 0.08417735434996666 0.06270631676714256 2.981065693164012 2.985251982487954 2.934768340128928 2.950117238929032 0.002230094133999229 +GFLOW: 0.6875 0.07295719890145635 0.0529410944085849 2.98402672259278 2.987939075683805 2.94422974032048 2.958576222594195 0.001569209632452986 +GFLOW: 0.75 0.0640375622899487 0.04535299482269756 2.986295912398262 2.989948801398805 2.95160941527986 2.965018005099284 0.001082884959947411 +GFLOW: 0.8125 0.05683329443880113 0.03935610083939756 2.98807475863344 2.991487453707733 2.957478471540453 2.970024431615372 0.000723537308480697 +GFLOW: 0.875 0.0509329296473873 0.03454650834311609 2.989495558752868 2.992688534541917 2.96222344775222 2.973982813719553 0.0004564043284416487 +GFLOW: 0.9375 0.04603982348521207 0.03063847099215955 2.990648540586426 2.993641647248294 2.966114645475173 2.977159335473908 0.0002566117660345612 +GFLOW: 1 0.0419356489459576 0.02742531139858422 2.991597206925263 2.994408837275467 2.969346241070383 2.979741995823919 0.0001064621400328506 Number of steps = 16 -Time to complete flow = 4.482050e-01 seconds +Time to complete flow = 4.459171e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.496031e-01 seconds -exit: Fri Oct 28 16:42:18 2022 +Time = 4.473100e-01 seconds +exit: Mon Oct 31 14:58:56 2022 diff --git a/wilson_flow/test/wilson_flow.wilson.1.sample-out b/wilson_flow/test/wilson_flow.wilson.1.sample-out index b06d6b7c8..b3f621501 100644 --- a/wilson_flow/test/wilson_flow.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 16:42:17 2022 +start: Mon Oct 31 14:58:55 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.260208e-04 +Time to reload gauge configuration = 7.731915e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 7.605553e-05 +Time to check unitarity = 2.729893e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.905792 0.879676 2.21651 2.1972 1.61657 1.58347 0.0557441 -GFLOW: 0.125 0.711623 0.687151 2.53069 2.52162 2.05964 2.03792 0.0304034 -GFLOW: 0.1875 0.536268 0.511769 2.71711 2.71206 2.37249 2.35509 0.017865 -GFLOW: 0.25 0.401488 0.375439 2.82519 2.82085 2.57836 2.56099 0.0125646 -GFLOW: 0.3125 0.304704 0.277192 2.88802 2.88339 2.71027 2.69186 0.010197 -GFLOW: 0.375 0.236398 0.208318 2.92524 2.92027 2.79485 2.77572 0.00859013 -GFLOW: 0.4375 0.187792 0.160037 2.94795 2.94284 2.85002 2.83077 0.00710069 -GFLOW: 0.5 0.15253 0.125713 2.96232 2.95723 2.88693 2.86807 0.00569573 -GFLOW: 0.5625 0.126358 0.100824 2.97175 2.96681 2.91236 2.89421 0.00445253 -GFLOW: 0.625 0.106494 0.0823917 2.97817 2.97345 2.93039 2.91314 0.00341352 -GFLOW: 0.6875 0.0911071 0.0684636 2.98269 2.97823 2.94352 2.92725 0.00257786 -GFLOW: 0.75 0.0789703 0.0577435 2.98597 2.98178 2.95333 2.93803 0.00192112 -GFLOW: 0.8125 0.069245 0.0493554 2.98841 2.98448 2.9608 2.94645 0.00141134 -GFLOW: 0.875 0.061343 0.042695 2.99027 2.98659 2.96661 2.95314 0.00101776 -GFLOW: 0.9375 0.0548423 0.0373368 2.99172 2.98826 2.9712 2.95856 0.000714273 -GFLOW: 1 0.0494345 0.0329748 2.99285 2.98962 2.97487 2.963 0.000479992 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.905792 0.879676 2.1972 2.21651 1.58347 1.61657 0.0557441 +GFLOW: 0.125 0.711623 0.687151 2.52162 2.53069 2.03792 2.05964 0.0304034 +GFLOW: 0.1875 0.536268 0.511769 2.71206 2.71711 2.35509 2.37249 0.017865 +GFLOW: 0.25 0.401488 0.375439 2.82085 2.82519 2.56099 2.57836 0.0125646 +GFLOW: 0.3125 0.304704 0.277192 2.88339 2.88802 2.69186 2.71027 0.010197 +GFLOW: 0.375 0.236398 0.208318 2.92027 2.92524 2.77572 2.79485 0.00859013 +GFLOW: 0.4375 0.187792 0.160037 2.94284 2.94795 2.83077 2.85002 0.00710069 +GFLOW: 0.5 0.15253 0.125713 2.95723 2.96232 2.86807 2.88693 0.00569573 +GFLOW: 0.5625 0.126358 0.100824 2.96681 2.97175 2.89421 2.91236 0.00445253 +GFLOW: 0.625 0.106494 0.0823917 2.97345 2.97817 2.91314 2.93039 0.00341352 +GFLOW: 0.6875 0.0911071 0.0684636 2.97823 2.98269 2.92725 2.94352 0.00257786 +GFLOW: 0.75 0.0789703 0.0577435 2.98178 2.98597 2.93803 2.95333 0.00192112 +GFLOW: 0.8125 0.069245 0.0493554 2.98448 2.98841 2.94645 2.9608 0.00141134 +GFLOW: 0.875 0.061343 0.042695 2.98659 2.99027 2.95314 2.96661 0.00101776 +GFLOW: 0.9375 0.0548423 0.0373368 2.98826 2.99172 2.95856 2.9712 0.000714273 +GFLOW: 1 0.0494345 0.0329748 2.98962 2.99285 2.963 2.97487 0.000479992 Number of steps = 16 -Time to complete flow = 1.357141e-01 seconds +Time to complete flow = 1.329329e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.367521e-01 seconds -exit: Fri Oct 28 16:42:17 2022 +Time = 1.365230e-01 seconds +exit: Mon Oct 31 14:58:55 2022 diff --git a/wilson_flow/test/wilson_flow.wilson.2.sample-out b/wilson_flow/test/wilson_flow.wilson.2.sample-out index 5e7adc97f..61faa30e6 100644 --- a/wilson_flow/test/wilson_flow.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 16:42:17 2022 +start: Mon Oct 31 14:58:55 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.040863e-04 +Time to reload gauge configuration = 2.059937e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.889633e-04 +Time to check unitarity = 2.748966e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.9057920856915209 0.8796763820494508 2.216509410522774 2.197197056299902 1.616570355489586 1.58347344130154 0.05574407551897611 -GFLOW: 0.125 0.7116231893510799 0.6871512384089046 2.530686004526462 2.521619636170544 2.059635795465515 2.037916588776743 0.03040341675612073 -GFLOW: 0.1875 0.5362683370489634 0.5117685144155256 2.717106409327169 2.712064857451038 2.37249113004078 2.35508718362237 0.01786499326463283 -GFLOW: 0.25 0.4014877620284962 0.3754393031999623 2.825194702561463 2.820848903916266 2.578358690422992 2.56099213510236 0.01256460153466077 -GFLOW: 0.3125 0.3047040872626624 0.2771915277782775 2.888018817177403 2.883388666669195 2.710269854022654 2.691863333188723 0.01019696614464195 -GFLOW: 0.375 0.2363977722715255 0.2083181377439789 2.925235549991512 2.920273265366244 2.794850151851901 2.77571975961539 0.008590122464952192 -GFLOW: 0.4375 0.1877920835750984 0.1600370295706649 2.947950689705598 2.942836143320951 2.850015570180885 2.830766666107731 0.00710066867191912 -GFLOW: 0.5 0.1525295784207318 0.1257130828695857 2.962317615721992 2.957228134672858 2.886931259365751 2.868068886288411 0.005695719209967151 -GFLOW: 0.5625 0.1263582356378827 0.100823769026754 2.971750366838974 2.966809733897068 2.912360240743764 2.894214475159307 0.004452522090587669 -GFLOW: 0.625 0.1064944601674812 0.08239170669210551 2.97817231166793 2.973452929870674 2.930390478434733 2.91314139012025 0.003413504210852579 -GFLOW: 0.6875 0.09110706201326449 0.06846365042047078 2.982693282727868 2.978229876795076 2.943524755461226 2.927246406522338 0.002577856831121481 -GFLOW: 0.75 0.07897031407901907 0.0577435012311146 2.985972437963431 2.98177519278301 2.953327843559659 2.938026790246562 0.001921116471623334 -GFLOW: 0.8125 0.06924504376911778 0.04935539218397436 2.988413668882677 2.984478081512274 2.960802884124881 2.946446240476888 0.001411337269360107 -GFLOW: 0.875 0.0613429742027722 0.04269504883572837 2.990272420817325 2.986585949207697 2.966610237623441 2.953144377194535 0.001017767408788298 -GFLOW: 0.9375 0.05484232116236083 0.0373367933048642 2.991715320551761 2.988261588306987 2.971196164946877 2.958558453908063 0.0007142723612204322 -GFLOW: 1 0.04943445691703316 0.03297478460438698 2.992854278477389 2.989615598876857 2.974869836345496 2.962995615162936 0.0004799888742834227 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.9057920856915209 0.8796763820494508 2.197197056299902 2.216509410522774 1.58347344130154 1.616570355489586 0.05574407551897611 +GFLOW: 0.125 0.7116231893510799 0.6871512384089046 2.521619636170544 2.530686004526462 2.037916588776743 2.059635795465515 0.03040341675612073 +GFLOW: 0.1875 0.5362683370489634 0.5117685144155256 2.712064857451038 2.717106409327169 2.35508718362237 2.37249113004078 0.01786499326463283 +GFLOW: 0.25 0.4014877620284962 0.3754393031999623 2.820848903916266 2.825194702561463 2.56099213510236 2.578358690422992 0.01256460153466077 +GFLOW: 0.3125 0.3047040872626624 0.2771915277782775 2.883388666669195 2.888018817177403 2.691863333188723 2.710269854022654 0.01019696614464195 +GFLOW: 0.375 0.2363977722715255 0.2083181377439789 2.920273265366244 2.925235549991512 2.77571975961539 2.794850151851901 0.008590122464952192 +GFLOW: 0.4375 0.1877920835750984 0.1600370295706649 2.942836143320951 2.947950689705598 2.830766666107731 2.850015570180885 0.00710066867191912 +GFLOW: 0.5 0.1525295784207318 0.1257130828695857 2.957228134672858 2.962317615721992 2.868068886288411 2.886931259365751 0.005695719209967151 +GFLOW: 0.5625 0.1263582356378827 0.100823769026754 2.966809733897068 2.971750366838974 2.894214475159307 2.912360240743764 0.004452522090587669 +GFLOW: 0.625 0.1064944601674812 0.08239170669210551 2.973452929870674 2.97817231166793 2.91314139012025 2.930390478434733 0.003413504210852579 +GFLOW: 0.6875 0.09110706201326449 0.06846365042047078 2.978229876795076 2.982693282727868 2.927246406522338 2.943524755461226 0.002577856831121481 +GFLOW: 0.75 0.07897031407901907 0.0577435012311146 2.98177519278301 2.985972437963431 2.938026790246562 2.953327843559659 0.001921116471623334 +GFLOW: 0.8125 0.06924504376911778 0.04935539218397436 2.984478081512274 2.988413668882677 2.946446240476888 2.960802884124881 0.001411337269360107 +GFLOW: 0.875 0.0613429742027722 0.04269504883572837 2.986585949207697 2.990272420817325 2.953144377194535 2.966610237623441 0.001017767408788298 +GFLOW: 0.9375 0.05484232116236083 0.0373367933048642 2.988261588306987 2.991715320551761 2.958558453908063 2.971196164946877 0.0007142723612204322 +GFLOW: 1 0.04943445691703316 0.03297478460438698 2.989615598876857 2.992854278477389 2.962995615162936 2.974869836345496 0.0004799888742834227 Number of steps = 16 -Time to complete flow = 1.599121e-01 seconds +Time to complete flow = 1.600890e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.612830e-01 seconds -exit: Fri Oct 28 16:42:17 2022 +Time = 1.614919e-01 seconds +exit: Mon Oct 31 14:58:55 2022 diff --git a/wilson_flow/test/wilson_flow_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_a.symanzik.1.errtol index d97f3e6b8..724734b3d 100644 --- a/wilson_flow/test/wilson_flow_a.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_a.symanzik.1.errtol @@ -1,7 +1,7 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_a.symanzik.1.sample-out index 85abc01b2..15e0314d8 100644 --- a/wilson_flow/test/wilson_flow_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_a.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 16:42:18 2022 +start: Mon Oct 31 14:58:56 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.997948e-04 +Time to reload gauge configuration = 2.009869e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.914139e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.688143 0.693495 2.48792 2.65889 2.01025 2.19915 -0.00155342 -GFLOW: 0.125 0.382128 0.439688 2.76206 2.86621 2.46472 2.62821 -0.00703306 -GFLOW: 0.1875 0.235814 0.291526 2.87308 2.92872 2.68319 2.78865 0.00292922 -GFLOW: 0.25 0.159764 0.202791 2.92306 2.95457 2.79697 2.86409 0.00567577 -GFLOW: 0.3125 0.11573 0.147464 2.94613 2.96562 2.86065 2.90489 0.00593391 -GFLOW: 0.375 0.087976 0.111251 2.95319 2.96684 2.89854 2.92902 0.00542645 -GFLOW: 0.4375 0.0692226 0.0863453 2.94332 2.95561 2.92181 2.94391 0.00496253 -GFLOW: 0.5 0.0557347 0.0683884 2.90438 2.92097 2.93535 2.95264 0.00474364 -GFLOW: 0.5625 0.0454319 0.0549334 2.81326 2.84309 2.94092 2.95609 0.00490567 -GFLOW: 0.625 0.0373176 0.0449248 2.66301 2.71234 2.94007 2.95456 0.00518208 -GFLOW: 0.6875 0.03137 0.0383558 2.52425 2.57688 2.93764 2.95038 0.00490585 -GFLOW: 0.75 0.027597 0.0347438 2.4761 2.50323 2.93815 2.94704 0.00380924 -GFLOW: 0.8125 0.0251901 0.0325917 2.46989 2.47071 2.9395 2.94451 0.00243362 -GFLOW: 0.875 0.0235969 0.0311476 2.4638 2.45261 2.93988 2.9421 0.00119829 -GFLOW: 0.9375 0.022608 0.0302365 2.45618 2.44535 2.93955 2.94001 0.000196934 -GFLOW: 1 0.0220552 0.0297286 2.4473 2.44495 2.93867 2.93825 -0.000625787 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.688143 0.693495 2.65889 2.48792 2.19915 2.01025 -0.00155342 +GFLOW: 0.125 0.382128 0.439688 2.86621 2.76206 2.62821 2.46472 -0.00703306 +GFLOW: 0.1875 0.235814 0.291526 2.92872 2.87308 2.78865 2.68319 0.00292922 +GFLOW: 0.25 0.159764 0.202791 2.95457 2.92306 2.86409 2.79697 0.00567577 +GFLOW: 0.3125 0.11573 0.147464 2.96562 2.94613 2.90489 2.86065 0.00593391 +GFLOW: 0.375 0.087976 0.111251 2.96684 2.95319 2.92902 2.89854 0.00542645 +GFLOW: 0.4375 0.0692226 0.0863453 2.95561 2.94332 2.94391 2.92181 0.00496253 +GFLOW: 0.5 0.0557347 0.0683884 2.92097 2.90438 2.95264 2.93535 0.00474364 +GFLOW: 0.5625 0.0454319 0.0549334 2.84309 2.81326 2.95609 2.94092 0.00490567 +GFLOW: 0.625 0.0373176 0.0449248 2.71234 2.66301 2.95456 2.94007 0.00518208 +GFLOW: 0.6875 0.03137 0.0383558 2.57688 2.52425 2.95038 2.93764 0.00490585 +GFLOW: 0.75 0.027597 0.0347438 2.50323 2.4761 2.94704 2.93815 0.00380924 +GFLOW: 0.8125 0.0251901 0.0325917 2.47071 2.46989 2.94451 2.9395 0.00243362 +GFLOW: 0.875 0.0235969 0.0311476 2.45261 2.4638 2.9421 2.93988 0.00119829 +GFLOW: 0.9375 0.022608 0.0302365 2.44535 2.45618 2.94001 2.93955 0.000196934 +GFLOW: 1 0.0220552 0.0297286 2.44495 2.4473 2.93825 2.93867 -0.000625787 Number of steps = 16 -Time to complete flow = 3.709729e-01 seconds +Time to complete flow = 3.653688e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.719139e-01 seconds -exit: Fri Oct 28 16:42:18 2022 +Time = 3.662920e-01 seconds +exit: Mon Oct 31 14:58:57 2022 diff --git a/wilson_flow/test/wilson_flow_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_a.symanzik.2.errtol index f687f7888..482fd2d72 100644 --- a/wilson_flow/test/wilson_flow_a.symanzik.2.errtol +++ b/wilson_flow/test/wilson_flow_a.symanzik.2.errtol @@ -1,7 +1,7 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_a.symanzik.2.sample-out index 45e660d71..d5978474c 100644 --- a/wilson_flow/test/wilson_flow_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_a.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 16:42:18 2022 +start: Mon Oct 31 14:58:57 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.129078e-04 +Time to reload gauge configuration = 2.138615e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.770424e-04 +Time to check unitarity = 2.820492e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.6881428371613673 0.6934950078131294 2.487916630113939 2.658889691684759 2.010248273550512 2.199153700433649 -0.001553424551043843 -GFLOW: 0.125 0.3821280168281357 0.4396881820366857 2.762062710157046 2.866213696019443 2.464717125439456 2.628205719627915 -0.007033066201880746 -GFLOW: 0.1875 0.2358140410528544 0.2915255522773146 2.873084962015799 2.928716589259767 2.683186372057216 2.788649442078155 0.002929231643665164 -GFLOW: 0.25 0.1597636460382957 0.2027911443056737 2.923060043206263 2.95456855787797 2.79696951900396 2.864093056622294 0.005675767505594192 -GFLOW: 0.3125 0.1157299754307932 0.1474635056211578 2.946134831073819 2.965615345716365 2.860648822945749 2.904889170460199 0.005933909015408015 -GFLOW: 0.375 0.08797597501968515 0.1112505348132824 2.953185758856695 2.966844011178477 2.898540773032799 2.929019010248645 0.005426437060589573 -GFLOW: 0.4375 0.06922260927017927 0.08634525313599188 2.943321300339459 2.955606041700563 2.921808499608632 2.943913915535713 0.004962530473768031 -GFLOW: 0.5 0.05573472116540258 0.06838837548558414 2.904384546039671 2.920969564450134 2.935350497135339 2.95264438463462 0.004743643650200071 -GFLOW: 0.5625 0.04543185356443363 0.05493339099528048 2.813262789381538 2.843085883205708 2.940921140863098 2.956086241481405 0.004905681638953107 -GFLOW: 0.625 0.03731756245092145 0.04492480249763361 2.663004389914133 2.712336206778325 2.940071376160509 2.95456134751488 0.005182081573120174 -GFLOW: 0.6875 0.03136999139091349 0.03835581600568759 2.524245250450699 2.576877748698801 2.937641174821609 2.95038121537662 0.004905857064113163 -GFLOW: 0.75 0.02759696622940664 0.03474381969494958 2.476097843829928 2.503233124147457 2.938154781569015 2.947042708888492 0.003809241679936024 -GFLOW: 0.8125 0.02519012881983634 0.03259166639187085 2.469887853463304 2.470708179966842 2.939501234599324 2.944514178367853 0.00243362367566834 -GFLOW: 0.875 0.02359694336950003 0.0311475664709202 2.463798899585927 2.452605119518793 2.939881995442416 2.942097282661063 0.001198292932038555 -GFLOW: 0.9375 0.02260801072881476 0.03023649624969676 2.456176237754999 2.445352222306607 2.939548804307395 2.940013560349347 0.0001969349289674609 -GFLOW: 1 0.02205524213839188 0.02972861893377215 2.447300220463655 2.444952047043663 2.938672530681634 2.938251988441712 -0.0006257815885930972 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.6881428371613673 0.6934950078131294 2.658889691684759 2.487916630113939 2.199153700433649 2.010248273550512 -0.001553424551043843 +GFLOW: 0.125 0.3821280168281357 0.4396881820366857 2.866213696019443 2.762062710157046 2.628205719627915 2.464717125439456 -0.007033066201880746 +GFLOW: 0.1875 0.2358140410528544 0.2915255522773146 2.928716589259767 2.873084962015799 2.788649442078155 2.683186372057216 0.002929231643665164 +GFLOW: 0.25 0.1597636460382957 0.2027911443056737 2.95456855787797 2.923060043206263 2.864093056622294 2.79696951900396 0.005675767505594192 +GFLOW: 0.3125 0.1157299754307932 0.1474635056211578 2.965615345716365 2.946134831073819 2.904889170460199 2.860648822945749 0.005933909015408015 +GFLOW: 0.375 0.08797597501968515 0.1112505348132824 2.966844011178477 2.953185758856695 2.929019010248645 2.898540773032799 0.005426437060589573 +GFLOW: 0.4375 0.06922260927017927 0.08634525313599188 2.955606041700563 2.943321300339459 2.943913915535713 2.921808499608632 0.004962530473768031 +GFLOW: 0.5 0.05573472116540258 0.06838837548558414 2.920969564450134 2.904384546039671 2.95264438463462 2.935350497135339 0.004743643650200071 +GFLOW: 0.5625 0.04543185356443363 0.05493339099528048 2.843085883205708 2.813262789381538 2.956086241481405 2.940921140863098 0.004905681638953107 +GFLOW: 0.625 0.03731756245092145 0.04492480249763361 2.712336206778325 2.663004389914133 2.95456134751488 2.940071376160509 0.005182081573120174 +GFLOW: 0.6875 0.03136999139091349 0.03835581600568759 2.576877748698801 2.524245250450699 2.95038121537662 2.937641174821609 0.004905857064113163 +GFLOW: 0.75 0.02759696622940664 0.03474381969494958 2.503233124147457 2.476097843829928 2.947042708888492 2.938154781569015 0.003809241679936024 +GFLOW: 0.8125 0.02519012881983634 0.03259166639187085 2.470708179966842 2.469887853463304 2.944514178367853 2.939501234599324 0.00243362367566834 +GFLOW: 0.875 0.02359694336950003 0.0311475664709202 2.452605119518793 2.463798899585927 2.942097282661063 2.939881995442416 0.001198292932038555 +GFLOW: 0.9375 0.02260801072881476 0.03023649624969676 2.445352222306607 2.456176237754999 2.940013560349347 2.939548804307395 0.0001969349289674609 +GFLOW: 1 0.02205524213839188 0.02972861893377215 2.444952047043663 2.447300220463655 2.938251988441712 2.938672530681634 -0.0006257815885930972 Number of steps = 16 -Time to complete flow = 4.487481e-01 seconds +Time to complete flow = 4.333200e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.500990e-01 seconds -exit: Fri Oct 28 16:42:19 2022 +Time = 4.346950e-01 seconds +exit: Mon Oct 31 14:58:57 2022 diff --git a/wilson_flow/test/wilson_flow_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_a.wilson.1.errtol index 63a791fb2..fd9554641 100644 --- a/wilson_flow/test/wilson_flow_a.wilson.1.errtol +++ b/wilson_flow/test/wilson_flow_a.wilson.1.errtol @@ -1,8 +1,8 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0005 0.0005 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_a.wilson.1.sample-out index 466ca9553..d13fdc434 100644 --- a/wilson_flow/test/wilson_flow_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_a.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 16:42:18 2022 +start: Mon Oct 31 14:58:56 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.069473e-04 +Time to reload gauge configuration = 1.997948e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.914139e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.771612 0.764046 2.34805 2.51098 1.82512 1.98514 0.00915371 -GFLOW: 0.125 0.478855 0.528177 2.64934 2.79553 2.28796 2.48258 -0.0141816 -GFLOW: 0.1875 0.304259 0.368261 2.79944 2.8946 2.55152 2.70346 -0.00893506 -GFLOW: 0.25 0.205937 0.263002 2.87866 2.93726 2.70553 2.81197 -0.00223137 -GFLOW: 0.3125 0.147608 0.193081 2.92239 2.95895 2.79834 2.87149 0.00141071 -GFLOW: 0.375 0.110779 0.145676 2.9477 2.97126 2.85628 2.90703 0.0029908 -GFLOW: 0.4375 0.0862087 0.112677 2.96309 2.97882 2.89387 2.92972 0.00348675 -GFLOW: 0.5 0.0690457 0.0890562 2.97292 2.98376 2.91922 2.94499 0.00343675 -GFLOW: 0.5625 0.0565926 0.0716978 2.97948 2.98714 2.93695 2.95574 0.00312997 -GFLOW: 0.625 0.0472666 0.0586412 2.98404 2.98957 2.94973 2.96359 0.00272282 -GFLOW: 0.6875 0.0400942 0.0486212 2.98732 2.99136 2.95922 2.96949 0.00229792 -GFLOW: 0.75 0.0344522 0.0407982 2.98974 2.99272 2.96641 2.97406 0.00189702 -GFLOW: 0.8125 0.0299282 0.0345991 2.99157 2.99378 2.97199 2.97767 0.00153943 -GFLOW: 0.875 0.0262407 0.0296223 2.99299 2.99463 2.97637 2.98057 0.00123202 -GFLOW: 0.9375 0.0231928 0.02558 2.9941 2.99532 2.97987 2.98295 0.000974731 -GFLOW: 1 0.0206429 0.0222619 2.99499 2.99588 2.98269 2.98492 0.000763828 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.771612 0.764046 2.51098 2.34805 1.98514 1.82512 0.00915371 +GFLOW: 0.125 0.478855 0.528177 2.79553 2.64934 2.48258 2.28796 -0.0141816 +GFLOW: 0.1875 0.304259 0.368261 2.8946 2.79944 2.70346 2.55152 -0.00893506 +GFLOW: 0.25 0.205937 0.263002 2.93726 2.87866 2.81197 2.70553 -0.00223137 +GFLOW: 0.3125 0.147608 0.193081 2.95895 2.92239 2.87149 2.79834 0.00141071 +GFLOW: 0.375 0.110779 0.145676 2.97126 2.9477 2.90703 2.85628 0.0029908 +GFLOW: 0.4375 0.0862087 0.112677 2.97882 2.96309 2.92972 2.89387 0.00348675 +GFLOW: 0.5 0.0690457 0.0890562 2.98376 2.97292 2.94499 2.91922 0.00343675 +GFLOW: 0.5625 0.0565926 0.0716978 2.98714 2.97948 2.95574 2.93695 0.00312997 +GFLOW: 0.625 0.0472666 0.0586412 2.98957 2.98404 2.96359 2.94973 0.00272282 +GFLOW: 0.6875 0.0400942 0.0486212 2.99136 2.98732 2.96949 2.95922 0.00229792 +GFLOW: 0.75 0.0344522 0.0407982 2.99272 2.98974 2.97406 2.96641 0.00189702 +GFLOW: 0.8125 0.0299282 0.0345991 2.99378 2.99157 2.97767 2.97199 0.00153943 +GFLOW: 0.875 0.0262407 0.0296223 2.99463 2.99299 2.98057 2.97637 0.00123202 +GFLOW: 0.9375 0.0231928 0.02558 2.99532 2.9941 2.98295 2.97987 0.000974731 +GFLOW: 1 0.0206429 0.0222619 2.99588 2.99499 2.98492 2.98269 0.000763828 Number of steps = 16 -Time to complete flow = 1.341209e-01 seconds +Time to complete flow = 1.322310e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.350551e-01 seconds -exit: Fri Oct 28 16:42:18 2022 +Time = 1.331630e-01 seconds +exit: Mon Oct 31 14:58:56 2022 diff --git a/wilson_flow/test/wilson_flow_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_a.wilson.2.errtol index 8e6cbfe2d..861cd8cc6 100644 --- a/wilson_flow/test/wilson_flow_a.wilson.2.errtol +++ b/wilson_flow/test/wilson_flow_a.wilson.2.errtol @@ -1,8 +1,8 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 5e-08 5e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_a.wilson.2.sample-out index d291c1b50..0b6b77b3e 100644 --- a/wilson_flow/test/wilson_flow_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_a.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 16:42:18 2022 +start: Mon Oct 31 14:58:56 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.090931e-04 +Time to reload gauge configuration = 2.119541e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 Time to check unitarity = 2.739429e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.7716121155403498 0.764046359764188 2.348047981504413 2.510977839760153 1.825117821572047 1.985142786629284 0.009153697879548001 -GFLOW: 0.125 0.478855219136734 0.5281771694316109 2.649342954032534 2.795530865833582 2.287962215716467 2.482581095804806 -0.01418163009317936 -GFLOW: 0.1875 0.3042588034434339 0.368261150446055 2.799443964615125 2.894596355658547 2.551523348582002 2.70346361791159 -0.00893506728913844 -GFLOW: 0.25 0.2059367815531412 0.2630019965432058 2.87866246851219 2.937260361529871 2.705527929322217 2.811972899836633 -0.002231390406420625 -GFLOW: 0.3125 0.1476082428091615 0.1930806904768138 2.922391322003677 2.958947951380432 2.798337607024589 2.871491823670925 0.001410701548490571 -GFLOW: 0.375 0.1107790742511716 0.1456757595817022 2.947700099550414 2.971256503432909 2.856276659502127 2.907033394919212 0.002990795311506209 -GFLOW: 0.4375 0.08620873342389505 0.1126770034703566 2.963093770352662 2.978817603961845 2.893870685544353 2.929715857422741 0.0034867580524232 -GFLOW: 0.5 0.06904571334502346 0.08905620930573557 2.972922128950035 2.983755813350964 2.919223410571471 2.944989858881292 0.003436752226773621 -GFLOW: 0.5625 0.05659261882253541 0.07169782493085289 2.97948419619821 2.987144343947209 2.936945344498199 2.955738877810572 0.003129979325942315 -GFLOW: 0.625 0.04726662915823671 0.05864116609010809 2.984042262753859 2.989566345255892 2.949733339550922 2.963586292407834 0.002722827824076729 -GFLOW: 0.6875 0.04009418849289782 0.04862118933892547 2.987317767375333 2.991357696295236 2.959216847045845 2.969494852810398 0.002297921979429834 -GFLOW: 0.75 0.03445220806997711 0.04079822916353455 2.989739900074048 2.992721343145224 2.966414520613639 2.974061040092656 0.001897023843040622 -GFLOW: 0.8125 0.02992817300858469 0.03459910506239366 2.991574161687673 2.993784975059033 2.971985055062049 2.977668497557393 0.001539433857324679 -GFLOW: 0.875 0.02624073755366365 0.02962228776361844 2.992991040776793 2.994631823078093 2.976368305368149 2.980572238874064 0.001232018347743351 -GFLOW: 0.9375 0.02319280685505681 0.02557999181631904 2.994103885417432 2.995317888726593 2.979866794178076 2.982946883616409 0.0009747348219404205 -GFLOW: 1 0.02064290122224121 0.02226186919907126 2.994990449654293 2.9958819549761 2.982694113388896 2.984915276270505 0.0007638305711427885 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.7716121155403498 0.764046359764188 2.510977839760153 2.348047981504413 1.985142786629284 1.825117821572047 0.009153697879548001 +GFLOW: 0.125 0.478855219136734 0.5281771694316109 2.795530865833582 2.649342954032534 2.482581095804806 2.287962215716467 -0.01418163009317936 +GFLOW: 0.1875 0.3042588034434339 0.368261150446055 2.894596355658547 2.799443964615125 2.70346361791159 2.551523348582002 -0.00893506728913844 +GFLOW: 0.25 0.2059367815531412 0.2630019965432058 2.937260361529871 2.87866246851219 2.811972899836633 2.705527929322217 -0.002231390406420625 +GFLOW: 0.3125 0.1476082428091615 0.1930806904768138 2.958947951380432 2.922391322003677 2.871491823670925 2.798337607024589 0.001410701548490571 +GFLOW: 0.375 0.1107790742511716 0.1456757595817022 2.971256503432909 2.947700099550414 2.907033394919212 2.856276659502127 0.002990795311506209 +GFLOW: 0.4375 0.08620873342389505 0.1126770034703566 2.978817603961845 2.963093770352662 2.929715857422741 2.893870685544353 0.0034867580524232 +GFLOW: 0.5 0.06904571334502346 0.08905620930573557 2.983755813350964 2.972922128950035 2.944989858881292 2.919223410571471 0.003436752226773621 +GFLOW: 0.5625 0.05659261882253541 0.07169782493085289 2.987144343947209 2.97948419619821 2.955738877810572 2.936945344498199 0.003129979325942315 +GFLOW: 0.625 0.04726662915823671 0.05864116609010809 2.989566345255892 2.984042262753859 2.963586292407834 2.949733339550922 0.002722827824076729 +GFLOW: 0.6875 0.04009418849289782 0.04862118933892547 2.991357696295236 2.987317767375333 2.969494852810398 2.959216847045845 0.002297921979429834 +GFLOW: 0.75 0.03445220806997711 0.04079822916353455 2.992721343145224 2.989739900074048 2.974061040092656 2.966414520613639 0.001897023843040622 +GFLOW: 0.8125 0.02992817300858469 0.03459910506239366 2.993784975059033 2.991574161687673 2.977668497557393 2.971985055062049 0.001539433857324679 +GFLOW: 0.875 0.02624073755366365 0.02962228776361844 2.994631823078093 2.992991040776793 2.980572238874064 2.976368305368149 0.001232018347743351 +GFLOW: 0.9375 0.02319280685505681 0.02557999181631904 2.995317888726593 2.994103885417432 2.982946883616409 2.979866794178076 0.0009747348219404205 +GFLOW: 1 0.02064290122224121 0.02226186919907126 2.9958819549761 2.994990449654293 2.984915276270505 2.982694113388896 0.0007638305711427885 Number of steps = 16 -Time to complete flow = 1.598301e-01 seconds +Time to complete flow = 1.546760e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.611950e-01 seconds -exit: Fri Oct 28 16:42:18 2022 +Time = 1.560299e-01 seconds +exit: Mon Oct 31 14:58:56 2022 diff --git a/wilson_flow/test/wilson_flow_adpt.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt.symanzik.1.sample-out index f3325c076..2e0730259 100644 --- a/wilson_flow/test/wilson_flow_adpt.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:00:36 2022 +start: Tue Nov 1 11:12:05 2022 Options selected... Generic single precision @@ -33,42 +33,42 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.000332e-04 +Time to reload gauge configuration = 2.021790e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.890297e-05 +Time to check unitarity = 6.985664e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.854375 0.829395 2.37618 2.36268 1.8023 1.77541 0.0472255 +GFLOW: 0.0625 0.854375 0.829395 2.36268 2.37618 1.77541 1.8023 0.0472255 ADAPT: 0.0625 0.0625 0.0047192 2.119 -GFLOW: 0.138763 0.560706 0.536835 2.72759 2.72336 2.36671 2.35062 0.0209253 +GFLOW: 0.138763 0.560706 0.536835 2.72336 2.72759 2.35062 2.36671 0.0209253 ADAPT: 0.138763 0.076263 0.00738167 1.35471 -GFLOW: 0.218928 0.357882 0.331197 2.87059 2.86654 2.65803 2.64104 0.0137614 +GFLOW: 0.218928 0.357882 0.331197 2.86654 2.87059 2.64104 2.65803 0.0137614 ADAPT: 0.218928 0.0801652 0.00363115 2.75395 -GFLOW: 0.325677 0.216143 0.188118 2.94141 2.93652 2.82693 2.80814 0.00968091 +GFLOW: 0.325677 0.216143 0.188118 2.93652 2.94141 2.80814 2.82693 0.00968091 ADAPT: 0.325677 0.106748 0.00468429 2.13479 -GFLOW: 0.456255 0.134023 0.108266 2.97138 2.96651 2.90847 2.89044 0.00542774 +GFLOW: 0.456255 0.134023 0.108266 2.96651 2.97138 2.89044 2.90847 0.00542774 ADAPT: 0.456255 0.130578 0.00343094 2.91465 -GFLOW: 0.633452 0.0822926 0.0610077 2.98567 2.98154 2.95167 2.93644 0.00214519 +GFLOW: 0.633452 0.0822926 0.0610077 2.98154 2.98567 2.93644 2.95167 0.00214519 ADAPT: 0.633452 0.177197 0.00378754 2.64024 -GFLOW: 0.789816 0.0591954 0.041288 2.98835 2.98547 2.96814 2.95526 0.000865788 +GFLOW: 0.789816 0.0591954 0.041288 2.98547 2.98835 2.95526 2.96814 0.000865788 ADAPT: 0.789816 0.156364 0.00858512 1.16481 -GFLOW: 0.88015 0.0504692 0.0341702 2.99155 2.98874 2.97422 2.96251 0.000445196 +GFLOW: 0.88015 0.0504692 0.0341702 2.98874 2.99155 2.96251 2.97422 0.000445196 ADAPT: 0.88015 0.0903338 0.00859996 1.1628 -GFLOW: 0.970392 0.0437911 0.0288741 2.9934 2.99074 2.97855 2.96786 0.000174927 +GFLOW: 0.970392 0.0437911 0.0288741 2.99074 2.9934 2.96786 2.97855 0.000174927 ADAPT: 0.970392 0.090242 0.0060064 1.66489 -GFLOW: 1 0.0419416 0.0274348 2.99427 2.99151 2.97973 2.96934 0.000107674 +GFLOW: 1 0.0419416 0.0274348 2.99151 2.99427 2.96934 2.97973 0.000107674 ADAPT: 1 0.0296079 0.000153453 65.1664 Number of steps = 10 Number of rejected steps = 2 -Time to complete flow = 2.999711e-01 seconds +Time to complete flow = 3.047931e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.010030e-01 seconds -exit: Fri Oct 28 19:00:37 2022 +Time = 3.058259e-01 seconds +exit: Tue Nov 1 11:12:05 2022 diff --git a/wilson_flow/test/wilson_flow_adpt.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt.symanzik.2.sample-out index 4c3313e6d..be3f5219c 100644 --- a/wilson_flow/test/wilson_flow_adpt.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:00:37 2022 +start: Tue Nov 1 11:12:05 2022 Options selected... Generic double precision @@ -33,42 +33,42 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.069473e-04 +Time to reload gauge configuration = 2.110004e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.760887e-04 +Time to check unitarity = 2.810955e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.8543748488315552 0.8293947648705751 2.376179304698458 2.362677101758874 1.802304115569335 1.775411064068106 0.04722547316371967 +GFLOW: 0.0625 0.8543748488315552 0.8293947648705751 2.362677101758874 2.376179304698458 1.775411064068106 1.802304115569335 0.04722547316371967 ADAPT: 0.0625 0.0625 0.004719202039531842 2.119002305099874 -GFLOW: 0.1387630375188174 0.5607061075767752 0.5368345201426489 2.727593715411787 2.723356271593063 2.366709314388901 2.350623046899389 0.02092527400154888 +GFLOW: 0.1387630375188174 0.5607061075767752 0.5368345201426489 2.723356271593063 2.727593715411787 2.350623046899389 2.366709314388901 0.02092527400154888 ADAPT: 0.138763 0.07626303751881737 0.007381689026071324 1.354703505482429 -GFLOW: 0.2189282206782907 0.3578818300023276 0.3311969856062997 2.870593898467302 2.866535873253456 2.658029501349826 2.641043746696456 0.01376142583907406 +GFLOW: 0.2189282206782907 0.3578818300023276 0.3311969856062997 2.866535873253456 2.870593898467302 2.641043746696456 2.658029501349826 0.01376142583907406 ADAPT: 0.218928 0.08016518315947334 0.003631151142836851 2.753947606870327 -GFLOW: 0.325676598891913 0.216142613638687 0.1881183054358119 2.941407331082634 2.936519350018415 2.826929858524579 2.808140809891487 0.009680913270332671 +GFLOW: 0.325676598891913 0.216142613638687 0.1881183054358119 2.936519350018415 2.941407331082634 2.808140809891487 2.826929858524579 0.009680913270332671 ADAPT: 0.325677 0.1067483782136223 0.004684266846803418 2.134805792890318 -GFLOW: 0.4562549003806881 0.1340225814999241 0.108266450767241 2.971378194652041 2.966506606310527 2.90847307168652 2.890439452395144 0.005427745934847398 +GFLOW: 0.4562549003806881 0.1340225814999241 0.108266450767241 2.966506606310527 2.971378194652041 2.890439452395144 2.90847307168652 0.005427745934847398 ADAPT: 0.456255 0.130578301488775 0.003430935630303189 2.914656839282149 -GFLOW: 0.633452199136845 0.08229254129193055 0.0610076693586727 2.985670478315039 2.98153621595215 2.951670030884185 2.936443810336556 0.002145198376551098 +GFLOW: 0.633452199136845 0.08229254129193055 0.0610076693586727 2.98153621595215 2.985670478315039 2.936443810336556 2.951670030884185 0.002145198376551098 ADAPT: 0.633452 0.177197298756157 0.003787639840253783 2.640166547442898 -GFLOW: 0.7898137639195856 0.05919563761558863 0.04128823391684992 2.988349628063147 2.985472659890409 2.968141540256848 2.955260248164089 0.0008657837068862899 +GFLOW: 0.7898137639195856 0.05919563761558863 0.04128823391684992 2.985472659890409 2.988349628063147 2.955260248164089 2.968141540256848 0.0008657837068862899 ADAPT: 0.789814 0.1563615647827406 0.008585164651795422 1.164800024878811 -GFLOW: 0.8801476788007746 0.05046936757875957 0.03417032433581461 2.991552910704261 2.988742545205744 2.974218103279707 2.962508000665926 0.0004452028331794332 +GFLOW: 0.8801476788007746 0.05046936757875957 0.03417032433581461 2.988742545205744 2.991552910704261 2.962508000665926 2.974218103279707 0.0004452028331794332 ADAPT: 0.880148 0.09033391488118898 0.008599978434365446 1.162793613532806 -GFLOW: 0.9703896659353608 0.04379121749740365 0.02887417613134534 2.993403958793609 2.99073569978351 2.978552487615881 2.967854973309751 0.0001749344734665034 +GFLOW: 0.9703896659353608 0.04379121749740365 0.02887417613134534 2.99073569978351 2.993403958793609 2.967854973309751 2.978552487615881 0.0001749344734665034 ADAPT: 0.97039 0.09024198713458623 0.006006370243853228 1.664899031196712 -GFLOW: 1 0.04194154668274509 0.0274348058969209 2.99427469462497 2.991508411318257 2.979732171043291 2.969337488056075 0.0001076712428776674 +GFLOW: 1 0.04194154668274509 0.0274348058969209 2.991508411318257 2.99427469462497 2.969337488056075 2.979732171043291 0.0001076712428776674 ADAPT: 1 0.0296103340646392 0.00015349341050008 65.14937655903336 Number of steps = 10 Number of rejected steps = 2 -Time to complete flow = 3.315239e-01 seconds +Time to complete flow = 3.406739e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.331139e-01 seconds -exit: Fri Oct 28 19:00:37 2022 +Time = 3.422611e-01 seconds +exit: Tue Nov 1 11:12:06 2022 diff --git a/wilson_flow/test/wilson_flow_adpt.wilson.1.errtol b/wilson_flow/test/wilson_flow_adpt.wilson.1.errtol index 1dcb153ac..218cbd685 100644 --- a/wilson_flow/test/wilson_flow_adpt.wilson.1.errtol +++ b/wilson_flow/test/wilson_flow_adpt.wilson.1.errtol @@ -1,16 +1,16 @@ -XXX XXX XXX XXX XXX -XXX 0 2 2 3 3 2 2 0.2 -XXX 0 2 0 0 -XXX 0.0002 2 2 1e+01 4 3 3 0.1 -XXX 0.3 0.9 1 1e+01 -XXX 0.0002 0.8 1 3 5 5 5 0.04 -XXX 0.2 0.4 0.5 4 -XXX 0.0002 0.4 0.5 1 6 5 5 0.02 -XXX 0.3 0.1 0.3 2 -XXX 0.0002 0.04 0.3 2 6 6 6 0.01 -XXX 0.4 0.1 0.1 2 -XXX 0.0002 0.2 0.1 0.9 6 6 6 0.006 -XXX 0.5 0.2 0.08 0.9 -XXX 0.0002 0.3 0.08 1 6 6 6 0.002 -XXX 0.2 0.4 0.06 1 -XXX 0 0.1 0.07 8e+01 6 6 6 0.001 +GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 +ADAPT: 0 0.0002 0 0 +GFLOW: 0.0002 0.0002 0.0002 0.0004 0.0004 0.0003 0.0003 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0004 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0005 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0007 +GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 +ADAPT: 0 0.0002 0.0002 0.009 diff --git a/wilson_flow/test/wilson_flow_adpt.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt.wilson.1.sample-out index 2511baea2..d33cae2e4 100644 --- a/wilson_flow/test/wilson_flow_adpt.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:00:36 2022 +start: Tue Nov 1 11:12:05 2022 Options selected... Generic single precision @@ -33,36 +33,36 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.059937e-04 +Time to reload gauge configuration = 2.079010e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 7.009506e-05 +Time to check unitarity = 7.796288e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.905792 0.879676 2.21651 2.1972 1.61657 1.58347 0.0557441 +GFLOW: 0.0625 0.905792 0.879676 2.1972 2.21651 1.58347 1.61657 0.0557441 ADAPT: 0.0625 0.0625 0.00103211 9.68891 -GFLOW: 0.189079 0.533008 0.508515 2.72229 2.71727 2.37955 2.36232 0.0184883 +GFLOW: 0.189079 0.533008 0.508515 2.71727 2.72229 2.36232 2.37955 0.0184883 ADAPT: 0.189079 0.126579 0.00930747 1.07441 -GFLOW: 0.312241 0.305016 0.277569 2.88853 2.88397 2.7105 2.69226 0.010484 +GFLOW: 0.312241 0.305016 0.277569 2.88397 2.88853 2.69226 2.7105 0.010484 ADAPT: 0.312241 0.123161 0.0046648 2.14371 -GFLOW: 0.463105 0.171655 0.144234 2.95512 2.95001 2.8677 2.84858 0.00657103 +GFLOW: 0.463105 0.171655 0.144234 2.95001 2.95512 2.84858 2.8677 0.00657103 ADAPT: 0.463105 0.150865 0.00499195 2.00322 -GFLOW: 0.643776 0.101197 0.0775124 2.97993 2.97527 2.93523 2.91825 0.00316599 +GFLOW: 0.643776 0.101197 0.0775124 2.97527 2.97993 2.91825 2.93523 0.00316599 ADAPT: 0.643776 0.180671 0.00392557 2.5474 -GFLOW: 0.878186 0.0608037 0.0422015 2.99045 2.98677 2.96711 2.95367 0.00100735 +GFLOW: 0.878186 0.0608037 0.0422015 2.98677 2.99045 2.95367 2.96711 0.00100735 ADAPT: 0.878186 0.23441 0.00286522 3.49013 -GFLOW: 1 0.0493726 0.032906 2.99289 2.98965 2.97495 2.96307 0.000482842 +GFLOW: 1 0.0493726 0.032906 2.98965 2.99289 2.96307 2.97495 0.000482842 ADAPT: 1 0.121814 0.000226299 44.1893 Number of steps = 7 Number of rejected steps = 0 -Time to complete flow = 7.253003e-02 seconds +Time to complete flow = 7.084703e-02 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 7.357502e-02 seconds -exit: Fri Oct 28 19:00:36 2022 +Time = 7.190800e-02 seconds +exit: Tue Nov 1 11:12:05 2022 diff --git a/wilson_flow/test/wilson_flow_adpt.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt.wilson.2.sample-out index 5af647469..f94149e58 100644 --- a/wilson_flow/test/wilson_flow_adpt.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:00:36 2022 +start: Tue Nov 1 11:12:05 2022 Options selected... Generic double precision @@ -33,36 +33,36 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.048016e-04 +Time to reload gauge configuration = 2.110004e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.789497e-04 +Time to check unitarity = 2.810955e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.9057920856915209 0.8796763820494508 2.216509410522774 2.197197056299902 1.616570355489586 1.58347344130154 0.05574407551897611 +GFLOW: 0.0625 0.9057920856915209 0.8796763820494508 2.197197056299902 2.216509410522774 1.58347344130154 1.616570355489586 0.05574407551897611 ADAPT: 0.0625 0.0625 0.001032095916181361 9.689021963190084 -GFLOW: 0.189079566136834 0.5330063254290119 0.5085142606665809 2.722290099017613 2.717272522951315 2.379554089502183 2.36232191962173 0.01848828122776391 +GFLOW: 0.189079566136834 0.5330063254290119 0.5085142606665809 2.717272522951315 2.722290099017613 2.36232191962173 2.379554089502183 0.01848828122776391 ADAPT: 0.18908 0.126579566136834 0.009307581649904509 1.074392938589219 -GFLOW: 0.3122410529634178 0.3050158582707601 0.2775686486293933 2.8885290288248 2.88397255919851 2.710503741943249 2.692256813773762 0.01048397749453917 +GFLOW: 0.3122410529634178 0.3050158582707601 0.2775686486293933 2.88397255919851 2.8885290288248 2.692256813773762 2.710503741943249 0.01048397749453917 ADAPT: 0.312241 0.1231614868265838 0.004664779294079845 2.143724144182166 -GFLOW: 0.4631059363957019 0.1716548642658613 0.1442337211189632 2.955120445069396 2.950006642121069 2.867700109279364 2.848584909653975 0.006571006254997598 +GFLOW: 0.4631059363957019 0.1716548642658613 0.1442337211189632 2.950006642121069 2.955120445069396 2.848584909653975 2.867700109279364 0.006571006254997598 ADAPT: 0.463106 0.1508648834322841 0.00499197386563035 2.003215615540342 -GFLOW: 0.643776610852913 0.1011969138211975 0.07751218743658897 2.979925359542488 2.975272286416414 2.935232582097214 2.918253335137282 0.003165963158196718 +GFLOW: 0.643776610852913 0.1011969138211975 0.07751218743658897 2.975272286416414 2.979925359542488 2.918253335137282 2.935232582097214 0.003165963158196718 ADAPT: 0.643777 0.1806706744572111 0.003925569958451302 2.547400786596898 -GFLOW: 0.8781870943375 0.06080359827001013 0.04220142826857681 2.990449917618641 2.986771000616521 2.96710915776975 2.953672662653165 0.001007336805078151 +GFLOW: 0.8781870943375 0.06080359827001013 0.04220142826857681 2.986771000616521 2.990449917618641 2.953672662653165 2.96710915776975 0.001007336805078151 ADAPT: 0.878187 0.2344104834845869 0.002865213054923497 3.49014185273807 -GFLOW: 1 0.04937260171838897 0.03290598594763042 2.992888213650807 2.989647291085301 2.974954425343912 2.96307348170519 0.0004828399513138239 +GFLOW: 1 0.04937260171838897 0.03290598594763042 2.989647291085301 2.992888213650807 2.96307348170519 2.974954425343912 0.0004828399513138239 ADAPT: 1 0.1218129056625 0.0002262791389213261 44.1932033490584 Number of steps = 7 Number of rejected steps = 0 -Time to complete flow = 7.608509e-02 seconds +Time to complete flow = 7.850909e-02 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 7.764721e-02 seconds -exit: Fri Oct 28 19:00:36 2022 +Time = 8.006620e-02 seconds +exit: Tue Nov 1 11:12:05 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.errtol index 056301c39..feba2d4b5 100644 --- a/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.errtol @@ -1,10 +1,10 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 ADAPT: 0 0.0002 0 0 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0003 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0003 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0003 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0004 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0003 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0005 0.0005 0.0005 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0004 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0005 diff --git a/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.sample-out index 159b71b62..c33dbb299 100644 --- a/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:00:37 2022 +start: Tue Nov 1 11:12:06 2022 Options selected... Generic single precision @@ -34,56 +34,56 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.881123e-04 +Time to reload gauge configuration = 1.940727e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.794930e-05 +Time to check unitarity = 6.818771e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0359955 0.869392 0.836963 2.27108 2.42501 1.69594 1.82862 0.0227316 +GFLOW: 0.0359955 0.869392 0.836963 2.42501 2.27108 1.82862 1.69594 0.0227316 ADAPT: 0.0359955 0.0359955 0.00784612 1.27452 -GFLOW: 0.0730709 0.615841 0.638472 2.56281 2.72084 2.12176 2.31457 -0.00770779 +GFLOW: 0.0730709 0.615841 0.638472 2.72084 2.56281 2.31457 2.12176 -0.00770779 ADAPT: 0.0730709 0.0370755 0.00635072 1.57462 -GFLOW: 0.114048 0.419476 0.474063 2.73443 2.84803 2.41138 2.58266 -0.00759194 +GFLOW: 0.114048 0.419476 0.474063 2.84803 2.73443 2.58266 2.41138 -0.00759194 ADAPT: 0.114048 0.0409766 0.00445611 2.24411 -GFLOW: 0.165013 0.276767 0.335602 2.8456 2.91444 2.62279 2.74592 0.00065871 +GFLOW: 0.165013 0.276767 0.335602 2.91444 2.8456 2.74592 2.62279 0.00065871 ADAPT: 0.165013 0.0509652 0.00439655 2.27451 -GFLOW: 0.228687 0.180679 0.228072 2.91286 2.9506 2.76671 2.84437 0.00531371 +GFLOW: 0.228687 0.180679 0.228072 2.9506 2.91286 2.84437 2.76671 0.00531371 ADAPT: 0.228687 0.0636737 0.00276344 3.61867 -GFLOW: 0.321555 0.110779 0.141227 2.9552 2.97297 2.86869 2.91013 0.00580635 +GFLOW: 0.321555 0.110779 0.141227 2.97297 2.9552 2.91013 2.86869 0.00580635 ADAPT: 0.321555 0.0928682 0.00378381 2.64284 -GFLOW: 0.443533 0.0680077 0.084707 2.97615 2.98418 2.9269 2.94723 0.00433698 +GFLOW: 0.443533 0.0680077 0.084707 2.98418 2.97615 2.94723 2.9269 0.00433698 ADAPT: 0.443533 0.121978 0.00546041 1.83136 -GFLOW: 0.507569 0.0551953 0.0673967 2.98098 2.98665 2.94325 2.95778 0.00357088 +GFLOW: 0.507569 0.0551953 0.0673967 2.98665 2.98098 2.95778 2.94325 0.00357088 ADAPT: 0.507569 0.0640368 0.00872621 1.14597 -GFLOW: 0.56332 0.046867 0.0561409 2.9846 2.98883 2.95367 2.96457 0.00297933 +GFLOW: 0.56332 0.046867 0.0561409 2.98883 2.9846 2.96457 2.95367 0.00297933 ADAPT: 0.56332 0.0557506 0.00857356 1.16638 -GFLOW: 0.619071 0.04034 0.0473572 2.98718 2.99038 2.96157 2.96979 0.0024541 +GFLOW: 0.619071 0.04034 0.0473572 2.99038 2.98718 2.96979 2.96157 0.0024541 ADAPT: 0.619071 0.055751 0.00821832 1.21679 -GFLOW: 0.675614 0.0350512 0.0402966 2.98892 2.99138 2.96776 2.97394 0.00199382 +GFLOW: 0.675614 0.0350512 0.0402966 2.99138 2.98892 2.97394 2.96776 0.00199382 ADAPT: 0.675614 0.0565434 0.00852003 1.1737 -GFLOW: 0.732276 0.0307497 0.0346197 2.99006 2.99202 2.97264 2.97728 0.00160274 +GFLOW: 0.732276 0.0307497 0.0346197 2.99202 2.99006 2.97728 2.97264 0.00160274 ADAPT: 0.732276 0.056662 0.00920854 1.08595 -GFLOW: 0.787605 0.0272845 0.0301094 2.99113 2.99272 2.97648 2.97996 0.00128172 +GFLOW: 0.787605 0.0272845 0.0301094 2.99272 2.99113 2.97996 2.97648 0.00128172 ADAPT: 0.787605 0.0553288 0.00937667 1.06648 -GFLOW: 0.841307 0.0244614 0.0264898 2.99238 2.99366 2.97954 2.98214 0.00102153 +GFLOW: 0.841307 0.0244614 0.0264898 2.99366 2.99238 2.98214 2.97954 0.00102153 ADAPT: 0.841307 0.0537022 0.00860744 1.16179 -GFLOW: 0.894939 0.0220597 0.0234602 2.9934 2.99443 2.98206 2.98398 0.000808843 +GFLOW: 0.894939 0.0220597 0.0234602 2.99443 2.9934 2.98398 2.98206 0.000808843 ADAPT: 0.894939 0.0536321 0.00767116 1.30358 -GFLOW: 0.950597 0.0199208 0.0208086 2.99379 2.99471 2.98423 2.98559 0.000632425 +GFLOW: 0.950597 0.0199208 0.0208086 2.99471 2.99379 2.98559 2.98423 0.000632425 ADAPT: 0.950597 0.055658 0.00766535 1.30457 -GFLOW: 1 0.0182775 0.0188039 2.9953 2.99589 2.98589 2.98685 0.000502461 +GFLOW: 1 0.0182775 0.0188039 2.99589 2.9953 2.98685 2.98589 0.000502461 ADAPT: 1 0.0494025 0.0056356 1.77443 Number of steps = 17 Number of rejected steps = 3 -Time to complete flow = 4.978511e-01 seconds +Time to complete flow = 5.056460e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.988551e-01 seconds -exit: Fri Oct 28 19:00:38 2022 +Time = 5.066750e-01 seconds +exit: Tue Nov 1 11:12:06 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.errtol index 57d696288..ba1b9b646 100644 --- a/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.errtol +++ b/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.errtol @@ -1,10 +1,10 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 ADAPT: 0 2e-08 0 0 -GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 3e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 3e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 3e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 4e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 3e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 5e-08 5e-08 5e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 4e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 5e-08 diff --git a/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.sample-out index 34f0106ad..a0350f022 100644 --- a/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_a.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:00:38 2022 +start: Tue Nov 1 11:12:06 2022 Options selected... Generic double precision @@ -34,56 +34,56 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.131462e-04 +Time to reload gauge configuration = 2.088547e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.791882e-04 +Time to check unitarity = 2.779961e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 ADAPT: 0 0.0625 0 0 -GFLOW: 0.03599546846841682 0.8693921629065754 0.8369631263535411 2.271076952321912 2.425012888161282 1.695937200650389 1.828622014599843 0.0227316020814034 +GFLOW: 0.03599546846841682 0.8693921629065754 0.8369631263535411 2.425012888161282 2.271076952321912 1.828622014599843 1.695937200650389 0.0227316020814034 ADAPT: 0.0359955 0.03599546846841682 0.007846116245504929 1.274515911707151 -GFLOW: 0.07307092629997611 0.6158407801989489 0.6384715661258779 2.562808419376144 2.720840587094379 2.121758741276045 2.314569742806373 -0.007707766960421213 +GFLOW: 0.07307092629997611 0.6158407801989489 0.6384715661258779 2.720840587094379 2.562808419376144 2.314569742806373 2.121758741276045 -0.007707766960421213 ADAPT: 0.0730709 0.03707545783155929 0.006350719617321549 1.57462470437603 -GFLOW: 0.1140475163537169 0.419476395846081 0.4740630339169947 2.734433491859986 2.848028141567006 2.41137571808105 2.582655409126051 -0.007591895520757173 +GFLOW: 0.1140475163537169 0.419476395846081 0.4740630339169947 2.848028141567006 2.734433491859986 2.582655409126051 2.41137571808105 -0.007591895520757173 ADAPT: 0.114048 0.04097659005374081 0.004456105847642471 2.244111864014756 -GFLOW: 0.1650127775275925 0.2767665933543997 0.3356023082069865 2.845604024601595 2.914443833151062 2.622788084057924 2.745917767154941 0.0006587288266775075 +GFLOW: 0.1650127775275925 0.2767665933543997 0.3356023082069865 2.914443833151062 2.845604024601595 2.745917767154941 2.622788084057924 0.0006587288266775075 ADAPT: 0.165013 0.05096526117387558 0.00439657927438528 2.274495551180111 -GFLOW: 0.2286863997821815 0.1806791578904916 0.2280717472437534 2.912859905274114 2.950597019917335 2.766710272454005 2.844365307051595 0.00531374289054687 +GFLOW: 0.2286863997821815 0.1806791578904916 0.2280717472437534 2.950597019917335 2.912859905274114 2.844365307051595 2.766710272454005 0.00531374289054687 ADAPT: 0.228686 0.06367362225458896 0.00276342173870514 3.61870208225463 -GFLOW: 0.3215546876050466 0.1107790009340462 0.1412271077191908 2.955200669205923 2.972969123031361 2.868694623421041 2.910128476198361 0.005806356241307806 +GFLOW: 0.3215546876050466 0.1107790009340462 0.1412271077191908 2.972969123031361 2.955200669205923 2.910128476198361 2.868694623421041 0.005806356241307806 ADAPT: 0.321555 0.09286828782286509 0.0037838694864118 2.642797283550836 -GFLOW: 0.4435319816127548 0.0680077945383995 0.08470716321065107 2.976154852524344 2.984180261626127 2.926898592814602 2.947230389988988 0.004336994004604666 +GFLOW: 0.4435319816127548 0.0680077945383995 0.08470716321065107 2.984180261626127 2.976154852524344 2.947230389988988 2.926898592814602 0.004336994004604666 ADAPT: 0.443532 0.1219772940077082 0.005459568051099607 1.831646735859609 -GFLOW: 0.5075684643966295 0.05519546826068487 0.06739694009984783 2.980982149977228 2.986653458897933 2.943247339781974 2.957778559799288 0.00357090090623978 +GFLOW: 0.5075684643966295 0.05519546826068487 0.06739694009984783 2.986653458897933 2.980982149977228 2.957778559799288 2.943247339781974 0.00357090090623978 ADAPT: 0.507568 0.06403648278387479 0.008726234283002454 1.145969690440087 -GFLOW: 0.5633200546981142 0.04686698079319624 0.05614086845762734 2.984601900144437 2.988826408794484 2.953668405409209 2.964567109613432 0.002979332227915439 +GFLOW: 0.5633200546981142 0.04686698079319624 0.05614086845762734 2.988826408794484 2.984601900144437 2.964567109613432 2.953668405409209 0.002979332227915439 ADAPT: 0.56332 0.05575159030148464 0.008573577714769258 1.166374217705348 -GFLOW: 0.6190720184380699 0.0403398485010272 0.04735701460512243 2.987182197549172 2.990376182957766 2.961565710657799 2.969785428825889 0.00245409061554925 +GFLOW: 0.6190720184380699 0.0403398485010272 0.04735701460512243 2.990376182957766 2.987182197549172 2.969785428825889 2.961565710657799 0.00245409061554925 ADAPT: 0.619072 0.05575196373995577 0.008219036640654613 1.216687604303409 -GFLOW: 0.675614752196207 0.03505112239960841 0.04029654586709447 2.988922021101231 2.991380852372741 2.967758903303588 2.973943125169077 0.001993823378603642 +GFLOW: 0.675614752196207 0.03505112239960841 0.04029654586709447 2.991380852372741 2.988922021101231 2.973943125169077 2.967758903303588 0.001993823378603642 ADAPT: 0.675615 0.05654273375813706 0.008520677512822048 1.17361559394213 -GFLOW: 0.7322746383957933 0.03074981421625476 0.03461981425444815 2.990064728012324 2.992018153333081 2.97264261962546 2.977280248624934 0.001602747361184953 +GFLOW: 0.7322746383957933 0.03074981421625476 0.03461981425444815 2.992018153333081 2.990064728012324 2.977280248624934 2.97264261962546 0.001602747361184953 ADAPT: 0.732275 0.05665988619958627 0.009208075909633498 1.08600321045768 -GFLOW: 0.7876023880155639 0.02728470013759719 0.03010956648743605 2.991129689377864 2.992719947590092 2.976479519145164 2.979955898010066 0.001281729576855319 +GFLOW: 0.7876023880155639 0.02728470013759719 0.03010956648743605 2.992719947590092 2.991129689377864 2.979955898010066 2.976479519145164 0.001281729576855319 ADAPT: 0.787602 0.0553277496197706 0.009375332884893017 1.066628793108087 -GFLOW: 0.8413061091726908 0.02446145169036229 0.02648991948901263 2.992378360448772 2.993656843220155 2.979537440142581 2.98213608346167 0.001021542036101855 +GFLOW: 0.8413061091726908 0.02446145169036229 0.02648991948901263 2.993656843220155 2.992378360448772 2.98213608346167 2.979537440142581 0.001021542036101855 ADAPT: 0.841306 0.0537037211571269 0.008606660882287271 1.161890788630961 -GFLOW: 0.8949412906064249 0.02205961993358782 0.02346007814009897 2.993400023896958 2.994431898924856 2.982063496780731 2.983975883200209 0.0008088353151375755 +GFLOW: 0.8949412906064249 0.02205961993358782 0.02346007814009897 2.994431898924856 2.993400023896958 2.983975883200209 2.982063496780731 0.0008088353151375755 ADAPT: 0.894941 0.05363518143373416 0.007671997380696502 1.303441529471971 -GFLOW: 0.9506005227587443 0.01992066368083793 0.02080844640640917 2.993784315174669 2.994712297316639 2.984231015459415 2.985587699693094 0.0006324193766027004 +GFLOW: 0.9506005227587443 0.01992066368083793 0.02080844640640917 2.994712297316639 2.993784315174669 2.985587699693094 2.984231015459415 0.0006324193766027004 ADAPT: 0.950601 0.0556592321523194 0.007667167041163409 1.304262701766128 -GFLOW: 1 0.01827746029273741 0.01880386248156381 2.995297647211201 2.995889908828186 2.985891539155754 2.986853967038692 0.0005024669121521699 +GFLOW: 1 0.01827746029273741 0.01880386248156381 2.995889908828186 2.995297647211201 2.986853967038692 2.985891539155754 0.0005024669121521699 ADAPT: 1 0.04939947724125571 0.005635982002035225 1.77431368595373 Number of steps = 17 Number of rejected steps = 3 -Time to complete flow = 5.511510e-01 seconds +Time to complete flow = 5.693390e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.526919e-01 seconds -exit: Fri Oct 28 19:00:38 2022 +Time = 5.709329e-01 seconds +exit: Tue Nov 1 11:12:07 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_adpt_a.wilson.1.errtol index 9b19c25bb..edef102e6 100644 --- a/wilson_flow/test/wilson_flow_adpt_a.wilson.1.errtol +++ b/wilson_flow/test/wilson_flow_adpt_a.wilson.1.errtol @@ -2,11 +2,11 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 ADAPT: 0 0.0002 0 0 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0004 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0005 0.0005 0.0004 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0003 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0004 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0005 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0007 diff --git a/wilson_flow/test/wilson_flow_adpt_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_a.wilson.1.sample-out index ab7f2a97d..c0c30c29b 100644 --- a/wilson_flow/test/wilson_flow_adpt_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_a.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:00:37 2022 +start: Tue Nov 1 11:12:06 2022 Options selected... Generic single precision @@ -34,42 +34,42 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.969337e-04 +Time to reload gauge configuration = 2.009869e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.914139e-05 +Time to check unitarity = 6.985664e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0571049 0.800714 0.787511 2.31039 2.46834 1.77238 1.92182 0.0138191 +GFLOW: 0.0571049 0.800714 0.787511 2.46834 2.31039 1.92182 1.77238 0.0138191 ADAPT: 0.0571049 0.0571049 0.00857134 1.16668 -GFLOW: 0.114215 0.52019 0.563028 2.61157 2.76578 2.2257 2.42327 -0.0134499 +GFLOW: 0.114215 0.52019 0.563028 2.76578 2.61157 2.42327 2.2257 -0.0134499 ADAPT: 0.114215 0.0571103 0.0061431 1.62784 -GFLOW: 0.178038 0.324474 0.388336 2.78263 2.88482 2.52041 2.6799 -0.0101022 +GFLOW: 0.178038 0.324474 0.388336 2.88482 2.78263 2.6799 2.52041 -0.0101022 ADAPT: 0.178038 0.0638227 0.00547789 1.82552 -GFLOW: 0.25214 0.203254 0.260061 2.88071 2.93841 2.70965 2.81491 -0.00202889 +GFLOW: 0.25214 0.203254 0.260061 2.93841 2.88071 2.81491 2.70965 -0.00202889 ADAPT: 0.25214 0.0741016 0.00427716 2.338 -GFLOW: 0.345572 0.125962 0.165724 2.93753 2.96638 2.8324 2.89269 0.00249314 +GFLOW: 0.345572 0.125962 0.165724 2.96638 2.93753 2.89269 2.8324 0.00249314 ADAPT: 0.345572 0.0934329 0.00305802 3.27009 -GFLOW: 0.47732 0.0743885 0.0966286 2.96999 2.9823 2.91137 2.94037 0.00353463 +GFLOW: 0.47732 0.0743885 0.0966286 2.9823 2.96999 2.94037 2.91137 0.00353463 ADAPT: 0.47732 0.131748 0.00332107 3.01107 -GFLOW: 0.658055 0.0430864 0.0528876 2.98597 2.99061 2.95528 2.96707 0.00250409 +GFLOW: 0.658055 0.0430864 0.0528876 2.99061 2.98597 2.96707 2.95528 0.00250409 ADAPT: 0.658055 0.180734 0.00317757 3.14706 -GFLOW: 0.826566 0.0290068 0.0334699 2.99044 2.99275 2.97241 2.97804 0.00145501 +GFLOW: 0.826566 0.0290068 0.0334699 2.99275 2.99044 2.97804 2.97241 0.00145501 ADAPT: 0.826566 0.168511 0.00856898 1.167 -GFLOW: 0.914457 0.0242333 0.0269795 2.99305 2.99453 2.9785 2.98205 0.00106193 +GFLOW: 0.914457 0.0242333 0.0269795 2.99453 2.99305 2.98205 2.9785 0.00106193 ADAPT: 0.914457 0.0878912 0.00863081 1.15864 -GFLOW: 1 0.0206362 0.0222634 2.99469 2.99563 2.98265 2.9849 0.000764279 +GFLOW: 1 0.0206362 0.0222634 2.99563 2.99469 2.9849 2.98265 0.000764279 ADAPT: 1 0.0855431 0.00527397 1.8961 Number of steps = 10 Number of rejected steps = 3 -Time to complete flow = 1.178849e-01 seconds +Time to complete flow = 1.212609e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.189060e-01 seconds -exit: Fri Oct 28 19:00:37 2022 +Time = 1.223099e-01 seconds +exit: Tue Nov 1 11:12:06 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_adpt_a.wilson.2.errtol index 1b0186a08..d39b4750b 100644 --- a/wilson_flow/test/wilson_flow_adpt_a.wilson.2.errtol +++ b/wilson_flow/test/wilson_flow_adpt_a.wilson.2.errtol @@ -2,11 +2,11 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 ADAPT: 0 2e-08 0 0 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 4e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 5e-08 5e-08 4e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 3e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 4e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 5e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 7e-08 diff --git a/wilson_flow/test/wilson_flow_adpt_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_a.wilson.2.sample-out index 4bbfaf453..25572b10a 100644 --- a/wilson_flow/test/wilson_flow_adpt_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_a.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:00:37 2022 +start: Tue Nov 1 11:12:06 2022 Options selected... Generic double precision @@ -34,42 +34,42 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.098083e-04 +Time to reload gauge configuration = 2.121925e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.751350e-04 +Time to check unitarity = 2.889633e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 ADAPT: 0 0.0625 0 0 -GFLOW: 0.05710494765115298 0.8007141141671855 0.7875110119468766 2.310394358604133 2.468341842034199 1.772384782568168 1.921820807049433 0.01381909135754463 +GFLOW: 0.05710494765115298 0.8007141141671855 0.7875110119468766 2.468341842034199 2.310394358604133 1.921820807049433 1.772384782568168 0.01381909135754463 ADAPT: 0.0571049 0.05710494765115298 0.008571374726118698 1.166673995657662 -GFLOW: 0.1142151697328976 0.5201900118195394 0.5630279958963903 2.611570496920689 2.765781282764239 2.225698174762529 2.423270868979434 -0.01344988709409152 +GFLOW: 0.1142151697328976 0.5201900118195394 0.5630279958963903 2.765781282764239 2.611570496920689 2.423270868979434 2.225698174762529 -0.01344988709409152 ADAPT: 0.114215 0.0571102220817446 0.006143089434918998 1.627845419791102 -GFLOW: 0.1780378700222671 0.3244737145459834 0.3883362274783069 2.782628209418442 2.884821516767513 2.520414238285682 2.679896190973487 -0.01010214680031283 +GFLOW: 0.1780378700222671 0.3244737145459834 0.3883362274783069 2.884821516767513 2.782628209418442 2.679896190973487 2.520414238285682 -0.01010214680031283 ADAPT: 0.178038 0.06382270028936957 0.005477871563606376 1.825526554225464 -GFLOW: 0.2521395689359674 0.2032539341222995 0.2600608987829447 2.880707364778205 2.938406153828363 2.709645705736638 2.814912009707866 -0.002028842914517146 +GFLOW: 0.2521395689359674 0.2032539341222995 0.2600608987829447 2.938406153828363 2.880707364778205 2.814912009707866 2.709645705736638 -0.002028842914517146 ADAPT: 0.25214 0.07410169891370025 0.004277157567503802 2.33800131095851 -GFLOW: 0.3455725101661126 0.1259615163248149 0.1657241297907014 2.937534388817494 2.966382511297933 2.832398966064183 2.892687466533452 0.002493169825071404 +GFLOW: 0.3455725101661126 0.1259615163248149 0.1657241297907014 2.966382511297933 2.937534388817494 2.892687466533452 2.832398966064183 0.002493169825071404 ADAPT: 0.345573 0.0934329412301452 0.003058037894602972 3.270070661206868 -GFLOW: 0.4773200977066691 0.07438853172287574 0.0966286316443577 2.96998840246232 2.982295894856166 2.91137159051234 2.940366129022082 0.0035346388135707 +GFLOW: 0.4773200977066691 0.07438853172287574 0.0966286316443577 2.982295894856166 2.96998840246232 2.940366129022082 2.91137159051234 0.0035346388135707 ADAPT: 0.47732 0.1317475875405565 0.00332102109025569 3.011122100170128 -GFLOW: 0.6580551540870633 0.04308631513816136 0.05288751578145236 2.98597481309482 2.990613793264106 2.955278870881358 2.96707404551861 0.002504090832113422 +GFLOW: 0.6580551540870633 0.04308631513816136 0.05288751578145236 2.990613793264106 2.98597481309482 2.96707404551861 2.955278870881358 0.002504090832113422 ADAPT: 0.658055 0.1807350563803942 0.003177716384036345 3.146913944314303 -GFLOW: 0.8265669338751436 0.02900668620879503 0.03346979901196772 2.990437435803951 2.992754600583268 2.972411276134933 2.978036342937336 0.001455005935704717 +GFLOW: 0.8265669338751436 0.02900668620879503 0.03346979901196772 2.992754600583268 2.990437435803951 2.978036342937336 2.972411276134933 0.001455005935704717 ADAPT: 0.826567 0.1685117797880803 0.008568954261208732 1.167003545026439 -GFLOW: 0.9144560313717522 0.02423333083399361 0.02697950074994419 2.993047311494903 2.994526737830257 2.97850434616194 2.982052081158894 0.001061928192022287 +GFLOW: 0.9144560313717522 0.02423333083399361 0.02697950074994419 2.994526737830257 2.993047311494903 2.982052081158894 2.97850434616194 0.001061928192022287 ADAPT: 0.914456 0.08788909749660864 0.008630844961117096 1.15863510989377 -GFLOW: 1 0.02063617728955537 0.02226340655817641 2.994685815413246 2.995628201699507 2.982647762144869 2.984895887312241 0.0007642813937907262 +GFLOW: 1 0.02063617728955537 0.02226340655817641 2.995628201699507 2.994685815413246 2.984895887312241 2.982647762144869 0.0007642813937907262 ADAPT: 1 0.08554396862824776 0.00527385068403723 1.896147729450849 Number of steps = 10 Number of rejected steps = 3 -Time to complete flow = 1.292069e-01 seconds +Time to complete flow = 1.296098e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.307490e-01 seconds -exit: Fri Oct 28 19:00:37 2022 +Time = 1.311860e-01 seconds +exit: Tue Nov 1 11:12:06 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.sample-out index b1c4d2ccf..3040ccb3d 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:17:56 2022 +start: Tue Nov 1 11:29:29 2022 Options selected... Generic single precision @@ -33,42 +33,42 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.969337e-04 +Time to reload gauge configuration = 2.059937e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.818771e-05 +Time to check unitarity = 6.985664e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.854382 0.829414 2.37915 2.36573 1.80473 1.77801 0.0474035 +GFLOW: 0.0625 0.854382 0.829414 2.36573 2.37915 1.77801 1.80473 0.0474035 ADAPT: 0.0625 0.0625 0.0010118 9.88338 -GFLOW: 0.18992 0.415819 0.390509 2.82878 2.82601 2.57925 2.56407 0.0182095 +GFLOW: 0.18992 0.415819 0.390509 2.82601 2.82878 2.56407 2.57925 0.0182095 ADAPT: 0.18992 0.12742 0.00633066 1.57961 -GFLOW: 0.322942 0.217398 0.189283 2.91749 2.91661 2.81917 2.80045 0.00935435 +GFLOW: 0.322942 0.217398 0.189283 2.91661 2.91749 2.80045 2.81917 0.00935435 ADAPT: 0.322942 0.133021 0.00791021 1.26419 -GFLOW: 0.431288 0.145619 0.119236 2.94206 2.944 2.89332 2.8751 0.00635583 +GFLOW: 0.431288 0.145619 0.119236 2.944 2.94206 2.8751 2.89332 0.00635583 ADAPT: 0.431288 0.108346 0.00639348 1.56409 -GFLOW: 0.539493 0.105082 0.0815663 2.93995 2.94832 2.92835 2.91191 0.00388524 +GFLOW: 0.539493 0.105082 0.0815663 2.94832 2.93995 2.91191 2.92835 0.00388524 ADAPT: 0.539493 0.108205 0.0075358 1.327 -GFLOW: 0.641222 0.081508 0.0607793 2.94213 2.95345 2.94766 2.93306 0.00243417 +GFLOW: 0.641222 0.081508 0.0607793 2.95345 2.94213 2.93306 2.94766 0.00243417 ADAPT: 0.641222 0.101729 0.00749671 1.33392 -GFLOW: 0.747606 0.0647678 0.046687 2.91618 2.93916 2.95806 2.94537 0.00173045 +GFLOW: 0.747606 0.0647678 0.046687 2.93916 2.91618 2.94537 2.95806 0.00173045 ADAPT: 0.747606 0.106384 0.00979703 1.02072 -GFLOW: 0.843993 0.054537 0.0385325 2.93561 2.9527 2.96688 2.95557 0.0010434 +GFLOW: 0.843993 0.054537 0.0385325 2.9527 2.93561 2.95557 2.96688 0.0010434 ADAPT: 0.843993 0.0963871 0.00799194 1.25126 -GFLOW: 0.942665 0.0465388 0.0322871 2.9376 2.95466 2.97243 2.96236 0.000687721 +GFLOW: 0.942665 0.0465388 0.0322871 2.95466 2.9376 2.96236 2.97243 0.000687721 ADAPT: 0.942665 0.0986715 0.00801477 1.2477 -GFLOW: 1 0.0431623 0.0296096 2.99359 2.99109 2.97809 2.96837 0.000100566 +GFLOW: 1 0.0431623 0.0296096 2.99109 2.99359 2.96837 2.97809 0.000100566 ADAPT: 1 0.0573351 0.000518214 19.2971 Number of steps = 10 Number of rejected steps = 5 -Time to complete flow = 3.858030e-01 seconds +Time to complete flow = 3.871260e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.868611e-01 seconds -exit: Fri Oct 28 19:17:56 2022 +Time = 3.881931e-01 seconds +exit: Tue Nov 1 11:29:30 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.sample-out index aa2abe07c..8b727eee9 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:17:56 2022 +start: Tue Nov 1 11:29:30 2022 Options selected... Generic double precision @@ -33,42 +33,42 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.379417e-04 +Time to reload gauge configuration = 2.400875e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.779961e-04 +Time to check unitarity = 2.770424e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.8543821081090931 0.8294143032164626 2.379153297732387 2.365728299275925 1.804732423553656 1.778009568228787 0.04740354964843416 +GFLOW: 0.0625 0.8543821081090931 0.8294143032164626 2.365728299275925 2.379153297732387 1.778009568228787 1.804732423553656 0.04740354964843416 ADAPT: 0.0625 0.0625 0.001011798003245868 9.883395665854062 -GFLOW: 0.1899204154148049 0.4158189112768273 0.3905084716747329 2.82878228468181 2.826007008552427 2.579249760791946 2.564066303676889 0.01820951011365494 +GFLOW: 0.1899204154148049 0.4158189112768273 0.3905084716747329 2.826007008552427 2.82878228468181 2.564066303676889 2.579249760791946 0.01820951011365494 ADAPT: 0.18992 0.1274204154148049 0.006330678933848369 1.579609407536496 -GFLOW: 0.3229418199837181 0.217397713351089 0.1892833960823865 2.917485431628525 2.91660963002138 2.819174675900809 2.800445881039798 0.009354360446403972 +GFLOW: 0.3229418199837181 0.217397713351089 0.1892833960823865 2.91660963002138 2.917485431628525 2.800445881039798 2.819174675900809 0.009354360446403972 ADAPT: 0.322942 0.1330214045689132 0.007910215999285153 1.264187981833075 -GFLOW: 0.4312880803148139 0.1456185466512634 0.1192363830118573 2.942062426330642 2.943998645300422 2.893318714818222 2.875097618538742 0.006355827814719987 +GFLOW: 0.4312880803148139 0.1456185466512634 0.1192363830118573 2.943998645300422 2.942062426330642 2.875097618538742 2.893318714818222 0.006355827814719987 ADAPT: 0.431288 0.1083462603310958 0.006393487846899503 1.5640915005179 -GFLOW: 0.5394929685508356 0.1050822846954147 0.08156627454753153 2.939954030590924 2.948319102874579 2.928354394244353 2.91191470084798 0.003885234380599928 +GFLOW: 0.5394929685508356 0.1050822846954147 0.08156627454753153 2.948319102874579 2.939954030590924 2.91191470084798 2.928354394244353 0.003885234380599928 ADAPT: 0.539493 0.1082048882360217 0.007535799344717837 1.326999239570972 -GFLOW: 0.641221926055499 0.08150798455003649 0.06077932516191891 2.94212908378 2.953448528790339 2.947658043257685 2.933056649592278 0.00243417515692954 +GFLOW: 0.641221926055499 0.08150798455003649 0.06077932516191891 2.953448528790339 2.94212908378 2.933056649592278 2.947658043257685 0.00243417515692954 ADAPT: 0.641222 0.1017289575046634 0.007496701414837232 1.333920006498901 -GFLOW: 0.7476063700203542 0.06476778913247201 0.04668702359851508 2.916176308641154 2.939160002863427 2.958062853405519 2.945367276251263 0.001730452805792527 +GFLOW: 0.7476063700203542 0.06476778913247201 0.04668702359851508 2.939160002863427 2.916176308641154 2.945367276251263 2.958062853405519 0.001730452805792527 ADAPT: 0.747606 0.1063844439648552 0.009797040509456574 1.020716408220168 -GFLOW: 0.8439934205484093 0.05453701695462754 0.03853245719863453 2.93560643418932 2.95269578139757 2.966880117996945 2.955568388029734 0.001043396144284228 +GFLOW: 0.8439934205484093 0.05453701695462754 0.03853245719863453 2.95269578139757 2.93560643418932 2.955568388029734 2.966880117996945 0.001043396144284228 ADAPT: 0.843993 0.09638705052805507 0.007991945047814024 1.251259854787818 -GFLOW: 0.9426648606053106 0.04653883611724765 0.03228708608329768 2.937597004981976 2.954661877001631 2.972429857432209 2.962364714569488 0.0006877201373186207 +GFLOW: 0.9426648606053106 0.04653883611724765 0.03228708608329768 2.954661877001631 2.937597004981976 2.962364714569488 2.972429857432209 0.0006877201373186207 ADAPT: 0.942665 0.0986714400569013 0.008014767516395051 1.247696827081253 -GFLOW: 1 0.04316226745587198 0.02960955443443196 2.993589530629894 2.991086678262472 2.978094944343573 2.968374422072086 0.0001005644901726803 +GFLOW: 1 0.04316226745587198 0.02960955443443196 2.991086678262472 2.993589530629894 2.968374422072086 2.978094944343573 0.0001005644901726803 ADAPT: 1 0.05733513939468937 0.0005182155946722611 19.29698778425295 Number of steps = 10 Number of rejected steps = 5 -Time to complete flow = 4.305630e-01 seconds +Time to complete flow = 4.191570e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.321828e-01 seconds -exit: Fri Oct 28 19:17:57 2022 +Time = 4.207878e-01 seconds +exit: Tue Nov 1 11:29:30 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_bs.wilson.1.sample-out index e0f230fca..86e0a71cb 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:17:56 2022 +start: Tue Nov 1 11:29:29 2022 Options selected... Generic single precision @@ -33,34 +33,34 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.100468e-04 +Time to reload gauge configuration = 2.119541e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 7.009506e-05 +Time to check unitarity = 7.104874e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.905813 0.879699 2.21718 2.19787 1.61709 1.58402 0.0557593 +GFLOW: 0.0625 0.905813 0.879699 2.19787 2.21718 1.58402 1.61709 0.0557593 ADAPT: 0.0625 0.0625 0.000305105 32.7756 -GFLOW: 0.252515 0.394062 0.368306 2.82604 2.82317 2.5887 2.57288 0.0164885 +GFLOW: 0.252515 0.394062 0.368306 2.82317 2.82604 2.57288 2.5887 0.0164885 ADAPT: 0.252515 0.190015 0.00681128 1.46815 -GFLOW: 0.457678 0.173829 0.146201 2.9367 2.93461 2.86006 2.84091 0.00638609 +GFLOW: 0.457678 0.173829 0.146201 2.93461 2.9367 2.84091 2.86006 0.00638609 ADAPT: 0.457678 0.205164 0.00652053 1.53362 -GFLOW: 0.639327 0.102557 0.078665 2.95506 2.95646 2.92891 2.91177 0.00335084 +GFLOW: 0.639327 0.102557 0.078665 2.95646 2.95506 2.91177 2.92891 0.00335084 ADAPT: 0.639327 0.181648 0.00651675 1.53451 -GFLOW: 0.816428 0.0688252 0.0490046 2.95187 2.95908 2.95585 2.94141 0.00152367 +GFLOW: 0.816428 0.0688252 0.0490046 2.95908 2.95187 2.94141 2.95585 0.00152367 ADAPT: 0.816428 0.177101 0.00735989 1.35872 -GFLOW: 1 0.0494375 0.0331527 2.91175 2.93562 2.96599 2.95378 0.00081349 +GFLOW: 1 0.0494375 0.0331527 2.93562 2.91175 2.95378 2.96599 0.00081349 ADAPT: 1 0.183572 0.0107831 0.927381 Number of steps = 6 Number of rejected steps = 2 -Time to complete flow = 7.831693e-02 seconds +Time to complete flow = 8.038211e-02 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 7.939696e-02 seconds -exit: Fri Oct 28 19:17:56 2022 +Time = 8.146405e-02 seconds +exit: Tue Nov 1 11:29:29 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_bs.wilson.2.sample-out index 6868d74f3..6211350ca 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:17:56 2022 +start: Tue Nov 1 11:29:29 2022 Options selected... Generic double precision @@ -33,34 +33,34 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.410412e-04 +Time to reload gauge configuration = 2.450943e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 Time to check unitarity = 2.760887e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.9058132281572296 0.8796992037234977 2.217180550948812 2.197869838719706 1.617090518681119 1.58401604382473 0.05575934074905174 +GFLOW: 0.0625 0.9058132281572296 0.8796992037234977 2.197869838719706 2.217180550948812 1.58401604382473 1.617090518681119 0.05575934074905174 ADAPT: 0.0625 0.0625 0.0003051000715670042 32.77613128256465 -GFLOW: 0.2525157146801129 0.3940595205757169 0.3683035897692976 2.826036554969603 2.823173857023059 2.588704733221091 2.572877971712322 0.01648846189509281 +GFLOW: 0.2525157146801129 0.3940595205757169 0.3683035897692976 2.823173857023059 2.826036554969603 2.572877971712322 2.588704733221091 0.01648846189509281 ADAPT: 0.252516 0.1900157146801129 0.006811450635019679 1.468116049845102 -GFLOW: 0.4576791300835819 0.1738289709450043 0.1462009845382908 2.936699083419908 2.934610808771165 2.860060993896163 2.840907650667175 0.006386072827915823 +GFLOW: 0.4576791300835819 0.1738289709450043 0.1462009845382908 2.934610808771165 2.936699083419908 2.840907650667175 2.860060993896163 0.006386072827915823 ADAPT: 0.457679 0.2051634154034689 0.006520623659183634 1.533595637882891 -GFLOW: 0.6393270852587887 0.1025567936670745 0.07866495062436649 2.955055330945495 2.956455743735408 2.928905195707536 2.911773994971274 0.003350843817088197 +GFLOW: 0.6393270852587887 0.1025567936670745 0.07866495062436649 2.956455743735408 2.955055330945495 2.911773994971274 2.928905195707536 0.003350843817088197 ADAPT: 0.639327 0.1816479551752068 0.006516791242787131 1.534497519936384 -GFLOW: 0.816427864134861 0.06882516195837721 0.04900462084939212 2.951869088303494 2.959082421028461 2.955846832877499 2.941413272123506 0.001523669457146111 +GFLOW: 0.816427864134861 0.06882516195837721 0.04900462084939212 2.959082421028461 2.951869088303494 2.941413272123506 2.955846832877499 0.001523669457146111 ADAPT: 0.816428 0.1771007788760723 0.007359935781629628 1.358707507334502 -GFLOW: 1 0.04943750065083356 0.03315273085490399 2.911750219454325 2.935624562976177 2.965993194942641 2.953778163020873 0.0008134907117585562 +GFLOW: 1 0.04943750065083356 0.03315273085490399 2.935624562976177 2.911750219454325 2.953778163020873 2.965993194942641 0.0008134907117585562 ADAPT: 1 0.183572135865139 0.01078307604393198 0.9273791596440941 Number of steps = 6 Number of rejected steps = 2 -Time to complete flow = 8.491206e-02 seconds +Time to complete flow = 8.295584e-02 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 8.656812e-02 seconds -exit: Fri Oct 28 19:17:56 2022 +Time = 8.457303e-02 seconds +exit: Tue Nov 1 11:29:29 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.errtol index a5656b36c..35a720b93 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.errtol @@ -4,7 +4,7 @@ GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0005 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0003 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0003 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.sample-out index 93953a743..01005c09e 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:17:57 2022 +start: Tue Nov 1 11:29:31 2022 Options selected... Generic single precision @@ -34,58 +34,58 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.088547e-04 +Time to reload gauge configuration = 2.038479e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 7.200241e-05 +Time to check unitarity = 7.009506e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.683596 0.689287 2.49362 2.66867 2.01982 2.21584 -0.000286496 +GFLOW: 0.0625 0.683596 0.689287 2.66867 2.49362 2.21584 2.01982 -0.000286496 ADAPT: 0.0625 0.0625 0.00874461 1.14356 -GFLOW: 0.12459 0.38198 0.439807 2.76111 2.86494 2.46456 2.62868 -0.00743558 +GFLOW: 0.12459 0.38198 0.439807 2.86494 2.76111 2.62868 2.46456 -0.00743558 ADAPT: 0.12459 0.0620903 0.00380328 2.62931 -GFLOW: 0.195913 0.221806 0.276283 2.87377 2.92448 2.7011 2.80097 0.00392072 +GFLOW: 0.195913 0.221806 0.276283 2.92448 2.87377 2.80097 2.7011 0.00392072 ADAPT: 0.195913 0.0713226 0.00715016 1.39857 -GFLOW: 0.255046 0.155262 0.19736 2.91756 2.9483 2.80174 2.86716 0.00573357 +GFLOW: 0.255046 0.155262 0.19736 2.9483 2.91756 2.86716 2.80174 0.00573357 ADAPT: 0.255046 0.0591329 0.00615522 1.62464 -GFLOW: 0.316428 0.113651 0.144906 2.93404 2.95486 2.86128 2.90536 0.0059712 +GFLOW: 0.316428 0.113651 0.144906 2.95486 2.93404 2.90536 2.86128 0.0059712 ADAPT: 0.316428 0.0613826 0.00773559 1.29273 -GFLOW: 0.37393 0.0886823 0.112386 2.94513 2.96096 2.89639 2.92781 0.00542393 +GFLOW: 0.37393 0.0886823 0.112386 2.96096 2.94513 2.92781 2.89639 0.00542393 ADAPT: 0.37393 0.057502 0.00745882 1.3407 -GFLOW: 0.434165 0.0705058 0.0883435 2.93857 2.95378 2.91941 2.94265 0.00494511 +GFLOW: 0.434165 0.0705058 0.0883435 2.95378 2.93857 2.94265 2.91941 0.00494511 ADAPT: 0.434165 0.0602351 0.00955666 1.04639 -GFLOW: 0.489113 0.0588846 0.0729026 2.95003 2.96246 2.93551 2.95308 0.00420265 +GFLOW: 0.489113 0.0588846 0.0729026 2.96246 2.95003 2.95308 2.93551 0.00420265 ADAPT: 0.489113 0.0549472 0.00791849 1.26287 -GFLOW: 0.545535 0.0497322 0.0606703 2.9513 2.96317 2.94706 2.96064 0.00359129 +GFLOW: 0.545535 0.0497322 0.0606703 2.96317 2.9513 2.96064 2.94706 0.00359129 ADAPT: 0.545535 0.0564228 0.00809927 1.23468 -GFLOW: 0.603039 0.0424951 0.0510217 2.94467 2.958 2.9554 2.96618 0.00307841 +GFLOW: 0.603039 0.0424951 0.0510217 2.958 2.94467 2.96618 2.9554 0.00307841 ADAPT: 0.603039 0.0575038 0.00901475 1.10929 -GFLOW: 0.65959 0.0369537 0.0436992 2.94144 2.95575 2.96184 2.97053 0.00258557 +GFLOW: 0.65959 0.0369537 0.0436992 2.95575 2.94144 2.97053 2.96184 0.00258557 ADAPT: 0.65959 0.0565504 0.00914834 1.09309 -GFLOW: 0.71493 0.0326391 0.038039 2.94533 2.95906 2.96719 2.97417 0.00211044 +GFLOW: 0.71493 0.0326391 0.038039 2.95906 2.94533 2.97417 2.96719 0.00211044 ADAPT: 0.71493 0.0553408 0.00857309 1.16644 -GFLOW: 0.770273 0.0290766 0.0333877 2.94788 2.96138 2.97147 2.97712 0.00171089 +GFLOW: 0.770273 0.0290766 0.0333877 2.96138 2.94788 2.97712 2.97147 0.00171089 ADAPT: 0.770273 0.0553422 0.00822478 1.21584 -GFLOW: 0.826387 0.0260425 0.0294583 2.94432 2.95928 2.97475 2.97943 0.00139491 +GFLOW: 0.826387 0.0260425 0.0294583 2.95928 2.94432 2.97943 2.97475 0.00139491 ADAPT: 0.826387 0.0561141 0.00848676 1.17831 -GFLOW: 0.882692 0.0234946 0.0261995 2.93859 2.95569 2.97733 2.98129 0.00113674 +GFLOW: 0.882692 0.0234946 0.0261995 2.95569 2.93859 2.98129 2.97733 0.00113674 ADAPT: 0.882692 0.0563051 0.00885623 1.12915 -GFLOW: 0.938392 0.021389 0.0235394 2.93727 2.95529 2.97962 2.98295 0.000914408 +GFLOW: 0.938392 0.021389 0.0235394 2.95529 2.93727 2.98295 2.97962 0.000914408 ADAPT: 0.938392 0.0557 0.00877722 1.13931 -GFLOW: 0.993658 0.0196098 0.0213103 2.93909 2.95708 2.98166 2.98443 0.000728145 +GFLOW: 0.993658 0.0196098 0.0213103 2.95708 2.93909 2.98443 2.98166 0.000728145 ADAPT: 0.993658 0.0552662 0.00848943 1.17794 -GFLOW: 1 0.0194985 0.021177 2.96389 2.97427 2.98282 2.98517 0.000668589 +GFLOW: 1 0.0194985 0.021177 2.97427 2.96389 2.98517 2.98282 0.000668589 ADAPT: 1 0.00634208 5.51399e-06 1813.57 Number of steps = 18 Number of rejected steps = 5 -Time to complete flow = 6.002800e-01 seconds +Time to complete flow = 5.884449e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 6.013589e-01 seconds -exit: Fri Oct 28 19:17:57 2022 +Time = 5.895100e-01 seconds +exit: Tue Nov 1 11:29:31 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.errtol index f230abd08..5d47a3d53 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.errtol +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.errtol @@ -4,7 +4,7 @@ GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 5e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 3e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 3e-08 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.sample-out index 5ef78a0ad..9b51da1a5 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:17:57 2022 +start: Tue Nov 1 11:29:31 2022 Options selected... Generic double precision @@ -34,58 +34,58 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.360344e-04 +Time to reload gauge configuration = 2.610683e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.801418e-04 +Time to check unitarity = 2.849102e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.6835964225873505 0.689286618530199 2.493615815143509 2.66866524114337 2.019823710776547 2.215838902238242 -0.0002864649851840247 +GFLOW: 0.0625 0.6835964225873505 0.689286618530199 2.66866524114337 2.493615815143509 2.215838902238242 2.019823710776547 -0.0002864649851840247 ADAPT: 0.0625 0.0625 0.008744600407223805 1.143562831268897 -GFLOW: 0.1245902821036193 0.3819800675916002 0.4398064595430988 2.761111028726414 2.864937614932732 2.464559878530503 2.628681470395335 -0.007435577046840708 +GFLOW: 0.1245902821036193 0.3819800675916002 0.4398064595430988 2.864937614932732 2.761111028726414 2.628681470395335 2.464559878530503 -0.007435577046840708 ADAPT: 0.12459 0.0620902821036193 0.003803281294998176 2.629308542902503 -GFLOW: 0.1959128841135744 0.2218061967930049 0.2762828919379384 2.873765910224673 2.924481422917859 2.7010987299361 2.800972661433951 0.003920720441560787 +GFLOW: 0.1959128841135744 0.2218061967930049 0.2762828919379384 2.924481422917859 2.873765910224673 2.800972661433951 2.7010987299361 0.003920720441560787 ADAPT: 0.195913 0.07132260200995506 0.007150152193198876 1.398571628938452 -GFLOW: 0.2550457600688872 0.1552622579292973 0.197360399485441 2.917561250106928 2.94830269692433 2.801743522176772 2.867162813266096 0.005733569732389776 +GFLOW: 0.2550457600688872 0.1552622579292973 0.197360399485441 2.94830269692433 2.917561250106928 2.867162813266096 2.801743522176772 0.005733569732389776 ADAPT: 0.255046 0.05913287595531278 0.006155222659211164 1.624636597838619 -GFLOW: 0.3164283167619881 0.1136509810561381 0.14490563856602 2.934043708924205 2.954859013513772 2.861276454668527 2.905359879144369 0.0059711957331154 +GFLOW: 0.3164283167619881 0.1136509810561381 0.14490563856602 2.954859013513772 2.934043708924205 2.905359879144369 2.861276454668527 0.0059711957331154 ADAPT: 0.316428 0.0613825566931009 0.00773559875245263 1.292724754735944 -GFLOW: 0.3739302586715851 0.08868232253791068 0.1123862180684303 2.945132042365661 2.960959353226075 2.896391004927553 2.927811608209421 0.005423932598536746 +GFLOW: 0.3739302586715851 0.08868232253791068 0.1123862180684303 2.960959353226075 2.945132042365661 2.927811608209421 2.896391004927553 0.005423932598536746 ADAPT: 0.37393 0.05750194190959705 0.0074588152412268 1.340695496079245 -GFLOW: 0.4341653399013924 0.07050585150671157 0.08834354214147444 2.938574363370106 2.953779694625871 2.9194110841328 2.942645022390376 0.004945113589595816 +GFLOW: 0.4341653399013924 0.07050585150671157 0.08834354214147444 2.953779694625871 2.938574363370106 2.942645022390376 2.9194110841328 0.004945113589595816 ADAPT: 0.434165 0.06023508122980733 0.009556659306288771 1.046390760568339 -GFLOW: 0.4891125313601918 0.05888455339607399 0.07290262010772641 2.950028461390121 2.962459072085421 2.935511663017476 2.953075314543771 0.004202647964680944 +GFLOW: 0.4891125313601918 0.05888455339607399 0.07290262010772641 2.962459072085421 2.950028461390121 2.953075314543771 2.935511663017476 0.004202647964680944 ADAPT: 0.489113 0.0549471914587994 0.00791849493442332 1.262866249560627 -GFLOW: 0.5455353645607839 0.04973221686151052 0.06067028688176868 2.951300150930809 2.963165880483187 2.947058835295071 2.960636993117082 0.003591289456942637 +GFLOW: 0.5455353645607839 0.04973221686151052 0.06067028688176868 2.963165880483187 2.951300150930809 2.960636993117082 2.947058835295071 0.003591289456942637 ADAPT: 0.545535 0.05642283320059206 0.008099258840496608 1.23468087598332 -GFLOW: 0.6030391898137939 0.04249513879334075 0.05102167908120483 2.94466849230102 2.957997422754122 2.955396275847962 2.966184655606601 0.003078412144948436 +GFLOW: 0.6030391898137939 0.04249513879334075 0.05102167908120483 2.957997422754122 2.94466849230102 2.966184655606601 2.955396275847962 0.003078412144948436 ADAPT: 0.603039 0.05750382525300999 0.009014762206031909 1.109291600981871 -GFLOW: 0.6595895769680404 0.03695368044691828 0.04369921632358156 2.941437251335846 2.955753974997907 2.961836179512982 2.970529286789201 0.002585574226051064 +GFLOW: 0.6595895769680404 0.03695368044691828 0.04369921632358156 2.955753974997907 2.941437251335846 2.970529286789201 2.961836179512982 0.002585574226051064 ADAPT: 0.65959 0.05655038715424651 0.009148345364688549 1.093093843898671 -GFLOW: 0.7149303223029397 0.03263907257005026 0.03803899517518756 2.945332985957787 2.959056255236039 2.967188563284501 2.974169529358454 0.002110446655709743 +GFLOW: 0.7149303223029397 0.03263907257005026 0.03803899517518756 2.959056255236039 2.945332985957787 2.974169529358454 2.967188563284501 0.002110446655709743 ADAPT: 0.71493 0.05534074533489935 0.008573086404675441 1.166441060776709 -GFLOW: 0.7702724954749345 0.02907659912798445 0.03338766017741375 2.947875241368415 2.961379512128479 2.971474259292142 2.977121952285971 0.001710896117505042 +GFLOW: 0.7702724954749345 0.02907659912798445 0.03338766017741375 2.961379512128479 2.947875241368415 2.977121952285971 2.971474259292142 0.001710896117505042 ADAPT: 0.770272 0.05534217317199475 0.008224778287156904 1.215838245222382 -GFLOW: 0.8263865626504008 0.02604254343011623 0.02945832635850606 2.944321687374929 2.959278518429941 2.974746843266991 2.979427290753164 0.001394913326578953 +GFLOW: 0.8263865626504008 0.02604254343011623 0.02945832635850606 2.959278518429941 2.944321687374929 2.979427290753164 2.974746843266991 0.001394913326578953 ADAPT: 0.826387 0.05611406717546631 0.008486766466183756 1.178305075301159 -GFLOW: 0.8826916887941233 0.02349459864491877 0.02619950004872245 2.938592876761152 2.955692957574634 2.977332429179762 2.981289318417394 0.001136740543929972 +GFLOW: 0.8826916887941233 0.02349459864491877 0.02619950004872245 2.955692957574634 2.938592876761152 2.981289318417394 2.977332429179762 0.001136740543929972 ADAPT: 0.882692 0.05630512614372256 0.008856240436711366 1.12914730256729 -GFLOW: 0.9383916733641727 0.02138895533114845 0.02353935998136653 2.93726783171601 2.955285017118463 2.979619591184357 2.982945590188457 0.0009144060955121384 +GFLOW: 0.9383916733641727 0.02138895533114845 0.02353935998136653 2.955285017118463 2.93726783171601 2.982945590188457 2.979619591184357 0.0009144060955121384 ADAPT: 0.938392 0.05569998457004948 0.008777217526279331 1.139313224271771 -GFLOW: 0.9936578888816956 0.01960977891016353 0.02131032789613178 2.939093219247452 2.957083364812302 2.981661611549779 2.984429832497704 0.0007281473537413236 +GFLOW: 0.9936578888816956 0.01960977891016353 0.02131032789613178 2.957083364812302 2.939093219247452 2.984429832497704 2.981661611549779 0.0007281473537413236 ADAPT: 0.993658 0.05526621551752285 0.00848942182243941 1.177936520195969 -GFLOW: 1 0.01949847319940713 0.02117697291567539 2.963892902859471 2.974268453848215 2.982821829968515 2.985172403213517 0.0006685901590341388 +GFLOW: 1 0.01949847319940713 0.02117697291567539 2.974268453848215 2.963892902859471 2.985172403213517 2.982821829968515 0.0006685901590341388 ADAPT: 1 0.006342111118304405 5.51603099757058e-06 1812.89771656546 Number of steps = 18 Number of rejected steps = 5 -Time to complete flow = 6.621070e-01 seconds +Time to complete flow = 6.545570e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 6.637039e-01 seconds -exit: Fri Oct 28 19:17:58 2022 +Time = 6.562009e-01 seconds +exit: Tue Nov 1 11:29:32 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.errtol index 10a4b079b..15bdd091d 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.errtol +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.errtol @@ -2,9 +2,9 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 ADAPT: 0 0.0002 0 0 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0008 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0005 0.0005 0.0005 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0004 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0005 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0003 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.sample-out index 6ad6c9186..813208305 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:17:57 2022 +start: Tue Nov 1 11:29:30 2022 Options selected... Generic single precision @@ -34,44 +34,44 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.050400e-04 +Time to reload gauge configuration = 1.978874e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.985664e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.771013 0.762609 2.35235 2.51803 1.83004 1.99213 0.00916212 +GFLOW: 0.0625 0.771013 0.762609 2.51803 2.35235 1.99213 1.83004 0.00916212 ADAPT: 0.0625 0.0625 0.00236947 4.22035 -GFLOW: 0.158452 0.370397 0.433324 2.74123 2.86254 2.44715 2.62743 -0.0130226 +GFLOW: 0.158452 0.370397 0.433324 2.86254 2.74123 2.62743 2.44715 -0.0130226 ADAPT: 0.158452 0.0959518 0.00531323 1.88209 -GFLOW: 0.270996 0.181657 0.236298 2.89414 2.94425 2.74071 2.83653 -0.000572752 +GFLOW: 0.270996 0.181657 0.236298 2.94425 2.89414 2.83653 2.74071 -0.000572752 ADAPT: 0.270996 0.112544 0.0038479 2.59882 -GFLOW: 0.387948 0.104445 0.138281 2.94349 2.96538 2.86137 2.91011 0.00324961 +GFLOW: 0.387948 0.104445 0.138281 2.96538 2.94349 2.91011 2.86137 0.00324961 ADAPT: 0.387948 0.116952 0.00629245 1.58921 -GFLOW: 0.491016 0.071075 0.0923251 2.95924 2.97233 2.91163 2.94022 0.00344241 +GFLOW: 0.491016 0.071075 0.0923251 2.97233 2.95924 2.94022 2.91163 0.00344241 ADAPT: 0.491016 0.103067 0.00626559 1.59602 -GFLOW: 0.593122 0.0516591 0.0650649 2.96061 2.97157 2.93821 2.95638 0.00298537 +GFLOW: 0.593122 0.0516591 0.0650649 2.97157 2.96061 2.95638 2.93821 0.00298537 ADAPT: 0.593122 0.102107 0.00733134 1.36401 -GFLOW: 0.689558 0.0398602 0.0484521 2.9619 2.97263 2.95457 2.96666 0.00245257 +GFLOW: 0.689558 0.0398602 0.0484521 2.97263 2.9619 2.96666 2.95457 0.00245257 ADAPT: 0.689558 0.0964361 0.00736762 1.35729 -GFLOW: 0.790993 0.0312826 0.0366322 2.94248 2.95952 2.96287 2.97219 0.00205822 +GFLOW: 0.790993 0.0312826 0.0366322 2.95952 2.94248 2.97219 2.96287 0.00205822 ADAPT: 0.790993 0.101435 0.00990851 1.00923 -GFLOW: 0.881849 0.0258575 0.0293103 2.95424 2.96864 2.97187 2.9781 0.00153737 +GFLOW: 0.881849 0.0258575 0.0293103 2.96864 2.95424 2.9781 2.97187 0.00153737 ADAPT: 0.881849 0.0908556 0.00785212 1.27354 -GFLOW: 0.975407 0.0215936 0.0237193 2.95281 2.96844 2.97709 2.98173 0.00117482 +GFLOW: 0.975407 0.0215936 0.0237193 2.96844 2.95281 2.98173 2.97709 0.00117482 ADAPT: 0.975407 0.0935577 0.00786621 1.27126 -GFLOW: 1 0.0207483 0.0226218 2.98427 2.9889 2.98128 2.9842 0.000862002 +GFLOW: 1 0.0207483 0.0226218 2.9889 2.98427 2.9842 2.98128 0.000862002 ADAPT: 1 0.0245933 3.00327e-05 332.97 Number of steps = 11 Number of rejected steps = 5 -Time to complete flow = 1.486459e-01 seconds +Time to complete flow = 1.536419e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.497309e-01 seconds -exit: Fri Oct 28 19:17:57 2022 +Time = 1.547210e-01 seconds +exit: Tue Nov 1 11:29:30 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.errtol index 9bd036e38..fc42267a9 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.errtol +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.errtol @@ -2,9 +2,9 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 ADAPT: 0 2e-08 0 0 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 8e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 5e-08 5e-08 5e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 4e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 5e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 3e-08 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.sample-out index a17bb324a..50f337630 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:17:57 2022 +start: Tue Nov 1 11:29:30 2022 Options selected... Generic double precision @@ -34,44 +34,44 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.229214e-04 +Time to reload gauge configuration = 2.279282e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.789497e-04 +Time to check unitarity = 2.739429e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.7710131731574482 0.7626088229355815 2.352352162560256 2.518030482716568 1.830041058060231 1.992134797207159 0.009162119049090731 +GFLOW: 0.0625 0.7710131731574482 0.7626088229355815 2.518030482716568 2.352352162560256 1.992134797207159 1.830041058060231 0.009162119049090731 ADAPT: 0.0625 0.0625 0.002369473145186145 4.220347472735085 -GFLOW: 0.1584517777739811 0.3703972082737435 0.4333237576390977 2.741230906720543 2.862536095496159 2.447152753007533 2.627433165608428 -0.01302257392565206 +GFLOW: 0.1584517777739811 0.3703972082737435 0.4333237576390977 2.862536095496159 2.741230906720543 2.627433165608428 2.447152753007533 -0.01302257392565206 ADAPT: 0.158452 0.09595177777398115 0.005313228565514465 1.882094827409656 -GFLOW: 0.2709961538816 0.1816574876857759 0.2362981265719427 2.894140372473772 2.944251435220632 2.740713657406182 2.836529139814663 -0.0005727453081420538 +GFLOW: 0.2709961538816 0.1816574876857759 0.2362981265719427 2.944251435220632 2.894140372473772 2.836529139814663 2.740713657406182 -0.0005727453081420538 ADAPT: 0.270996 0.1125443761076189 0.003847884933363769 2.598830311502619 -GFLOW: 0.3879483005630797 0.1044445333142018 0.1382812895141263 2.943492045593234 2.965375180605545 2.861371171031312 2.910111288020072 0.003249611580485943 +GFLOW: 0.3879483005630797 0.1044445333142018 0.1382812895141263 2.965375180605545 2.943492045593234 2.910111288020072 2.861371171031312 0.003249611580485943 ADAPT: 0.387948 0.1169521466814797 0.006292438069231871 1.589209125298665 -GFLOW: 0.4910155317530608 0.071075047750828 0.09232509637189168 2.959237684817636 2.972327329870703 2.911633311706201 2.940215498131481 0.00344241128385191 +GFLOW: 0.4910155317530608 0.071075047750828 0.09232509637189168 2.972327329870703 2.959237684817636 2.940215498131481 2.911633311706201 0.00344241128385191 ADAPT: 0.491016 0.1030672311899811 0.006265581009206701 1.596021180686342 -GFLOW: 0.5931223415984229 0.05165907193843964 0.06506489264241658 2.960605718822336 2.971565582951555 2.938208090156609 2.956383755596155 0.002985375122850321 +GFLOW: 0.5931223415984229 0.05165907193843964 0.06506489264241658 2.971565582951555 2.960605718822336 2.956383755596155 2.938208090156609 0.002985375122850321 ADAPT: 0.593122 0.1021068098453621 0.007331328597941108 1.364009246947183 -GFLOW: 0.6895584254367113 0.03986024190747892 0.04845207066890312 2.961899444920505 2.972632250308443 2.954570215809 2.966661566349539 0.00245257046553297 +GFLOW: 0.6895584254367113 0.03986024190747892 0.04845207066890312 2.972632250308443 2.961899444920505 2.966661566349539 2.954570215809 0.00245257046553297 ADAPT: 0.689558 0.0964360838382884 0.007367613723016902 1.357291570370927 -GFLOW: 0.7909933604018464 0.03128259367026591 0.03663218255237122 2.942479107685102 2.959519042687628 2.962874024315219 2.972188917581546 0.002058219998197414 +GFLOW: 0.7909933604018464 0.03128259367026591 0.03663218255237122 2.959519042687628 2.942479107685102 2.972188917581546 2.962874024315219 0.002058219998197414 ADAPT: 0.790993 0.1014349349651351 0.009908519604892847 1.009232498774285 -GFLOW: 0.8818489798039313 0.0258574595418948 0.02931025914069634 2.954238998977832 2.968637617803243 2.971866423739014 2.978102340388217 0.001537377553830151 +GFLOW: 0.8818489798039313 0.0258574595418948 0.02931025914069634 2.968637617803243 2.954238998977832 2.978102340388217 2.971866423739014 0.001537377553830151 ADAPT: 0.881849 0.09085561940208484 0.007852125513880625 1.273540518719735 -GFLOW: 0.975406705173155 0.02159356180448532 0.0237193350773857 2.952812901876072 2.968436742216549 2.977086121935261 2.981733008905177 0.001174815605405013 +GFLOW: 0.975406705173155 0.02159356180448532 0.0237193350773857 2.968436742216549 2.952812901876072 2.981733008905177 2.977086121935261 0.001174815605405013 ADAPT: 0.975407 0.09355772536922363 0.007866206865615899 1.271260744960975 -GFLOW: 1 0.02074832903081137 0.02262180107017475 2.984266224406261 2.988899415475716 2.981277089454924 2.984199820904433 0.0008620048613622071 +GFLOW: 1 0.02074832903081137 0.02262180107017475 2.988899415475716 2.984266224406261 2.984199820904433 2.981277089454924 0.0008620048613622071 ADAPT: 1 0.02459329482684502 3.003565354947315e-05 332.93765303054 Number of steps = 11 Number of rejected steps = 5 -Time to complete flow = 1.638639e-01 seconds +Time to complete flow = 1.591620e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.654320e-01 seconds -exit: Fri Oct 28 19:17:57 2022 +Time = 1.607690e-01 seconds +exit: Tue Nov 1 11:29:31 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.sample-out index 61d5f1c37..1a0d6047e 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:10:26 2022 +start: Tue Nov 1 11:20:13 2022 Options selected... Generic single precision @@ -33,42 +33,42 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.959801e-04 +Time to reload gauge configuration = 1.931190e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.890297e-05 +Time to check unitarity = 6.914139e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.854375 0.829395 2.37618 2.36268 1.8023 1.77541 0.0472255 +GFLOW: 0.0625 0.854375 0.829395 2.36268 2.37618 1.77541 1.8023 0.0472255 ADAPT: 0.0625 0.0625 0.0047192 2.119 -GFLOW: 0.138763 0.560706 0.536835 2.72759 2.72336 2.36671 2.35062 0.0209253 +GFLOW: 0.138763 0.560706 0.536835 2.72336 2.72759 2.35062 2.36671 0.0209253 ADAPT: 0.138763 0.076263 0.00738167 1.35471 -GFLOW: 0.218928 0.357882 0.331197 2.87059 2.86654 2.65803 2.64104 0.0137614 +GFLOW: 0.218928 0.357882 0.331197 2.86654 2.87059 2.64104 2.65803 0.0137614 ADAPT: 0.218928 0.0801652 0.00363115 2.75395 -GFLOW: 0.325677 0.216143 0.188118 2.94141 2.93652 2.82693 2.80814 0.00968091 +GFLOW: 0.325677 0.216143 0.188118 2.93652 2.94141 2.80814 2.82693 0.00968091 ADAPT: 0.325677 0.106748 0.00468429 2.13479 -GFLOW: 0.456255 0.134023 0.108266 2.97138 2.96651 2.90847 2.89044 0.00542774 +GFLOW: 0.456255 0.134023 0.108266 2.96651 2.97138 2.89044 2.90847 0.00542774 ADAPT: 0.456255 0.130578 0.00343094 2.91465 -GFLOW: 0.633452 0.0822926 0.0610077 2.98567 2.98154 2.95167 2.93644 0.00214519 +GFLOW: 0.633452 0.0822926 0.0610077 2.98154 2.98567 2.93644 2.95167 0.00214519 ADAPT: 0.633452 0.177197 0.00378754 2.64024 -GFLOW: 0.789816 0.0591954 0.041288 2.98835 2.98547 2.96814 2.95526 0.000865788 +GFLOW: 0.789816 0.0591954 0.041288 2.98547 2.98835 2.95526 2.96814 0.000865788 ADAPT: 0.789816 0.156364 0.00858512 1.16481 -GFLOW: 0.88015 0.0504692 0.0341702 2.99155 2.98874 2.97422 2.96251 0.000445196 +GFLOW: 0.88015 0.0504692 0.0341702 2.98874 2.99155 2.96251 2.97422 0.000445196 ADAPT: 0.88015 0.0903338 0.00859996 1.1628 -GFLOW: 0.970392 0.0437911 0.0288741 2.9934 2.99074 2.97855 2.96786 0.000174927 +GFLOW: 0.970392 0.0437911 0.0288741 2.99074 2.9934 2.96786 2.97855 0.000174927 ADAPT: 0.970392 0.090242 0.0060064 1.66489 -GFLOW: 1 0.0419416 0.0274348 2.99427 2.99151 2.97973 2.96934 0.000107674 +GFLOW: 1 0.0419416 0.0274348 2.99151 2.99427 2.96934 2.97973 0.000107674 ADAPT: 1 0.0296079 0.000153453 65.1664 Number of steps = 10 Number of rejected steps = 2 -Time to complete flow = 2.972472e-01 seconds +Time to complete flow = 3.014588e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.982430e-01 seconds -exit: Fri Oct 28 19:10:26 2022 +Time = 3.024981e-01 seconds +exit: Tue Nov 1 11:20:13 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.sample-out index 3aa417d92..7be4d3a6a 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:10:26 2022 +start: Tue Nov 1 11:20:13 2022 Options selected... Generic double precision @@ -33,42 +33,42 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.059937e-04 +Time to reload gauge configuration = 2.079010e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.810955e-04 +Time to check unitarity = 2.789497e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.8543748488315552 0.8293947648705751 2.376179304698458 2.362677101758874 1.802304115569335 1.775411064068106 0.04722547316371967 +GFLOW: 0.0625 0.8543748488315552 0.8293947648705751 2.362677101758874 2.376179304698458 1.775411064068106 1.802304115569335 0.04722547316371967 ADAPT: 0.0625 0.0625 0.004719202039531842 2.119002305099874 -GFLOW: 0.1387630375188174 0.5607061075767752 0.5368345201426489 2.727593715411787 2.723356271593063 2.366709314388901 2.350623046899389 0.02092527400154888 +GFLOW: 0.1387630375188174 0.5607061075767752 0.5368345201426489 2.723356271593063 2.727593715411787 2.350623046899389 2.366709314388901 0.02092527400154888 ADAPT: 0.138763 0.07626303751881737 0.007381689026071324 1.354703505482429 -GFLOW: 0.2189282206782907 0.3578818300023276 0.3311969856062997 2.870593898467302 2.866535873253456 2.658029501349826 2.641043746696456 0.01376142583907406 +GFLOW: 0.2189282206782907 0.3578818300023276 0.3311969856062997 2.866535873253456 2.870593898467302 2.641043746696456 2.658029501349826 0.01376142583907406 ADAPT: 0.218928 0.08016518315947334 0.003631151142836851 2.753947606870327 -GFLOW: 0.325676598891913 0.216142613638687 0.1881183054358119 2.941407331082634 2.936519350018415 2.826929858524579 2.808140809891487 0.009680913270332671 +GFLOW: 0.325676598891913 0.216142613638687 0.1881183054358119 2.936519350018415 2.941407331082634 2.808140809891487 2.826929858524579 0.009680913270332671 ADAPT: 0.325677 0.1067483782136223 0.004684266846803418 2.134805792890318 -GFLOW: 0.4562549003806881 0.1340225814999241 0.108266450767241 2.971378194652041 2.966506606310527 2.90847307168652 2.890439452395144 0.005427745934847398 +GFLOW: 0.4562549003806881 0.1340225814999241 0.108266450767241 2.966506606310527 2.971378194652041 2.890439452395144 2.90847307168652 0.005427745934847398 ADAPT: 0.456255 0.130578301488775 0.003430935630303189 2.914656839282149 -GFLOW: 0.633452199136845 0.08229254129193055 0.0610076693586727 2.985670478315039 2.98153621595215 2.951670030884185 2.936443810336556 0.002145198376551098 +GFLOW: 0.633452199136845 0.08229254129193055 0.0610076693586727 2.98153621595215 2.985670478315039 2.936443810336556 2.951670030884185 0.002145198376551098 ADAPT: 0.633452 0.177197298756157 0.003787639840253783 2.640166547442898 -GFLOW: 0.7898137639195856 0.05919563761558863 0.04128823391684992 2.988349628063147 2.985472659890409 2.968141540256848 2.955260248164089 0.0008657837068862899 +GFLOW: 0.7898137639195856 0.05919563761558863 0.04128823391684992 2.985472659890409 2.988349628063147 2.955260248164089 2.968141540256848 0.0008657837068862899 ADAPT: 0.789814 0.1563615647827406 0.008585164651795422 1.164800024878811 -GFLOW: 0.8801476788007746 0.05046936757875957 0.03417032433581461 2.991552910704261 2.988742545205744 2.974218103279707 2.962508000665926 0.0004452028331794332 +GFLOW: 0.8801476788007746 0.05046936757875957 0.03417032433581461 2.988742545205744 2.991552910704261 2.962508000665926 2.974218103279707 0.0004452028331794332 ADAPT: 0.880148 0.09033391488118898 0.008599978434365446 1.162793613532806 -GFLOW: 0.9703896659353608 0.04379121749740365 0.02887417613134534 2.993403958793609 2.99073569978351 2.978552487615881 2.967854973309751 0.0001749344734665034 +GFLOW: 0.9703896659353608 0.04379121749740365 0.02887417613134534 2.99073569978351 2.993403958793609 2.967854973309751 2.978552487615881 0.0001749344734665034 ADAPT: 0.97039 0.09024198713458623 0.006006370243853228 1.664899031196712 -GFLOW: 1 0.04194154668274509 0.0274348058969209 2.99427469462497 2.991508411318257 2.979732171043291 2.969337488056075 0.0001076712428776674 +GFLOW: 1 0.04194154668274509 0.0274348058969209 2.991508411318257 2.99427469462497 2.969337488056075 2.979732171043291 0.0001076712428776674 ADAPT: 1 0.0296103340646392 0.00015349341050008 65.14937655903336 Number of steps = 10 Number of rejected steps = 2 -Time to complete flow = 3.421700e-01 seconds +Time to complete flow = 3.411300e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.437469e-01 seconds -exit: Fri Oct 28 19:10:26 2022 +Time = 3.427439e-01 seconds +exit: Tue Nov 1 11:20:14 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.sample-out index a949f477a..b75428618 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:10:25 2022 +start: Tue Nov 1 11:20:13 2022 Options selected... Generic single precision @@ -33,36 +33,36 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.100468e-04 +Time to reload gauge configuration = 1.978874e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 7.104874e-05 +Time to check unitarity = 6.890297e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.905792 0.879676 2.21651 2.1972 1.61657 1.58347 0.0557441 +GFLOW: 0.0625 0.905792 0.879676 2.1972 2.21651 1.58347 1.61657 0.0557441 ADAPT: 0.0625 0.0625 0.00103211 9.68891 -GFLOW: 0.189079 0.533008 0.508515 2.72229 2.71727 2.37955 2.36232 0.0184883 +GFLOW: 0.189079 0.533008 0.508515 2.71727 2.72229 2.36232 2.37955 0.0184883 ADAPT: 0.189079 0.126579 0.00930747 1.07441 -GFLOW: 0.312241 0.305016 0.277569 2.88853 2.88397 2.7105 2.69226 0.010484 +GFLOW: 0.312241 0.305016 0.277569 2.88397 2.88853 2.69226 2.7105 0.010484 ADAPT: 0.312241 0.123161 0.0046648 2.14371 -GFLOW: 0.463105 0.171655 0.144234 2.95512 2.95001 2.8677 2.84858 0.00657103 +GFLOW: 0.463105 0.171655 0.144234 2.95001 2.95512 2.84858 2.8677 0.00657103 ADAPT: 0.463105 0.150865 0.00499195 2.00322 -GFLOW: 0.643776 0.101197 0.0775124 2.97993 2.97527 2.93523 2.91825 0.00316599 +GFLOW: 0.643776 0.101197 0.0775124 2.97527 2.97993 2.91825 2.93523 0.00316599 ADAPT: 0.643776 0.180671 0.00392557 2.5474 -GFLOW: 0.878186 0.0608037 0.0422015 2.99045 2.98677 2.96711 2.95367 0.00100735 +GFLOW: 0.878186 0.0608037 0.0422015 2.98677 2.99045 2.95367 2.96711 0.00100735 ADAPT: 0.878186 0.23441 0.00286522 3.49013 -GFLOW: 1 0.0493726 0.032906 2.99289 2.98965 2.97495 2.96307 0.000482842 +GFLOW: 1 0.0493726 0.032906 2.98965 2.99289 2.96307 2.97495 0.000482842 ADAPT: 1 0.121814 0.000226299 44.1893 Number of steps = 7 Number of rejected steps = 0 -Time to complete flow = 7.096505e-02 seconds +Time to complete flow = 6.933498e-02 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 7.203698e-02 seconds -exit: Fri Oct 28 19:10:25 2022 +Time = 7.036591e-02 seconds +exit: Tue Nov 1 11:20:13 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.sample-out index b48f9091e..be6e77591 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:10:25 2022 +start: Tue Nov 1 11:20:13 2022 Options selected... Generic double precision @@ -33,36 +33,36 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.038479e-04 +Time to reload gauge configuration = 2.079010e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.791882e-04 +Time to check unitarity = 2.779961e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0625 0.9057920856915209 0.8796763820494508 2.216509410522774 2.197197056299902 1.616570355489586 1.58347344130154 0.05574407551897611 +GFLOW: 0.0625 0.9057920856915209 0.8796763820494508 2.197197056299902 2.216509410522774 1.58347344130154 1.616570355489586 0.05574407551897611 ADAPT: 0.0625 0.0625 0.001032095916181361 9.689021963190084 -GFLOW: 0.189079566136834 0.5330063254290119 0.5085142606665809 2.722290099017613 2.717272522951315 2.379554089502183 2.36232191962173 0.01848828122776391 +GFLOW: 0.189079566136834 0.5330063254290119 0.5085142606665809 2.717272522951315 2.722290099017613 2.36232191962173 2.379554089502183 0.01848828122776391 ADAPT: 0.18908 0.126579566136834 0.009307581649904509 1.074392938589219 -GFLOW: 0.3122410529634178 0.3050158582707601 0.2775686486293933 2.8885290288248 2.88397255919851 2.710503741943249 2.692256813773762 0.01048397749453917 +GFLOW: 0.3122410529634178 0.3050158582707601 0.2775686486293933 2.88397255919851 2.8885290288248 2.692256813773762 2.710503741943249 0.01048397749453917 ADAPT: 0.312241 0.1231614868265838 0.004664779294079845 2.143724144182166 -GFLOW: 0.4631059363957019 0.1716548642658613 0.1442337211189632 2.955120445069396 2.950006642121069 2.867700109279364 2.848584909653975 0.006571006254997598 +GFLOW: 0.4631059363957019 0.1716548642658613 0.1442337211189632 2.950006642121069 2.955120445069396 2.848584909653975 2.867700109279364 0.006571006254997598 ADAPT: 0.463106 0.1508648834322841 0.00499197386563035 2.003215615540342 -GFLOW: 0.643776610852913 0.1011969138211975 0.07751218743658897 2.979925359542488 2.975272286416414 2.935232582097214 2.918253335137282 0.003165963158196718 +GFLOW: 0.643776610852913 0.1011969138211975 0.07751218743658897 2.975272286416414 2.979925359542488 2.918253335137282 2.935232582097214 0.003165963158196718 ADAPT: 0.643777 0.1806706744572111 0.003925569958451302 2.547400786596898 -GFLOW: 0.8781870943375 0.06080359827001013 0.04220142826857681 2.990449917618641 2.986771000616521 2.96710915776975 2.953672662653165 0.001007336805078151 +GFLOW: 0.8781870943375 0.06080359827001013 0.04220142826857681 2.986771000616521 2.990449917618641 2.953672662653165 2.96710915776975 0.001007336805078151 ADAPT: 0.878187 0.2344104834845869 0.002865213054923497 3.49014185273807 -GFLOW: 1 0.04937260171838897 0.03290598594763042 2.992888213650807 2.989647291085301 2.974954425343912 2.96307348170519 0.0004828399513138239 +GFLOW: 1 0.04937260171838897 0.03290598594763042 2.989647291085301 2.992888213650807 2.96307348170519 2.974954425343912 0.0004828399513138239 ADAPT: 1 0.1218129056625 0.0002262791389213261 44.1932033490584 Number of steps = 7 Number of rejected steps = 0 -Time to complete flow = 7.628584e-02 seconds +Time to complete flow = 7.544017e-02 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 7.787681e-02 seconds -exit: Fri Oct 28 19:10:26 2022 +Time = 7.700515e-02 seconds +exit: Tue Nov 1 11:20:13 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.errtol index 056301c39..feba2d4b5 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.errtol @@ -1,10 +1,10 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 ADAPT: 0 0.0002 0 0 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0003 0.0004 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0003 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0003 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0005 0.0004 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0003 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0005 0.0005 0.0005 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0004 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0005 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.sample-out index d17e9238e..b155a1027 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:10:26 2022 +start: Tue Nov 1 11:20:14 2022 Options selected... Generic single precision @@ -34,56 +34,56 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.059937e-04 +Time to reload gauge configuration = 1.978874e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.890297e-05 +Time to check unitarity = 8.201599e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0359955 0.869392 0.836963 2.27108 2.42501 1.69594 1.82862 0.0227316 +GFLOW: 0.0359955 0.869392 0.836963 2.42501 2.27108 1.82862 1.69594 0.0227316 ADAPT: 0.0359955 0.0359955 0.00784612 1.27452 -GFLOW: 0.0730709 0.615841 0.638472 2.56281 2.72084 2.12176 2.31457 -0.00770779 +GFLOW: 0.0730709 0.615841 0.638472 2.72084 2.56281 2.31457 2.12176 -0.00770779 ADAPT: 0.0730709 0.0370755 0.00635072 1.57462 -GFLOW: 0.114048 0.419476 0.474063 2.73443 2.84803 2.41138 2.58266 -0.00759194 +GFLOW: 0.114048 0.419476 0.474063 2.84803 2.73443 2.58266 2.41138 -0.00759194 ADAPT: 0.114048 0.0409766 0.00445611 2.24411 -GFLOW: 0.165013 0.276767 0.335602 2.8456 2.91444 2.62279 2.74592 0.00065871 +GFLOW: 0.165013 0.276767 0.335602 2.91444 2.8456 2.74592 2.62279 0.00065871 ADAPT: 0.165013 0.0509652 0.00439655 2.27451 -GFLOW: 0.228687 0.180679 0.228072 2.91286 2.9506 2.76671 2.84437 0.00531371 +GFLOW: 0.228687 0.180679 0.228072 2.9506 2.91286 2.84437 2.76671 0.00531371 ADAPT: 0.228687 0.0636737 0.00276344 3.61867 -GFLOW: 0.321555 0.110779 0.141227 2.9552 2.97297 2.86869 2.91013 0.00580635 +GFLOW: 0.321555 0.110779 0.141227 2.97297 2.9552 2.91013 2.86869 0.00580635 ADAPT: 0.321555 0.0928682 0.00378381 2.64284 -GFLOW: 0.443533 0.0680077 0.084707 2.97615 2.98418 2.9269 2.94723 0.00433698 +GFLOW: 0.443533 0.0680077 0.084707 2.98418 2.97615 2.94723 2.9269 0.00433698 ADAPT: 0.443533 0.121978 0.00546041 1.83136 -GFLOW: 0.507569 0.0551953 0.0673967 2.98098 2.98665 2.94325 2.95778 0.00357088 +GFLOW: 0.507569 0.0551953 0.0673967 2.98665 2.98098 2.95778 2.94325 0.00357088 ADAPT: 0.507569 0.0640368 0.00872621 1.14597 -GFLOW: 0.56332 0.046867 0.0561409 2.9846 2.98883 2.95367 2.96457 0.00297933 +GFLOW: 0.56332 0.046867 0.0561409 2.98883 2.9846 2.96457 2.95367 0.00297933 ADAPT: 0.56332 0.0557506 0.00857356 1.16638 -GFLOW: 0.619071 0.04034 0.0473572 2.98718 2.99038 2.96157 2.96979 0.0024541 +GFLOW: 0.619071 0.04034 0.0473572 2.99038 2.98718 2.96979 2.96157 0.0024541 ADAPT: 0.619071 0.055751 0.00821832 1.21679 -GFLOW: 0.675614 0.0350512 0.0402966 2.98892 2.99138 2.96776 2.97394 0.00199382 +GFLOW: 0.675614 0.0350512 0.0402966 2.99138 2.98892 2.97394 2.96776 0.00199382 ADAPT: 0.675614 0.0565434 0.00852003 1.1737 -GFLOW: 0.732276 0.0307497 0.0346197 2.99006 2.99202 2.97264 2.97728 0.00160274 +GFLOW: 0.732276 0.0307497 0.0346197 2.99202 2.99006 2.97728 2.97264 0.00160274 ADAPT: 0.732276 0.056662 0.00920854 1.08595 -GFLOW: 0.787605 0.0272845 0.0301094 2.99113 2.99272 2.97648 2.97996 0.00128172 +GFLOW: 0.787605 0.0272845 0.0301094 2.99272 2.99113 2.97996 2.97648 0.00128172 ADAPT: 0.787605 0.0553288 0.00937667 1.06648 -GFLOW: 0.841307 0.0244614 0.0264898 2.99238 2.99366 2.97954 2.98214 0.00102153 +GFLOW: 0.841307 0.0244614 0.0264898 2.99366 2.99238 2.98214 2.97954 0.00102153 ADAPT: 0.841307 0.0537022 0.00860744 1.16179 -GFLOW: 0.894939 0.0220597 0.0234602 2.9934 2.99443 2.98206 2.98398 0.000808843 +GFLOW: 0.894939 0.0220597 0.0234602 2.99443 2.9934 2.98398 2.98206 0.000808843 ADAPT: 0.894939 0.0536321 0.00767116 1.30358 -GFLOW: 0.950597 0.0199208 0.0208086 2.99379 2.99471 2.98423 2.98559 0.000632425 +GFLOW: 0.950597 0.0199208 0.0208086 2.99471 2.99379 2.98559 2.98423 0.000632425 ADAPT: 0.950597 0.055658 0.00766535 1.30457 -GFLOW: 1 0.0182775 0.0188039 2.9953 2.99589 2.98589 2.98685 0.000502461 +GFLOW: 1 0.0182775 0.0188039 2.99589 2.9953 2.98685 2.98589 0.000502461 ADAPT: 1 0.0494025 0.0056356 1.77443 Number of steps = 17 Number of rejected steps = 3 -Time to complete flow = 5.096719e-01 seconds +Time to complete flow = 5.053911e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.107181e-01 seconds -exit: Fri Oct 28 19:10:27 2022 +Time = 5.064361e-01 seconds +exit: Tue Nov 1 11:20:14 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.errtol index 57d696288..ba1b9b646 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.errtol +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.errtol @@ -1,10 +1,10 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 ADAPT: 0 2e-08 0 0 -GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 3e-08 4e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 3e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 3e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 4e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 3e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 5e-08 5e-08 5e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 4e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 5e-08 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.sample-out index 19adfa986..8485985ac 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:10:27 2022 +start: Tue Nov 1 11:20:14 2022 Options selected... Generic double precision @@ -34,56 +34,56 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.179146e-04 +Time to reload gauge configuration = 2.110004e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.770424e-04 +Time to check unitarity = 2.779961e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 ADAPT: 0 0.0625 0 0 -GFLOW: 0.03599546846841682 0.8693921629065754 0.8369631263535411 2.271076952321912 2.425012888161282 1.695937200650389 1.828622014599843 0.0227316020814034 +GFLOW: 0.03599546846841682 0.8693921629065754 0.8369631263535411 2.425012888161282 2.271076952321912 1.828622014599843 1.695937200650389 0.0227316020814034 ADAPT: 0.0359955 0.03599546846841682 0.007846116245504929 1.274515911707151 -GFLOW: 0.07307092629997611 0.6158407801989489 0.6384715661258779 2.562808419376144 2.720840587094379 2.121758741276045 2.314569742806373 -0.007707766960421213 +GFLOW: 0.07307092629997611 0.6158407801989489 0.6384715661258779 2.720840587094379 2.562808419376144 2.314569742806373 2.121758741276045 -0.007707766960421213 ADAPT: 0.0730709 0.03707545783155929 0.006350719617321549 1.57462470437603 -GFLOW: 0.1140475163537169 0.419476395846081 0.4740630339169947 2.734433491859986 2.848028141567006 2.41137571808105 2.582655409126051 -0.007591895520757173 +GFLOW: 0.1140475163537169 0.419476395846081 0.4740630339169947 2.848028141567006 2.734433491859986 2.582655409126051 2.41137571808105 -0.007591895520757173 ADAPT: 0.114048 0.04097659005374081 0.004456105847642471 2.244111864014756 -GFLOW: 0.1650127775275925 0.2767665933543997 0.3356023082069865 2.845604024601595 2.914443833151062 2.622788084057924 2.745917767154941 0.0006587288266775075 +GFLOW: 0.1650127775275925 0.2767665933543997 0.3356023082069865 2.914443833151062 2.845604024601595 2.745917767154941 2.622788084057924 0.0006587288266775075 ADAPT: 0.165013 0.05096526117387558 0.00439657927438528 2.274495551180111 -GFLOW: 0.2286863997821815 0.1806791578904916 0.2280717472437534 2.912859905274114 2.950597019917335 2.766710272454005 2.844365307051595 0.00531374289054687 +GFLOW: 0.2286863997821815 0.1806791578904916 0.2280717472437534 2.950597019917335 2.912859905274114 2.844365307051595 2.766710272454005 0.00531374289054687 ADAPT: 0.228686 0.06367362225458896 0.00276342173870514 3.61870208225463 -GFLOW: 0.3215546876050466 0.1107790009340462 0.1412271077191908 2.955200669205923 2.972969123031361 2.868694623421041 2.910128476198361 0.005806356241307806 +GFLOW: 0.3215546876050466 0.1107790009340462 0.1412271077191908 2.972969123031361 2.955200669205923 2.910128476198361 2.868694623421041 0.005806356241307806 ADAPT: 0.321555 0.09286828782286509 0.0037838694864118 2.642797283550836 -GFLOW: 0.4435319816127548 0.0680077945383995 0.08470716321065107 2.976154852524344 2.984180261626127 2.926898592814602 2.947230389988988 0.004336994004604666 +GFLOW: 0.4435319816127548 0.0680077945383995 0.08470716321065107 2.984180261626127 2.976154852524344 2.947230389988988 2.926898592814602 0.004336994004604666 ADAPT: 0.443532 0.1219772940077082 0.005459568051099607 1.831646735859609 -GFLOW: 0.5075684643966295 0.05519546826068487 0.06739694009984783 2.980982149977228 2.986653458897933 2.943247339781974 2.957778559799288 0.00357090090623978 +GFLOW: 0.5075684643966295 0.05519546826068487 0.06739694009984783 2.986653458897933 2.980982149977228 2.957778559799288 2.943247339781974 0.00357090090623978 ADAPT: 0.507568 0.06403648278387479 0.008726234283002454 1.145969690440087 -GFLOW: 0.5633200546981142 0.04686698079319624 0.05614086845762734 2.984601900144437 2.988826408794484 2.953668405409209 2.964567109613432 0.002979332227915439 +GFLOW: 0.5633200546981142 0.04686698079319624 0.05614086845762734 2.988826408794484 2.984601900144437 2.964567109613432 2.953668405409209 0.002979332227915439 ADAPT: 0.56332 0.05575159030148464 0.008573577714769258 1.166374217705348 -GFLOW: 0.6190720184380699 0.0403398485010272 0.04735701460512243 2.987182197549172 2.990376182957766 2.961565710657799 2.969785428825889 0.00245409061554925 +GFLOW: 0.6190720184380699 0.0403398485010272 0.04735701460512243 2.990376182957766 2.987182197549172 2.969785428825889 2.961565710657799 0.00245409061554925 ADAPT: 0.619072 0.05575196373995577 0.008219036640654613 1.216687604303409 -GFLOW: 0.675614752196207 0.03505112239960841 0.04029654586709447 2.988922021101231 2.991380852372741 2.967758903303588 2.973943125169077 0.001993823378603642 +GFLOW: 0.675614752196207 0.03505112239960841 0.04029654586709447 2.991380852372741 2.988922021101231 2.973943125169077 2.967758903303588 0.001993823378603642 ADAPT: 0.675615 0.05654273375813706 0.008520677512822048 1.17361559394213 -GFLOW: 0.7322746383957933 0.03074981421625476 0.03461981425444815 2.990064728012324 2.992018153333081 2.97264261962546 2.977280248624934 0.001602747361184953 +GFLOW: 0.7322746383957933 0.03074981421625476 0.03461981425444815 2.992018153333081 2.990064728012324 2.977280248624934 2.97264261962546 0.001602747361184953 ADAPT: 0.732275 0.05665988619958627 0.009208075909633498 1.08600321045768 -GFLOW: 0.7876023880155639 0.02728470013759719 0.03010956648743605 2.991129689377864 2.992719947590092 2.976479519145164 2.979955898010066 0.001281729576855319 +GFLOW: 0.7876023880155639 0.02728470013759719 0.03010956648743605 2.992719947590092 2.991129689377864 2.979955898010066 2.976479519145164 0.001281729576855319 ADAPT: 0.787602 0.0553277496197706 0.009375332884893017 1.066628793108087 -GFLOW: 0.8413061091726908 0.02446145169036229 0.02648991948901263 2.992378360448772 2.993656843220155 2.979537440142581 2.98213608346167 0.001021542036101855 +GFLOW: 0.8413061091726908 0.02446145169036229 0.02648991948901263 2.993656843220155 2.992378360448772 2.98213608346167 2.979537440142581 0.001021542036101855 ADAPT: 0.841306 0.0537037211571269 0.008606660882287271 1.161890788630961 -GFLOW: 0.8949412906064249 0.02205961993358782 0.02346007814009897 2.993400023896958 2.994431898924856 2.982063496780731 2.983975883200209 0.0008088353151375755 +GFLOW: 0.8949412906064249 0.02205961993358782 0.02346007814009897 2.994431898924856 2.993400023896958 2.983975883200209 2.982063496780731 0.0008088353151375755 ADAPT: 0.894941 0.05363518143373416 0.007671997380696502 1.303441529471971 -GFLOW: 0.9506005227587443 0.01992066368083793 0.02080844640640917 2.993784315174669 2.994712297316639 2.984231015459415 2.985587699693094 0.0006324193766027004 +GFLOW: 0.9506005227587443 0.01992066368083793 0.02080844640640917 2.994712297316639 2.993784315174669 2.985587699693094 2.984231015459415 0.0006324193766027004 ADAPT: 0.950601 0.0556592321523194 0.007667167041163409 1.304262701766128 -GFLOW: 1 0.01827746029273741 0.01880386248156381 2.995297647211201 2.995889908828186 2.985891539155754 2.986853967038692 0.0005024669121521699 +GFLOW: 1 0.01827746029273741 0.01880386248156381 2.995889908828186 2.995297647211201 2.986853967038692 2.985891539155754 0.0005024669121521699 ADAPT: 1 0.04939947724125571 0.005635982002035225 1.77431368595373 Number of steps = 17 Number of rejected steps = 3 -Time to complete flow = 5.676069e-01 seconds +Time to complete flow = 5.683300e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.691988e-01 seconds -exit: Fri Oct 28 19:10:28 2022 +Time = 5.699420e-01 seconds +exit: Tue Nov 1 11:20:15 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.errtol index 9b19c25bb..edef102e6 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.errtol +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.errtol @@ -2,11 +2,11 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 ADAPT: 0 0.0002 0 0 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0004 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0005 0.0005 0.0004 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0003 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0004 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0005 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0007 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.sample-out index 2df3e9bbb..ad6333684 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:10:26 2022 +start: Tue Nov 1 11:20:14 2022 Options selected... Generic single precision @@ -34,42 +34,42 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.969337e-04 +Time to reload gauge configuration = 2.031326e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 7.009506e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 ADAPT: 0 0.0625 0 0 -GFLOW: 0.0571049 0.800714 0.787511 2.31039 2.46834 1.77238 1.92182 0.0138191 +GFLOW: 0.0571049 0.800714 0.787511 2.46834 2.31039 1.92182 1.77238 0.0138191 ADAPT: 0.0571049 0.0571049 0.00857134 1.16668 -GFLOW: 0.114215 0.52019 0.563028 2.61157 2.76578 2.2257 2.42327 -0.0134499 +GFLOW: 0.114215 0.52019 0.563028 2.76578 2.61157 2.42327 2.2257 -0.0134499 ADAPT: 0.114215 0.0571103 0.0061431 1.62784 -GFLOW: 0.178038 0.324474 0.388336 2.78263 2.88482 2.52041 2.6799 -0.0101022 +GFLOW: 0.178038 0.324474 0.388336 2.88482 2.78263 2.6799 2.52041 -0.0101022 ADAPT: 0.178038 0.0638227 0.00547789 1.82552 -GFLOW: 0.25214 0.203254 0.260061 2.88071 2.93841 2.70965 2.81491 -0.00202889 +GFLOW: 0.25214 0.203254 0.260061 2.93841 2.88071 2.81491 2.70965 -0.00202889 ADAPT: 0.25214 0.0741016 0.00427716 2.338 -GFLOW: 0.345572 0.125962 0.165724 2.93753 2.96638 2.8324 2.89269 0.00249314 +GFLOW: 0.345572 0.125962 0.165724 2.96638 2.93753 2.89269 2.8324 0.00249314 ADAPT: 0.345572 0.0934329 0.00305802 3.27009 -GFLOW: 0.47732 0.0743885 0.0966286 2.96999 2.9823 2.91137 2.94037 0.00353463 +GFLOW: 0.47732 0.0743885 0.0966286 2.9823 2.96999 2.94037 2.91137 0.00353463 ADAPT: 0.47732 0.131748 0.00332107 3.01107 -GFLOW: 0.658055 0.0430864 0.0528876 2.98597 2.99061 2.95528 2.96707 0.00250409 +GFLOW: 0.658055 0.0430864 0.0528876 2.99061 2.98597 2.96707 2.95528 0.00250409 ADAPT: 0.658055 0.180734 0.00317757 3.14706 -GFLOW: 0.826566 0.0290068 0.0334699 2.99044 2.99275 2.97241 2.97804 0.00145501 +GFLOW: 0.826566 0.0290068 0.0334699 2.99275 2.99044 2.97804 2.97241 0.00145501 ADAPT: 0.826566 0.168511 0.00856898 1.167 -GFLOW: 0.914457 0.0242333 0.0269795 2.99305 2.99453 2.9785 2.98205 0.00106193 +GFLOW: 0.914457 0.0242333 0.0269795 2.99453 2.99305 2.98205 2.9785 0.00106193 ADAPT: 0.914457 0.0878912 0.00863081 1.15864 -GFLOW: 1 0.0206362 0.0222634 2.99469 2.99563 2.98265 2.9849 0.000764279 +GFLOW: 1 0.0206362 0.0222634 2.99563 2.99469 2.9849 2.98265 0.000764279 ADAPT: 1 0.0855431 0.00527397 1.8961 Number of steps = 10 Number of rejected steps = 3 -Time to complete flow = 1.203330e-01 seconds +Time to complete flow = 1.192241e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.213620e-01 seconds -exit: Fri Oct 28 19:10:26 2022 +Time = 1.202600e-01 seconds +exit: Tue Nov 1 11:20:14 2022 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.errtol index 1b0186a08..d39b4750b 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.errtol +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.errtol @@ -2,11 +2,11 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 ADAPT: 0 2e-08 0 0 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 4e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 5e-08 5e-08 4e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 3e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 4e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 5e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 ADAPT: 2e-08 2e-08 2e-08 7e-08 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.sample-out index d1e04e374..844dc9279 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 19:10:26 2022 +start: Tue Nov 1 11:20:14 2022 Options selected... Generic double precision @@ -34,42 +34,42 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.100468e-04 +Time to reload gauge configuration = 2.129078e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.799034e-04 +Time to check unitarity = 2.808571e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge #LABEL2 time stepsize distance local_tol/distance -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 ADAPT: 0 0.0625 0 0 -GFLOW: 0.05710494765115298 0.8007141141671855 0.7875110119468766 2.310394358604133 2.468341842034199 1.772384782568168 1.921820807049433 0.01381909135754463 +GFLOW: 0.05710494765115298 0.8007141141671855 0.7875110119468766 2.468341842034199 2.310394358604133 1.921820807049433 1.772384782568168 0.01381909135754463 ADAPT: 0.0571049 0.05710494765115298 0.008571374726118698 1.166673995657662 -GFLOW: 0.1142151697328976 0.5201900118195394 0.5630279958963903 2.611570496920689 2.765781282764239 2.225698174762529 2.423270868979434 -0.01344988709409152 +GFLOW: 0.1142151697328976 0.5201900118195394 0.5630279958963903 2.765781282764239 2.611570496920689 2.423270868979434 2.225698174762529 -0.01344988709409152 ADAPT: 0.114215 0.0571102220817446 0.006143089434918998 1.627845419791102 -GFLOW: 0.1780378700222671 0.3244737145459834 0.3883362274783069 2.782628209418442 2.884821516767513 2.520414238285682 2.679896190973487 -0.01010214680031283 +GFLOW: 0.1780378700222671 0.3244737145459834 0.3883362274783069 2.884821516767513 2.782628209418442 2.679896190973487 2.520414238285682 -0.01010214680031283 ADAPT: 0.178038 0.06382270028936957 0.005477871563606376 1.825526554225464 -GFLOW: 0.2521395689359674 0.2032539341222995 0.2600608987829447 2.880707364778205 2.938406153828363 2.709645705736638 2.814912009707866 -0.002028842914517146 +GFLOW: 0.2521395689359674 0.2032539341222995 0.2600608987829447 2.938406153828363 2.880707364778205 2.814912009707866 2.709645705736638 -0.002028842914517146 ADAPT: 0.25214 0.07410169891370025 0.004277157567503802 2.33800131095851 -GFLOW: 0.3455725101661126 0.1259615163248149 0.1657241297907014 2.937534388817494 2.966382511297933 2.832398966064183 2.892687466533452 0.002493169825071404 +GFLOW: 0.3455725101661126 0.1259615163248149 0.1657241297907014 2.966382511297933 2.937534388817494 2.892687466533452 2.832398966064183 0.002493169825071404 ADAPT: 0.345573 0.0934329412301452 0.003058037894602972 3.270070661206868 -GFLOW: 0.4773200977066691 0.07438853172287574 0.0966286316443577 2.96998840246232 2.982295894856166 2.91137159051234 2.940366129022082 0.0035346388135707 +GFLOW: 0.4773200977066691 0.07438853172287574 0.0966286316443577 2.982295894856166 2.96998840246232 2.940366129022082 2.91137159051234 0.0035346388135707 ADAPT: 0.47732 0.1317475875405565 0.00332102109025569 3.011122100170128 -GFLOW: 0.6580551540870633 0.04308631513816136 0.05288751578145236 2.98597481309482 2.990613793264106 2.955278870881358 2.96707404551861 0.002504090832113422 +GFLOW: 0.6580551540870633 0.04308631513816136 0.05288751578145236 2.990613793264106 2.98597481309482 2.96707404551861 2.955278870881358 0.002504090832113422 ADAPT: 0.658055 0.1807350563803942 0.003177716384036345 3.146913944314303 -GFLOW: 0.8265669338751436 0.02900668620879503 0.03346979901196772 2.990437435803951 2.992754600583268 2.972411276134933 2.978036342937336 0.001455005935704717 +GFLOW: 0.8265669338751436 0.02900668620879503 0.03346979901196772 2.992754600583268 2.990437435803951 2.978036342937336 2.972411276134933 0.001455005935704717 ADAPT: 0.826567 0.1685117797880803 0.008568954261208732 1.167003545026439 -GFLOW: 0.9144560313717522 0.02423333083399361 0.02697950074994419 2.993047311494903 2.994526737830257 2.97850434616194 2.982052081158894 0.001061928192022287 +GFLOW: 0.9144560313717522 0.02423333083399361 0.02697950074994419 2.994526737830257 2.993047311494903 2.982052081158894 2.97850434616194 0.001061928192022287 ADAPT: 0.914456 0.08788909749660864 0.008630844961117096 1.15863510989377 -GFLOW: 1 0.02063617728955537 0.02226340655817641 2.994685815413246 2.995628201699507 2.982647762144869 2.984895887312241 0.0007642813937907262 +GFLOW: 1 0.02063617728955537 0.02226340655817641 2.995628201699507 2.994685815413246 2.984895887312241 2.982647762144869 0.0007642813937907262 ADAPT: 1 0.08554396862824776 0.00527385068403723 1.896147729450849 Number of steps = 10 Number of rejected steps = 3 -Time to complete flow = 1.293502e-01 seconds +Time to complete flow = 1.333461e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.309221e-01 seconds -exit: Fri Oct 28 19:10:26 2022 +Time = 1.349261e-01 seconds +exit: Tue Nov 1 11:20:14 2022 diff --git a/wilson_flow/test/wilson_flow_bbb.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_bbb.symanzik.1.sample-out index a6adfc71d..27737311b 100644 --- a/wilson_flow/test/wilson_flow_bbb.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_bbb.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:11:11 2022 +start: Mon Oct 31 16:18:13 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.940727e-04 +Time to reload gauge configuration = 1.990795e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.853779 0.828724 2.37564 2.36228 1.80287 1.77599 0.0467978 -GFLOW: 0.125 0.606984 0.5833 2.68457 2.67971 2.28986 2.273 0.0229981 -GFLOW: 0.1875 0.424309 0.398718 2.82861 2.82473 2.56817 2.5518 0.0151546 -GFLOW: 0.25 0.305523 0.27797 2.89893 2.89452 2.72345 2.70559 0.012355 -GFLOW: 0.3125 0.22895 0.200855 2.93559 2.93074 2.81254 2.79379 0.010112 -GFLOW: 0.375 0.178024 0.150554 2.95611 2.95112 2.86619 2.84738 0.00788574 -GFLOW: 0.4375 0.142764 0.116568 2.96842 2.96351 2.90024 2.88197 0.00591766 -GFLOW: 0.5 0.117404 0.0927609 2.97627 2.97155 2.92293 2.90553 0.00433516 -GFLOW: 0.5625 0.0985616 0.0755316 2.98155 2.97709 2.93872 2.92233 0.00312793 -GFLOW: 0.625 0.0841808 0.0627107 2.98525 2.98106 2.95011 2.93476 0.00223027 -GFLOW: 0.6875 0.0729592 0.0529437 2.98794 2.98402 2.95857 2.94422 0.00156929 -GFLOW: 0.75 0.0640388 0.0453545 2.98995 2.98629 2.96501 2.95161 0.00108291 -GFLOW: 0.8125 0.0568342 0.039357 2.99149 2.98807 2.97002 2.95748 0.000723524 -GFLOW: 0.875 0.0509336 0.034547 2.99269 2.98949 2.97398 2.96222 0.000456387 -GFLOW: 0.9375 0.0460404 0.0306387 2.99364 2.99065 2.97716 2.96611 0.000256592 -GFLOW: 1 0.0419362 0.0274254 2.99441 2.9916 2.97974 2.96934 0.000106452 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.853779 0.828724 2.36228 2.37564 1.77599 1.80287 0.0467978 +GFLOW: 0.125 0.606984 0.5833 2.67971 2.68457 2.273 2.28986 0.0229981 +GFLOW: 0.1875 0.424309 0.398718 2.82473 2.82861 2.5518 2.56817 0.0151546 +GFLOW: 0.25 0.305523 0.27797 2.89452 2.89893 2.70559 2.72345 0.012355 +GFLOW: 0.3125 0.22895 0.200855 2.93074 2.93559 2.79379 2.81254 0.010112 +GFLOW: 0.375 0.178024 0.150554 2.95112 2.95611 2.84738 2.86619 0.00788574 +GFLOW: 0.4375 0.142764 0.116568 2.96351 2.96842 2.88197 2.90024 0.00591766 +GFLOW: 0.5 0.117404 0.0927609 2.97155 2.97627 2.90553 2.92293 0.00433516 +GFLOW: 0.5625 0.0985616 0.0755316 2.97709 2.98155 2.92233 2.93872 0.00312793 +GFLOW: 0.625 0.0841808 0.0627107 2.98106 2.98525 2.93476 2.95011 0.00223027 +GFLOW: 0.6875 0.0729592 0.0529437 2.98402 2.98794 2.94422 2.95857 0.00156929 +GFLOW: 0.75 0.0640388 0.0453545 2.98629 2.98995 2.95161 2.96501 0.00108291 +GFLOW: 0.8125 0.0568342 0.039357 2.98807 2.99149 2.95748 2.97002 0.000723524 +GFLOW: 0.875 0.0509336 0.034547 2.98949 2.99269 2.96222 2.97398 0.000456387 +GFLOW: 0.9375 0.0460404 0.0306387 2.99065 2.99364 2.96611 2.97716 0.000256592 +GFLOW: 1 0.0419362 0.0274254 2.9916 2.99441 2.96934 2.97974 0.000106452 Number of steps = 16 -Time to complete flow = 6.881561e-01 seconds +Time to complete flow = 6.879489e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 6.890750e-01 seconds -exit: Fri Oct 28 18:11:12 2022 +Time = 6.888709e-01 seconds +exit: Mon Oct 31 16:18:14 2022 diff --git a/wilson_flow/test/wilson_flow_bbb.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_bbb.symanzik.2.sample-out index 23846fed3..865d73318 100644 --- a/wilson_flow/test/wilson_flow_bbb.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_bbb.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:11:12 2022 +start: Mon Oct 31 16:18:14 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.160072e-04 +Time to reload gauge configuration = 2.088547e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.720356e-04 +Time to check unitarity = 2.739429e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.8537791928208965 0.8287240968808836 2.375643633023483 2.362284203906573 1.802873881578759 1.775991399513947 0.04679780936959217 -GFLOW: 0.125 0.6069838542621798 0.5832995093312132 2.68457098687868 2.679706297840479 2.289857585933801 2.273001423386724 0.02299809809596206 -GFLOW: 0.1875 0.4243094247936046 0.3987181553572725 2.828607830906286 2.824724960976151 2.568168155910834 2.551804254685677 0.0151546079920649 -GFLOW: 0.25 0.305522857389336 0.2779703918128796 2.898929695693953 2.894515187472412 2.723444999987568 2.705594215766336 0.01235503766884978 -GFLOW: 0.3125 0.2289502587838233 0.2008554538183179 2.935588354107676 2.930741040478668 2.812543936127359 2.79379005599356 0.01011202627439342 -GFLOW: 0.375 0.1780240123666937 0.1505535433289596 2.956114189099194 2.951123741355408 2.866193247385862 2.847384285168926 0.007885753260771946 -GFLOW: 0.4375 0.1427636470905618 0.1165681002662142 2.968424324207035 2.963506347317284 2.900237792597339 2.881970610176726 0.005917666636974396 -GFLOW: 0.5 0.117403702179087 0.09276085673695628 2.976274142220278 2.971553825089231 2.922931011632822 2.905534611909141 0.004335163536557374 -GFLOW: 0.5625 0.09856155770745485 0.075531647203344 2.981548173427214 2.977085350744979 2.938720534485372 2.922335205591073 0.003127933934238648 -GFLOW: 0.625 0.08418084313928531 0.06271070937095113 2.985248130432501 2.981062249006399 2.950109262308255 2.934761354771757 0.00223028226019094 -GFLOW: 0.6875 0.07295926410213203 0.05294374002975917 2.987936879102621 2.984024818511024 2.9585715388701 2.944225771897889 0.001569295005260621 -GFLOW: 0.75 0.0640388616126613 0.04535456563813499 2.989947518151962 2.986294817370721 2.965015222026336 2.951607065753264 0.00108290581209524 -GFLOW: 0.8125 0.05683419054264106 0.03935701103809086 2.991486688070039 2.988074096632298 2.970022763717392 2.957476996976707 0.0007235266085676951 -GFLOW: 0.875 0.05093361906063142 0.03454701239412665 2.992688069522625 2.989495132918531 2.973981810341561 2.962222449984895 0.0004563829219921707 -GFLOW: 0.9375 0.04604041073010706 0.03063872534515245 2.993641360825576 2.99064824620643 2.977158733915813 2.966113910241789 0.000256590732256303 -GFLOW: 1 0.04193618824726883 0.02742541248477937 2.994408659258282 2.991596987481982 2.979741640651542 2.969345652558458 0.0001064464610807303 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.8537791928208965 0.8287240968808836 2.362284203906573 2.375643633023483 1.775991399513947 1.802873881578759 0.04679780936959217 +GFLOW: 0.125 0.6069838542621798 0.5832995093312132 2.679706297840479 2.68457098687868 2.273001423386724 2.289857585933801 0.02299809809596206 +GFLOW: 0.1875 0.4243094247936046 0.3987181553572725 2.824724960976151 2.828607830906286 2.551804254685677 2.568168155910834 0.0151546079920649 +GFLOW: 0.25 0.305522857389336 0.2779703918128796 2.894515187472412 2.898929695693953 2.705594215766336 2.723444999987568 0.01235503766884978 +GFLOW: 0.3125 0.2289502587838233 0.2008554538183179 2.930741040478668 2.935588354107676 2.79379005599356 2.812543936127359 0.01011202627439342 +GFLOW: 0.375 0.1780240123666937 0.1505535433289596 2.951123741355408 2.956114189099194 2.847384285168926 2.866193247385862 0.007885753260771946 +GFLOW: 0.4375 0.1427636470905618 0.1165681002662142 2.963506347317284 2.968424324207035 2.881970610176726 2.900237792597339 0.005917666636974396 +GFLOW: 0.5 0.117403702179087 0.09276085673695628 2.971553825089231 2.976274142220278 2.905534611909141 2.922931011632822 0.004335163536557374 +GFLOW: 0.5625 0.09856155770745485 0.075531647203344 2.977085350744979 2.981548173427214 2.922335205591073 2.938720534485372 0.003127933934238648 +GFLOW: 0.625 0.08418084313928531 0.06271070937095113 2.981062249006399 2.985248130432501 2.934761354771757 2.950109262308255 0.00223028226019094 +GFLOW: 0.6875 0.07295926410213203 0.05294374002975917 2.984024818511024 2.987936879102621 2.944225771897889 2.9585715388701 0.001569295005260621 +GFLOW: 0.75 0.0640388616126613 0.04535456563813499 2.986294817370721 2.989947518151962 2.951607065753264 2.965015222026336 0.00108290581209524 +GFLOW: 0.8125 0.05683419054264106 0.03935701103809086 2.988074096632298 2.991486688070039 2.957476996976707 2.970022763717392 0.0007235266085676951 +GFLOW: 0.875 0.05093361906063142 0.03454701239412665 2.989495132918531 2.992688069522625 2.962222449984895 2.973981810341561 0.0004563829219921707 +GFLOW: 0.9375 0.04604041073010706 0.03063872534515245 2.99064824620643 2.993641360825576 2.966113910241789 2.977158733915813 0.000256590732256303 +GFLOW: 1 0.04193618824726883 0.02742541248477937 2.991596987481982 2.994408659258282 2.969345652558458 2.979741640651542 0.0001064464610807303 Number of steps = 16 -Time to complete flow = 8.138230e-01 seconds +Time to complete flow = 8.154991e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 8.151941e-01 seconds -exit: Fri Oct 28 18:11:12 2022 +Time = 8.168240e-01 seconds +exit: Mon Oct 31 16:18:14 2022 diff --git a/wilson_flow/test/wilson_flow_bbb.wilson.1.sample-out b/wilson_flow/test/wilson_flow_bbb.wilson.1.sample-out index 351d61492..7e62f18ea 100644 --- a/wilson_flow/test/wilson_flow_bbb.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_bbb.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:11:10 2022 +start: Mon Oct 31 16:18:12 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.000332e-04 +Time to reload gauge configuration = 2.009869e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.890297e-05 +Time to check unitarity = 6.818771e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.905712 0.879582 2.21652 2.19723 1.61673 1.58364 0.0556851 -GFLOW: 0.125 0.711522 0.687046 2.53049 2.52146 2.05962 2.03792 0.0303339 -GFLOW: 0.1875 0.536229 0.511727 2.71689 2.71185 2.37236 2.35494 0.0177949 -GFLOW: 0.25 0.4015 0.375446 2.82503 2.82068 2.57821 2.56082 0.0125149 -GFLOW: 0.3125 0.304737 0.277219 2.88791 2.88327 2.71015 2.69173 0.0101717 -GFLOW: 0.375 0.236432 0.20835 2.92517 2.9202 2.79476 2.77562 0.00857894 -GFLOW: 0.4375 0.187821 0.160065 2.94791 2.94279 2.84995 2.8307 0.00709562 -GFLOW: 0.5 0.152552 0.125735 2.96229 2.9572 2.88689 2.86802 0.00569324 -GFLOW: 0.5625 0.126374 0.10084 2.97173 2.96679 2.91233 2.89419 0.00445124 -GFLOW: 0.625 0.106506 0.0824039 2.97816 2.97344 2.93037 2.91312 0.00341284 -GFLOW: 0.6875 0.0911154 0.0684726 2.98269 2.97822 2.94351 2.92723 0.00257754 -GFLOW: 0.75 0.0789764 0.05775 2.98597 2.98177 2.95332 2.93802 0.00192097 -GFLOW: 0.8125 0.0692496 0.0493602 2.98841 2.98447 2.9608 2.94644 0.00141127 -GFLOW: 0.875 0.0613464 0.0426987 2.99027 2.98658 2.9666 2.95314 0.00101774 -GFLOW: 0.9375 0.054845 0.0373395 2.99171 2.98826 2.97119 2.95855 0.000714281 -GFLOW: 1 0.0494366 0.0329769 2.99285 2.98961 2.97487 2.96299 0.000480002 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.905712 0.879582 2.19723 2.21652 1.58364 1.61673 0.0556851 +GFLOW: 0.125 0.711522 0.687046 2.52146 2.53049 2.03792 2.05962 0.0303339 +GFLOW: 0.1875 0.536229 0.511727 2.71185 2.71689 2.35494 2.37236 0.0177949 +GFLOW: 0.25 0.4015 0.375446 2.82068 2.82503 2.56082 2.57821 0.0125149 +GFLOW: 0.3125 0.304737 0.277219 2.88327 2.88791 2.69173 2.71015 0.0101717 +GFLOW: 0.375 0.236432 0.20835 2.9202 2.92517 2.77562 2.79476 0.00857894 +GFLOW: 0.4375 0.187821 0.160065 2.94279 2.94791 2.8307 2.84995 0.00709562 +GFLOW: 0.5 0.152552 0.125735 2.9572 2.96229 2.86802 2.88689 0.00569324 +GFLOW: 0.5625 0.126374 0.10084 2.96679 2.97173 2.89419 2.91233 0.00445124 +GFLOW: 0.625 0.106506 0.0824039 2.97344 2.97816 2.91312 2.93037 0.00341284 +GFLOW: 0.6875 0.0911154 0.0684726 2.97822 2.98269 2.92723 2.94351 0.00257754 +GFLOW: 0.75 0.0789764 0.05775 2.98177 2.98597 2.93802 2.95332 0.00192097 +GFLOW: 0.8125 0.0692496 0.0493602 2.98447 2.98841 2.94644 2.9608 0.00141127 +GFLOW: 0.875 0.0613464 0.0426987 2.98658 2.99027 2.95314 2.9666 0.00101774 +GFLOW: 0.9375 0.054845 0.0373395 2.98826 2.99171 2.95855 2.97119 0.000714281 +GFLOW: 1 0.0494366 0.0329769 2.98961 2.99285 2.96299 2.97487 0.000480002 Number of steps = 16 -Time to complete flow = 2.209580e-01 seconds +Time to complete flow = 2.251809e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.218981e-01 seconds -exit: Fri Oct 28 18:11:11 2022 +Time = 2.261240e-01 seconds +exit: Mon Oct 31 16:18:13 2022 diff --git a/wilson_flow/test/wilson_flow_bbb.wilson.2.sample-out b/wilson_flow/test/wilson_flow_bbb.wilson.2.sample-out index aee1834b9..92749cdc0 100644 --- a/wilson_flow/test/wilson_flow_bbb.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_bbb.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:11:11 2022 +start: Mon Oct 31 16:18:13 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.150536e-04 +Time to reload gauge configuration = 2.191067e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.758503e-04 +Time to check unitarity = 2.729893e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.905711924174415 0.8795823886599846 2.216518730478592 2.197233362651558 1.616726756610125 1.583637066719202 0.05568514304979461 -GFLOW: 0.125 0.711522423129211 0.6870460810513032 2.530494197172282 2.521456327165419 2.05962269906663 2.037915268991382 0.03033382914887884 -GFLOW: 0.1875 0.5362286669718576 0.5117265709882266 2.716889345108934 2.711849683704697 2.372359706981394 2.354943609431932 0.01779490527571135 -GFLOW: 0.25 0.4014997224577447 0.3754455135200294 2.825031674764043 2.820678004917023 2.578210632975761 2.5608244033032 0.01251496373197063 -GFLOW: 0.3125 0.3047369163282934 0.277219136930123 2.887910678848256 2.883274388776195 2.710145845893708 2.691725501676013 0.01017171540358322 -GFLOW: 0.375 0.2364323857956322 0.2083498594877199 2.925167176818857 2.920201932855317 2.794757958646183 2.775620559728354 0.008578980858966811 -GFLOW: 0.4375 0.1878210922758932 0.1600650393507442 2.947908390616641 2.942792842415077 2.849951108399702 2.83069943883018 0.007095627402219638 -GFLOW: 0.5 0.1525516723985905 0.1257352414542339 2.962291638894631 2.957202052386899 2.886887591095865 2.868024563695418 0.005693234493227321 -GFLOW: 0.5625 0.126374371132329 0.1008404245992138 2.971734365965625 2.966793954498745 2.912331039974763 2.894185518026199 0.004451233647911503 -GFLOW: 0.625 0.1065060798295703 0.08240395227899848 2.978162350240985 2.973443261497689 2.930370963489944 2.913122411900289 0.0034128375124081 -GFLOW: 0.6875 0.09111545039296982 0.0684725989562498 2.982686980387196 2.978223839733353 2.943511612916111 2.927233817706963 0.002577524393841613 -GFLOW: 0.75 0.07897644663047985 0.05775006116884802 2.985968370536724 2.981771333020356 2.953318875645929 2.93801828262259 0.001920960766121068 -GFLOW: 0.8125 0.06924961124169626 0.04936024268140615 2.988410984643498 2.984475545827949 2.960796662667578 2.946440355104535 0.001411271633914374 -GFLOW: 0.875 0.06134645016697105 0.0426986777399866 2.99027060701742 2.986584233347069 2.966605840715741 2.953140197108692 0.001017745789371597 -GFLOW: 0.9375 0.05484502628887294 0.03733954501336152 2.991714064983201 2.988260390791079 2.97119299631294 2.958555401455756 0.0007142713288834686 -GFLOW: 1 0.04943660827674597 0.03297690098381909 2.992853388258293 2.989614736783057 2.974867507444884 2.962993323511122 0.0004799970003007463 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.905711924174415 0.8795823886599846 2.197233362651558 2.216518730478592 1.583637066719202 1.616726756610125 0.05568514304979461 +GFLOW: 0.125 0.711522423129211 0.6870460810513032 2.521456327165419 2.530494197172282 2.037915268991382 2.05962269906663 0.03033382914887884 +GFLOW: 0.1875 0.5362286669718576 0.5117265709882266 2.711849683704697 2.716889345108934 2.354943609431932 2.372359706981394 0.01779490527571135 +GFLOW: 0.25 0.4014997224577447 0.3754455135200294 2.820678004917023 2.825031674764043 2.5608244033032 2.578210632975761 0.01251496373197063 +GFLOW: 0.3125 0.3047369163282934 0.277219136930123 2.883274388776195 2.887910678848256 2.691725501676013 2.710145845893708 0.01017171540358322 +GFLOW: 0.375 0.2364323857956322 0.2083498594877199 2.920201932855317 2.925167176818857 2.775620559728354 2.794757958646183 0.008578980858966811 +GFLOW: 0.4375 0.1878210922758932 0.1600650393507442 2.942792842415077 2.947908390616641 2.83069943883018 2.849951108399702 0.007095627402219638 +GFLOW: 0.5 0.1525516723985905 0.1257352414542339 2.957202052386899 2.962291638894631 2.868024563695418 2.886887591095865 0.005693234493227321 +GFLOW: 0.5625 0.126374371132329 0.1008404245992138 2.966793954498745 2.971734365965625 2.894185518026199 2.912331039974763 0.004451233647911503 +GFLOW: 0.625 0.1065060798295703 0.08240395227899848 2.973443261497689 2.978162350240985 2.913122411900289 2.930370963489944 0.0034128375124081 +GFLOW: 0.6875 0.09111545039296982 0.0684725989562498 2.978223839733353 2.982686980387196 2.927233817706963 2.943511612916111 0.002577524393841613 +GFLOW: 0.75 0.07897644663047985 0.05775006116884802 2.981771333020356 2.985968370536724 2.93801828262259 2.953318875645929 0.001920960766121068 +GFLOW: 0.8125 0.06924961124169626 0.04936024268140615 2.984475545827949 2.988410984643498 2.946440355104535 2.960796662667578 0.001411271633914374 +GFLOW: 0.875 0.06134645016697105 0.0426986777399866 2.986584233347069 2.99027060701742 2.953140197108692 2.966605840715741 0.001017745789371597 +GFLOW: 0.9375 0.05484502628887294 0.03733954501336152 2.988260390791079 2.991714064983201 2.958555401455756 2.97119299631294 0.0007142713288834686 +GFLOW: 1 0.04943660827674597 0.03297690098381909 2.989614736783057 2.992853388258293 2.962993323511122 2.974867507444884 0.0004799970003007463 Number of steps = 16 -Time to complete flow = 2.641871e-01 seconds +Time to complete flow = 2.576549e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.655661e-01 seconds -exit: Fri Oct 28 18:11:11 2022 +Time = 2.590282e-01 seconds +exit: Mon Oct 31 16:18:13 2022 diff --git a/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.errtol index 867204b69..c913c1677 100644 --- a/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.errtol @@ -1,7 +1,7 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.sample-out index ad6c76a7b..1f3b3d796 100644 --- a/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_bbb_a.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:11:13 2022 +start: Mon Oct 31 16:18:15 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.888275e-04 +Time to reload gauge configuration = 1.900196e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 Time to check unitarity = 6.699562e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.680912 0.690137 2.49722 2.66108 2.02002 2.2069 -0.00332275 -GFLOW: 0.125 0.381186 0.438905 2.76534 2.86683 2.4678 2.62781 -0.00543816 -GFLOW: 0.1875 0.235768 0.291062 2.87537 2.93041 2.68458 2.7887 0.00307912 -GFLOW: 0.25 0.159808 0.202618 2.92626 2.95753 2.79789 2.86441 0.00571559 -GFLOW: 0.3125 0.11584 0.147486 2.95238 2.9714 2.86166 2.90544 0.00579676 -GFLOW: 0.375 0.0881965 0.11145 2.96708 2.97937 2.90017 2.93002 0.00516753 -GFLOW: 0.4375 0.0696664 0.0867918 2.97604 2.98435 2.92494 2.94588 0.00439614 -GFLOW: 0.5 0.056604 0.0692307 2.98187 2.98768 2.94175 2.95674 0.00364921 -GFLOW: 0.5625 0.0470175 0.0563052 2.98587 2.99002 2.95366 2.96453 0.00297563 -GFLOW: 0.625 0.0397478 0.0465352 2.98873 2.99173 2.9624 2.97033 0.00238897 -GFLOW: 0.6875 0.0340849 0.0389896 2.99084 2.99303 2.96899 2.97478 0.00189088 -GFLOW: 0.75 0.0295749 0.0330574 2.99244 2.99404 2.97408 2.97828 0.00147748 -GFLOW: 0.8125 0.0259162 0.0283227 2.99368 2.99484 2.97808 2.98109 0.00114131 -GFLOW: 0.875 0.0229019 0.0244933 2.99466 2.99549 2.98126 2.98339 0.00087284 -GFLOW: 0.9375 0.0203858 0.021359 2.99544 2.99603 2.98384 2.98529 0.000661748 -GFLOW: 1 0.0182618 0.0187657 2.99607 2.99647 2.98594 2.98688 0.000497921 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.680912 0.690137 2.66108 2.49722 2.2069 2.02002 -0.00332275 +GFLOW: 0.125 0.381186 0.438905 2.86683 2.76534 2.62781 2.4678 -0.00543816 +GFLOW: 0.1875 0.235768 0.291062 2.93041 2.87537 2.7887 2.68458 0.00307912 +GFLOW: 0.25 0.159808 0.202618 2.95753 2.92626 2.86441 2.79789 0.00571559 +GFLOW: 0.3125 0.11584 0.147486 2.9714 2.95238 2.90544 2.86166 0.00579676 +GFLOW: 0.375 0.0881965 0.11145 2.97937 2.96708 2.93002 2.90017 0.00516753 +GFLOW: 0.4375 0.0696664 0.0867918 2.98435 2.97604 2.94588 2.92494 0.00439614 +GFLOW: 0.5 0.056604 0.0692307 2.98768 2.98187 2.95674 2.94175 0.00364921 +GFLOW: 0.5625 0.0470175 0.0563052 2.99002 2.98587 2.96453 2.95366 0.00297563 +GFLOW: 0.625 0.0397478 0.0465352 2.99173 2.98873 2.97033 2.9624 0.00238897 +GFLOW: 0.6875 0.0340849 0.0389896 2.99303 2.99084 2.97478 2.96899 0.00189088 +GFLOW: 0.75 0.0295749 0.0330574 2.99404 2.99244 2.97828 2.97408 0.00147748 +GFLOW: 0.8125 0.0259162 0.0283227 2.99484 2.99368 2.98109 2.97808 0.00114131 +GFLOW: 0.875 0.0229019 0.0244933 2.99549 2.99466 2.98339 2.98126 0.00087284 +GFLOW: 0.9375 0.0203858 0.021359 2.99603 2.99544 2.98529 2.98384 0.000661748 +GFLOW: 1 0.0182618 0.0187657 2.99647 2.99607 2.98688 2.98594 0.000497921 Number of steps = 16 -Time to complete flow = 6.992242e-01 seconds +Time to complete flow = 6.898630e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 7.001140e-01 seconds -exit: Fri Oct 28 18:11:14 2022 +Time = 6.907670e-01 seconds +exit: Mon Oct 31 16:18:16 2022 diff --git a/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.errtol index efbf1dccc..e1e9d1b7d 100644 --- a/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.errtol +++ b/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.errtol @@ -1,7 +1,7 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.sample-out index 0384cda7b..572564905 100644 --- a/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_bbb_a.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:11:14 2022 +start: Mon Oct 31 16:18:16 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.100468e-04 +Time to reload gauge configuration = 2.059937e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.741814e-04 +Time to check unitarity = 2.748966e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.6809116840679351 0.690136924370674 2.497223870236982 2.661075349926381 2.020024076974875 2.206901036327745 -0.003322700295870131 -GFLOW: 0.125 0.3811862515393328 0.4389044997330094 2.765337380815808 2.866830017361457 2.467797969514105 2.627807361581681 -0.005438122274424876 -GFLOW: 0.1875 0.2357684614201129 0.2910624497466618 2.875370029267782 2.930412275354711 2.684583936421979 2.788701229663287 0.003079130424503473 -GFLOW: 0.25 0.1598080801382245 0.2026183147491871 2.926262874460741 2.957533811054751 2.79788696430788 2.864406092244833 0.00571557869321053 -GFLOW: 0.3125 0.115839526441023 0.1474855839829174 2.952380340777466 2.971399240187926 2.861661010314826 2.905439936934165 0.005796757534741608 -GFLOW: 0.375 0.08819644886805003 0.1114501297187345 2.967082295613195 2.979366970174433 2.900173012991228 2.930015823946523 0.005167525088126647 -GFLOW: 0.4375 0.06966640203534769 0.08679175129496437 2.976040078800055 2.984350942715283 2.924941295514826 2.94588225060716 0.004396133894436854 -GFLOW: 0.5 0.05660402583459126 0.06923068234821066 2.98186828182329 2.98767838241571 2.941745882921655 2.956742590011775 0.003649204099658769 -GFLOW: 0.5625 0.04701749863624086 0.05630519027730502 2.985866693568697 2.990017278863144 2.953656937930017 2.964530343917456 0.002975632305746121 -GFLOW: 0.625 0.03974776505350799 0.0465351799733837 2.988727077158165 2.991730653471899 2.962399245675078 2.97032814460557 0.002388965151703961 -GFLOW: 0.6875 0.03408489428203264 0.03898958806458196 2.990841323803965 2.99302839631758 2.968995462303545 2.974777859106538 0.001890886754312548 -GFLOW: 0.75 0.02957485744291214 0.03305744074768718 2.992444568822079 2.994038342825716 2.974083327746368 2.97827887298247 0.001477480512370471 -GFLOW: 0.8125 0.02591617028824781 0.02832271736337153 2.993685383081123 2.994841934597479 2.978079003898498 2.981090333503039 0.001141308676007481 -GFLOW: 0.875 0.02290189987380389 0.02449332090338607 2.994661938605119 2.995493138835174 2.981264834219939 2.983386690938095 0.0008728412071573873 -GFLOW: 0.9375 0.02038580316023873 0.02135905455129621 2.995441555664428 2.99602896896278 2.983838596907122 2.985289226953014 0.0006617473585363039 -GFLOW: 1 0.01826184433376579 0.01876567391651689 2.996071790065756 2.996475582993588 2.985942419346051 2.986884664557197 0.0004979229865748972 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.6809116840679351 0.690136924370674 2.661075349926381 2.497223870236982 2.206901036327745 2.020024076974875 -0.003322700295870131 +GFLOW: 0.125 0.3811862515393328 0.4389044997330094 2.866830017361457 2.765337380815808 2.627807361581681 2.467797969514105 -0.005438122274424876 +GFLOW: 0.1875 0.2357684614201129 0.2910624497466618 2.930412275354711 2.875370029267782 2.788701229663287 2.684583936421979 0.003079130424503473 +GFLOW: 0.25 0.1598080801382245 0.2026183147491871 2.957533811054751 2.926262874460741 2.864406092244833 2.79788696430788 0.00571557869321053 +GFLOW: 0.3125 0.115839526441023 0.1474855839829174 2.971399240187926 2.952380340777466 2.905439936934165 2.861661010314826 0.005796757534741608 +GFLOW: 0.375 0.08819644886805003 0.1114501297187345 2.979366970174433 2.967082295613195 2.930015823946523 2.900173012991228 0.005167525088126647 +GFLOW: 0.4375 0.06966640203534769 0.08679175129496437 2.984350942715283 2.976040078800055 2.94588225060716 2.924941295514826 0.004396133894436854 +GFLOW: 0.5 0.05660402583459126 0.06923068234821066 2.98767838241571 2.98186828182329 2.956742590011775 2.941745882921655 0.003649204099658769 +GFLOW: 0.5625 0.04701749863624086 0.05630519027730502 2.990017278863144 2.985866693568697 2.964530343917456 2.953656937930017 0.002975632305746121 +GFLOW: 0.625 0.03974776505350799 0.0465351799733837 2.991730653471899 2.988727077158165 2.97032814460557 2.962399245675078 0.002388965151703961 +GFLOW: 0.6875 0.03408489428203264 0.03898958806458196 2.99302839631758 2.990841323803965 2.974777859106538 2.968995462303545 0.001890886754312548 +GFLOW: 0.75 0.02957485744291214 0.03305744074768718 2.994038342825716 2.992444568822079 2.97827887298247 2.974083327746368 0.001477480512370471 +GFLOW: 0.8125 0.02591617028824781 0.02832271736337153 2.994841934597479 2.993685383081123 2.981090333503039 2.978079003898498 0.001141308676007481 +GFLOW: 0.875 0.02290189987380389 0.02449332090338607 2.995493138835174 2.994661938605119 2.983386690938095 2.981264834219939 0.0008728412071573873 +GFLOW: 0.9375 0.02038580316023873 0.02135905455129621 2.99602896896278 2.995441555664428 2.985289226953014 2.983838596907122 0.0006617473585363039 +GFLOW: 1 0.01826184433376579 0.01876567391651689 2.996475582993588 2.996071790065756 2.986884664557197 2.985942419346051 0.0004979229865748972 Number of steps = 16 -Time to complete flow = 8.165240e-01 seconds +Time to complete flow = 8.151131e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 8.178771e-01 seconds -exit: Fri Oct 28 18:11:14 2022 +Time = 8.164368e-01 seconds +exit: Mon Oct 31 16:18:16 2022 diff --git a/wilson_flow/test/wilson_flow_bbb_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_bbb_a.wilson.1.errtol index 63a791fb2..fd9554641 100644 --- a/wilson_flow/test/wilson_flow_bbb_a.wilson.1.errtol +++ b/wilson_flow/test/wilson_flow_bbb_a.wilson.1.errtol @@ -1,8 +1,8 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0005 0.0005 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_bbb_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_bbb_a.wilson.1.sample-out index 34badb81f..33c397ad4 100644 --- a/wilson_flow/test/wilson_flow_bbb_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_bbb_a.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:11:12 2022 +start: Mon Oct 31 16:18:14 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.988411e-04 +Time to reload gauge configuration = 1.940727e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.794930e-05 +Time to check unitarity = 6.699562e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.76961 0.763256 2.34838 2.51114 1.82616 1.98769 0.00857829 -GFLOW: 0.125 0.478178 0.528223 2.6491 2.79387 2.28774 2.48154 -0.0140417 -GFLOW: 0.1875 0.30431 0.36831 2.79945 2.89396 2.55154 2.70272 -0.00876675 -GFLOW: 0.25 0.206052 0.263003 2.87867 2.93705 2.70556 2.81164 -0.00219859 -GFLOW: 0.3125 0.147689 0.193084 2.92238 2.95887 2.79833 2.87134 0.0014036 -GFLOW: 0.375 0.110829 0.145688 2.94768 2.97122 2.85625 2.90696 0.0029836 -GFLOW: 0.4375 0.0862404 0.112693 2.96308 2.9788 2.89384 2.92967 0.00348414 -GFLOW: 0.5 0.0690664 0.0890726 2.97291 2.98375 2.9192 2.94496 0.00343645 -GFLOW: 0.5625 0.0566067 0.0717123 2.97948 2.98714 2.93693 2.95572 0.00313025 -GFLOW: 0.625 0.0472767 0.0586534 2.98404 2.98956 2.94972 2.96357 0.00272301 -GFLOW: 0.6875 0.0401018 0.0486314 2.98731 2.99135 2.9592 2.96949 0.00229791 -GFLOW: 0.75 0.0344581 0.0408067 2.98974 2.99272 2.9664 2.97405 0.00189687 -GFLOW: 0.8125 0.0299329 0.0346061 2.99157 2.99378 2.97198 2.97766 0.00153923 -GFLOW: 0.875 0.0262447 0.0296281 2.99299 2.99463 2.97636 2.98057 0.00123183 -GFLOW: 0.9375 0.0231961 0.0255849 2.9941 2.99532 2.97986 2.98294 0.000974571 -GFLOW: 1 0.0206458 0.022266 2.99499 2.99588 2.98269 2.98491 0.000763708 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.76961 0.763256 2.51114 2.34838 1.98769 1.82616 0.00857829 +GFLOW: 0.125 0.478178 0.528223 2.79387 2.6491 2.48154 2.28774 -0.0140417 +GFLOW: 0.1875 0.30431 0.36831 2.89396 2.79945 2.70272 2.55154 -0.00876675 +GFLOW: 0.25 0.206052 0.263003 2.93705 2.87867 2.81164 2.70556 -0.00219859 +GFLOW: 0.3125 0.147689 0.193084 2.95887 2.92238 2.87134 2.79833 0.0014036 +GFLOW: 0.375 0.110829 0.145688 2.97122 2.94768 2.90696 2.85625 0.0029836 +GFLOW: 0.4375 0.0862404 0.112693 2.9788 2.96308 2.92967 2.89384 0.00348414 +GFLOW: 0.5 0.0690664 0.0890726 2.98375 2.97291 2.94496 2.9192 0.00343645 +GFLOW: 0.5625 0.0566067 0.0717123 2.98714 2.97948 2.95572 2.93693 0.00313025 +GFLOW: 0.625 0.0472767 0.0586534 2.98956 2.98404 2.96357 2.94972 0.00272301 +GFLOW: 0.6875 0.0401018 0.0486314 2.99135 2.98731 2.96949 2.9592 0.00229791 +GFLOW: 0.75 0.0344581 0.0408067 2.99272 2.98974 2.97405 2.9664 0.00189687 +GFLOW: 0.8125 0.0299329 0.0346061 2.99378 2.99157 2.97766 2.97198 0.00153923 +GFLOW: 0.875 0.0262447 0.0296281 2.99463 2.99299 2.98057 2.97636 0.00123183 +GFLOW: 0.9375 0.0231961 0.0255849 2.99532 2.9941 2.98294 2.97986 0.000974571 +GFLOW: 1 0.0206458 0.022266 2.99588 2.99499 2.98491 2.98269 0.000763708 Number of steps = 16 -Time to complete flow = 2.204871e-01 seconds +Time to complete flow = 2.215869e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.214100e-01 seconds -exit: Fri Oct 28 18:11:13 2022 +Time = 2.224791e-01 seconds +exit: Mon Oct 31 16:18:15 2022 diff --git a/wilson_flow/test/wilson_flow_bbb_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_bbb_a.wilson.2.errtol index 8e6cbfe2d..861cd8cc6 100644 --- a/wilson_flow/test/wilson_flow_bbb_a.wilson.2.errtol +++ b/wilson_flow/test/wilson_flow_bbb_a.wilson.2.errtol @@ -1,8 +1,8 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 5e-08 5e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_bbb_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_bbb_a.wilson.2.sample-out index 72b6fdbdc..f79cc4f3f 100644 --- a/wilson_flow/test/wilson_flow_bbb_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_bbb_a.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:11:13 2022 +start: Mon Oct 31 16:18:15 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.969337e-04 +Time to reload gauge configuration = 1.990795e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.720356e-04 +Time to check unitarity = 2.739429e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.7696098891237486 0.7632559228342112 2.348383390803702 2.51113779109884 1.826163517964385 1.98768902430095 0.008578320807698313 -GFLOW: 0.125 0.4781783017795861 0.5282227184104504 2.649104605193846 2.79387444020168 2.287742367216211 2.481542406779841 -0.01404166942153818 -GFLOW: 0.1875 0.3043100457645523 0.3683100325504173 2.799454044892673 2.893955591245278 2.551540097113174 2.702721959589126 -0.008766728722071602 -GFLOW: 0.25 0.2060524253375483 0.2630026922105951 2.878670301106864 2.937046086012825 2.705562327442228 2.811641193124116 -0.002198589159186234 -GFLOW: 0.3125 0.1476887269446797 0.1930837445588823 2.922377431380256 2.958866497247632 2.798333935556597 2.871339029907945 0.001403605480628473 -GFLOW: 0.375 0.1108293500160271 0.1456881098183746 2.947681115194511 2.971220220957458 2.856253753363344 2.906955928377443 0.002983593253980662 -GFLOW: 0.4375 0.08624036926920291 0.1126934244382075 2.96307742996048 2.978799273265316 2.893844533717628 2.929673051768737 0.003484141327097518 -GFLOW: 0.5 0.06906635371515354 0.08907255350304893 2.972909888920631 2.983745636964109 2.91920041197503 2.944964460769063 0.00343644350658006 -GFLOW: 0.5625 0.05660671630703124 0.07171232705543225 2.979475428959464 2.987138252767323 2.936926861788438 2.955722836399984 0.003130241264110632 -GFLOW: 0.625 0.04727672987001773 0.05865343093991943 2.984036012232065 2.989562455371724 2.949718922840967 2.963575561763427 0.002723003828507179 -GFLOW: 0.6875 0.04010176098074806 0.04863138001385752 2.98731324701577 2.991355063954811 2.959205638798628 2.969487284207318 0.002297901031574007 -GFLOW: 0.75 0.03445811667099188 0.04080666768200762 2.98973655564496 2.99271946640213 2.966405729930902 2.974055440577879 0.001896869891001917 -GFLOW: 0.8125 0.02993294009837732 0.03460611447342829 2.991571623723221 2.993783573793618 2.971978066227965 2.977664178868665 0.001539230053275891 -GFLOW: 0.875 0.0262446883653137 0.02962814305894805 2.992989067200138 2.994630734535157 2.976362667907107 2.98056878988413 0.001231821918525883 -GFLOW: 0.9375 0.02319615042417657 0.02558491329732821 2.994102317338131 2.995317014920507 2.979862185347807 2.982944050533165 0.0009745741507404028 -GFLOW: 1 0.02064577653969442 0.02226602977665494 2.994989181344406 2.995881234898003 2.98269030194665 2.984912897182801 0.0007637138225604164 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.7696098891237486 0.7632559228342112 2.51113779109884 2.348383390803702 1.98768902430095 1.826163517964385 0.008578320807698313 +GFLOW: 0.125 0.4781783017795861 0.5282227184104504 2.79387444020168 2.649104605193846 2.481542406779841 2.287742367216211 -0.01404166942153818 +GFLOW: 0.1875 0.3043100457645523 0.3683100325504173 2.893955591245278 2.799454044892673 2.702721959589126 2.551540097113174 -0.008766728722071602 +GFLOW: 0.25 0.2060524253375483 0.2630026922105951 2.937046086012825 2.878670301106864 2.811641193124116 2.705562327442228 -0.002198589159186234 +GFLOW: 0.3125 0.1476887269446797 0.1930837445588823 2.958866497247632 2.922377431380256 2.871339029907945 2.798333935556597 0.001403605480628473 +GFLOW: 0.375 0.1108293500160271 0.1456881098183746 2.971220220957458 2.947681115194511 2.906955928377443 2.856253753363344 0.002983593253980662 +GFLOW: 0.4375 0.08624036926920291 0.1126934244382075 2.978799273265316 2.96307742996048 2.929673051768737 2.893844533717628 0.003484141327097518 +GFLOW: 0.5 0.06906635371515354 0.08907255350304893 2.983745636964109 2.972909888920631 2.944964460769063 2.91920041197503 0.00343644350658006 +GFLOW: 0.5625 0.05660671630703124 0.07171232705543225 2.987138252767323 2.979475428959464 2.955722836399984 2.936926861788438 0.003130241264110632 +GFLOW: 0.625 0.04727672987001773 0.05865343093991943 2.989562455371724 2.984036012232065 2.963575561763427 2.949718922840967 0.002723003828507179 +GFLOW: 0.6875 0.04010176098074806 0.04863138001385752 2.991355063954811 2.98731324701577 2.969487284207318 2.959205638798628 0.002297901031574007 +GFLOW: 0.75 0.03445811667099188 0.04080666768200762 2.99271946640213 2.98973655564496 2.974055440577879 2.966405729930902 0.001896869891001917 +GFLOW: 0.8125 0.02993294009837732 0.03460611447342829 2.993783573793618 2.991571623723221 2.977664178868665 2.971978066227965 0.001539230053275891 +GFLOW: 0.875 0.0262446883653137 0.02962814305894805 2.994630734535157 2.992989067200138 2.98056878988413 2.976362667907107 0.001231821918525883 +GFLOW: 0.9375 0.02319615042417657 0.02558491329732821 2.995317014920507 2.994102317338131 2.982944050533165 2.979862185347807 0.0009745741507404028 +GFLOW: 1 0.02064577653969442 0.02226602977665494 2.995881234898003 2.994989181344406 2.984912897182801 2.98269030194665 0.0007637138225604164 Number of steps = 16 -Time to complete flow = 2.566481e-01 seconds +Time to complete flow = 2.568469e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.579651e-01 seconds -exit: Fri Oct 28 18:11:13 2022 +Time = 2.581651e-01 seconds +exit: Mon Oct 31 16:18:15 2022 diff --git a/wilson_flow/test/wilson_flow_cf3.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_cf3.symanzik.1.sample-out index 4dfbd2f1b..f2d7e6945 100644 --- a/wilson_flow/test/wilson_flow_cf3.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_cf3.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 17:48:32 2022 +start: Mon Oct 31 15:53:21 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.959801e-04 +Time to reload gauge configuration = 1.978874e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.854372 0.829399 2.37781 2.36435 1.80364 1.77682 0.0473395 -GFLOW: 0.125 0.607062 0.583412 2.6861 2.68128 2.29102 2.2743 0.0233457 -GFLOW: 0.1875 0.424171 0.398606 2.8293 2.82546 2.56892 2.55265 0.0153113 -GFLOW: 0.25 0.305386 0.277847 2.89924 2.89484 2.72386 2.70605 0.0124034 -GFLOW: 0.3125 0.228858 0.200768 2.93573 2.93089 2.81276 2.79402 0.0101269 -GFLOW: 0.375 0.177969 0.150499 2.95618 2.95119 2.86631 2.8475 0.00789145 -GFLOW: 0.4375 0.142733 0.116536 2.96846 2.96354 2.9003 2.88203 0.0059202 -GFLOW: 0.5 0.117387 0.0927417 2.97629 2.97157 2.92296 2.90557 0.00433641 -GFLOW: 0.5625 0.0985524 0.0755203 2.98156 2.97709 2.93874 2.92235 0.00312867 -GFLOW: 0.625 0.0841759 0.0627039 2.98525 2.98107 2.95012 2.93477 0.00223081 -GFLOW: 0.6875 0.0729567 0.0529397 2.98794 2.98403 2.95858 2.94423 0.00156972 -GFLOW: 0.75 0.0640375 0.0453522 2.98995 2.9863 2.96502 2.95161 0.00108325 -GFLOW: 0.8125 0.0568335 0.0393556 2.99149 2.98807 2.97002 2.95748 0.000723803 -GFLOW: 0.875 0.0509333 0.0345462 2.99269 2.9895 2.97398 2.96222 0.000456608 -GFLOW: 0.9375 0.0460403 0.0306383 2.99364 2.99065 2.97716 2.96611 0.000256768 -GFLOW: 1 0.0419362 0.0274252 2.99441 2.9916 2.97974 2.96935 0.000106591 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.854372 0.829399 2.36435 2.37781 1.77682 1.80364 0.0473395 +GFLOW: 0.125 0.607062 0.583412 2.68128 2.6861 2.2743 2.29102 0.0233457 +GFLOW: 0.1875 0.424171 0.398606 2.82546 2.8293 2.55265 2.56892 0.0153113 +GFLOW: 0.25 0.305386 0.277847 2.89484 2.89924 2.70605 2.72386 0.0124034 +GFLOW: 0.3125 0.228858 0.200768 2.93089 2.93573 2.79402 2.81276 0.0101269 +GFLOW: 0.375 0.177969 0.150499 2.95119 2.95618 2.8475 2.86631 0.00789145 +GFLOW: 0.4375 0.142733 0.116536 2.96354 2.96846 2.88203 2.9003 0.0059202 +GFLOW: 0.5 0.117387 0.0927417 2.97157 2.97629 2.90557 2.92296 0.00433641 +GFLOW: 0.5625 0.0985524 0.0755203 2.97709 2.98156 2.92235 2.93874 0.00312867 +GFLOW: 0.625 0.0841759 0.0627039 2.98107 2.98525 2.93477 2.95012 0.00223081 +GFLOW: 0.6875 0.0729567 0.0529397 2.98403 2.98794 2.94423 2.95858 0.00156972 +GFLOW: 0.75 0.0640375 0.0453522 2.9863 2.98995 2.95161 2.96502 0.00108325 +GFLOW: 0.8125 0.0568335 0.0393556 2.98807 2.99149 2.95748 2.97002 0.000723803 +GFLOW: 0.875 0.0509333 0.0345462 2.9895 2.99269 2.96222 2.97398 0.000456608 +GFLOW: 0.9375 0.0460403 0.0306383 2.99065 2.99364 2.96611 2.97716 0.000256768 +GFLOW: 1 0.0419362 0.0274252 2.9916 2.99441 2.96935 2.97974 0.000106591 Number of steps = 16 -Time to complete flow = 3.703392e-01 seconds +Time to complete flow = 3.667130e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.712351e-01 seconds -exit: Fri Oct 28 17:48:32 2022 +Time = 3.676291e-01 seconds +exit: Mon Oct 31 15:53:21 2022 diff --git a/wilson_flow/test/wilson_flow_cf3.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_cf3.symanzik.2.sample-out index a7a8d5120..cdb763a3e 100644 --- a/wilson_flow/test/wilson_flow_cf3.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_cf3.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 17:48:32 2022 +start: Mon Oct 31 15:53:21 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.028942e-04 +Time to reload gauge configuration = 2.100468e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.770424e-04 +Time to check unitarity = 2.739429e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.8543716615679702 0.8293993621997977 2.377809180202705 2.364347685635683 1.803642126471845 1.776821884930114 0.04733953641862654 -GFLOW: 0.125 0.6070615472535063 0.583412072201284 2.686098382891526 2.681283326688696 2.291021967849539 2.274301161866702 0.02334573817033725 -GFLOW: 0.1875 0.4241706914514222 0.3986060180426955 2.829300413438675 2.825462924255241 2.568918221116132 2.552645104881279 0.01531132161373118 -GFLOW: 0.25 0.3053858820854688 0.2778474485193334 2.899238468681683 2.894840698370923 2.723858811564664 2.706045853573701 0.01240347246005401 -GFLOW: 0.3125 0.2288582261341722 0.2007684723952321 2.935730159387276 2.930887239533776 2.812763611841593 2.794022708762464 0.01012687646871752 -GFLOW: 0.375 0.1779694179823419 0.1504993077902839 2.956181591113007 2.9511916766996 2.866309372197026 2.84750360927066 0.007891454800069175 -GFLOW: 0.4375 0.1427328930674051 0.116535665366636 2.968457577037361 2.963539059782639 2.900299946052304 2.882032251002508 0.005920198714325913 -GFLOW: 0.5 0.1173867847953298 0.09274166168163774 2.976291182093405 2.971570097308534 2.922964953683221 2.905566815907157 0.004336412982742761 -GFLOW: 0.5625 0.09855237275379003 0.07552027500117037 2.981557229786773 2.977093679973887 2.938739490105734 2.922352242355589 0.00312866864476507 -GFLOW: 0.625 0.08417591263426089 0.06270394516977144 2.985253107810475 2.981066621075649 2.950120079240035 2.934770477426801 0.002230804630514611 -GFLOW: 0.6875 0.07295665862272881 0.052939707388424 2.987939697265004 2.984027165216425 2.958577830094577 2.94423070888798 0.001569708868035846 -GFLOW: 0.75 0.06403752003631237 0.04535216697410249 2.989949155349164 2.986296102503258 2.965018938575671 2.951609760376023 0.00108324388645091 -GFLOW: 0.8125 0.05683353000498685 0.03935559830687298 2.991487660101361 2.988074813591431 2.970024984808129 2.957478477028555 0.0007238017573907747 -GFLOW: 0.875 0.05093331922520593 0.0345461986078126 2.992688657026303 2.989495540173986 2.973983146758902 2.962223266764893 0.000456604278112681 -GFLOW: 0.9375 0.04604029570896043 0.03063827683561837 2.993641720857155 2.990648481963264 2.977159538622672 2.96611436320869 0.0002567670485341259 -GFLOW: 1 0.04193616190544152 0.0274251867371391 2.994408881949181 2.991597126998047 2.979742121488842 2.969345906113011 0.0001065860117359313 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.8543716615679702 0.8293993621997977 2.364347685635683 2.377809180202705 1.776821884930114 1.803642126471845 0.04733953641862654 +GFLOW: 0.125 0.6070615472535063 0.583412072201284 2.681283326688696 2.686098382891526 2.274301161866702 2.291021967849539 0.02334573817033725 +GFLOW: 0.1875 0.4241706914514222 0.3986060180426955 2.825462924255241 2.829300413438675 2.552645104881279 2.568918221116132 0.01531132161373118 +GFLOW: 0.25 0.3053858820854688 0.2778474485193334 2.894840698370923 2.899238468681683 2.706045853573701 2.723858811564664 0.01240347246005401 +GFLOW: 0.3125 0.2288582261341722 0.2007684723952321 2.930887239533776 2.935730159387276 2.794022708762464 2.812763611841593 0.01012687646871752 +GFLOW: 0.375 0.1779694179823419 0.1504993077902839 2.9511916766996 2.956181591113007 2.84750360927066 2.866309372197026 0.007891454800069175 +GFLOW: 0.4375 0.1427328930674051 0.116535665366636 2.963539059782639 2.968457577037361 2.882032251002508 2.900299946052304 0.005920198714325913 +GFLOW: 0.5 0.1173867847953298 0.09274166168163774 2.971570097308534 2.976291182093405 2.905566815907157 2.922964953683221 0.004336412982742761 +GFLOW: 0.5625 0.09855237275379003 0.07552027500117037 2.977093679973887 2.981557229786773 2.922352242355589 2.938739490105734 0.00312866864476507 +GFLOW: 0.625 0.08417591263426089 0.06270394516977144 2.981066621075649 2.985253107810475 2.934770477426801 2.950120079240035 0.002230804630514611 +GFLOW: 0.6875 0.07295665862272881 0.052939707388424 2.984027165216425 2.987939697265004 2.94423070888798 2.958577830094577 0.001569708868035846 +GFLOW: 0.75 0.06403752003631237 0.04535216697410249 2.986296102503258 2.989949155349164 2.951609760376023 2.965018938575671 0.00108324388645091 +GFLOW: 0.8125 0.05683353000498685 0.03935559830687298 2.988074813591431 2.991487660101361 2.957478477028555 2.970024984808129 0.0007238017573907747 +GFLOW: 0.875 0.05093331922520593 0.0345461986078126 2.989495540173986 2.992688657026303 2.962223266764893 2.973983146758902 0.000456604278112681 +GFLOW: 0.9375 0.04604029570896043 0.03063827683561837 2.990648481963264 2.993641720857155 2.96611436320869 2.977159538622672 0.0002567670485341259 +GFLOW: 1 0.04193616190544152 0.0274251867371391 2.991597126998047 2.994408881949181 2.969345906113011 2.979742121488842 0.0001065860117359313 Number of steps = 16 -Time to complete flow = 4.479511e-01 seconds +Time to complete flow = 4.335771e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.493129e-01 seconds -exit: Fri Oct 28 17:48:33 2022 +Time = 4.349298e-01 seconds +exit: Mon Oct 31 15:53:22 2022 diff --git a/wilson_flow/test/wilson_flow_cf3.wilson.1.sample-out b/wilson_flow/test/wilson_flow_cf3.wilson.1.sample-out index 8d7b879a3..bc0633412 100644 --- a/wilson_flow/test/wilson_flow_cf3.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_cf3.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 17:48:32 2022 +start: Mon Oct 31 15:53:21 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.081394e-04 +Time to reload gauge configuration = 2.970695e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.818771e-05 +Time to check unitarity = 9.799004e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.905807 0.879692 2.21687 2.19756 1.61685 1.58376 0.0557657 -GFLOW: 0.125 0.711569 0.6871 2.531 2.52195 2.05996 2.03827 0.0304218 -GFLOW: 0.1875 0.536191 0.511696 2.7173 2.71227 2.37274 2.35535 0.0178719 -GFLOW: 0.25 0.401423 0.375377 2.8253 2.82096 2.57851 2.56115 0.0125642 -GFLOW: 0.3125 0.30466 0.277148 2.88807 2.88345 2.71036 2.69196 0.010196 -GFLOW: 0.375 0.236371 0.20829 2.92526 2.9203 2.7949 2.77577 0.00859002 -GFLOW: 0.4375 0.187776 0.16002 2.94797 2.94285 2.85004 2.83079 0.00710104 -GFLOW: 0.5 0.152521 0.125703 2.96233 2.95724 2.88695 2.86808 0.00569615 -GFLOW: 0.5625 0.126353 0.100818 2.97175 2.96681 2.91237 2.89422 0.00445287 -GFLOW: 0.625 0.106492 0.0823884 2.97817 2.97346 2.9304 2.91315 0.00341375 -GFLOW: 0.6875 0.0911056 0.0684617 2.98269 2.97823 2.94353 2.92725 0.00257803 -GFLOW: 0.75 0.0789696 0.0577424 2.98597 2.98178 2.95333 2.93803 0.00192125 -GFLOW: 0.8125 0.0692448 0.0493548 2.98841 2.98448 2.9608 2.94645 0.00141143 -GFLOW: 0.875 0.061343 0.0426947 2.99027 2.98659 2.96661 2.95314 0.00101783 -GFLOW: 0.9375 0.0548425 0.0373367 2.99172 2.98826 2.9712 2.95856 0.000714324 -GFLOW: 1 0.0494347 0.0329748 2.99285 2.98962 2.97487 2.963 0.000480026 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.905807 0.879692 2.19756 2.21687 1.58376 1.61685 0.0557657 +GFLOW: 0.125 0.711569 0.6871 2.52195 2.531 2.03827 2.05996 0.0304218 +GFLOW: 0.1875 0.536191 0.511696 2.71227 2.7173 2.35535 2.37274 0.0178719 +GFLOW: 0.25 0.401423 0.375377 2.82096 2.8253 2.56115 2.57851 0.0125642 +GFLOW: 0.3125 0.30466 0.277148 2.88345 2.88807 2.69196 2.71036 0.010196 +GFLOW: 0.375 0.236371 0.20829 2.9203 2.92526 2.77577 2.7949 0.00859002 +GFLOW: 0.4375 0.187776 0.16002 2.94285 2.94797 2.83079 2.85004 0.00710104 +GFLOW: 0.5 0.152521 0.125703 2.95724 2.96233 2.86808 2.88695 0.00569615 +GFLOW: 0.5625 0.126353 0.100818 2.96681 2.97175 2.89422 2.91237 0.00445287 +GFLOW: 0.625 0.106492 0.0823884 2.97346 2.97817 2.91315 2.9304 0.00341375 +GFLOW: 0.6875 0.0911056 0.0684617 2.97823 2.98269 2.92725 2.94353 0.00257803 +GFLOW: 0.75 0.0789696 0.0577424 2.98178 2.98597 2.93803 2.95333 0.00192125 +GFLOW: 0.8125 0.0692448 0.0493548 2.98448 2.98841 2.94645 2.9608 0.00141143 +GFLOW: 0.875 0.061343 0.0426947 2.98659 2.99027 2.95314 2.96661 0.00101783 +GFLOW: 0.9375 0.0548425 0.0373367 2.98826 2.99172 2.95856 2.9712 0.000714324 +GFLOW: 1 0.0494347 0.0329748 2.98962 2.99285 2.963 2.97487 0.000480026 Number of steps = 16 -Time to complete flow = 1.338429e-01 seconds +Time to complete flow = 1.365330e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.348071e-01 seconds -exit: Fri Oct 28 17:48:32 2022 +Time = 1.378291e-01 seconds +exit: Mon Oct 31 15:53:21 2022 diff --git a/wilson_flow/test/wilson_flow_cf3.wilson.2.sample-out b/wilson_flow/test/wilson_flow_cf3.wilson.2.sample-out index 4255b5ed8..2f08cd4c8 100644 --- a/wilson_flow/test/wilson_flow_cf3.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_cf3.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 17:48:32 2022 +start: Mon Oct 31 15:53:21 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.129078e-04 +Time to reload gauge configuration = 2.038479e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.751350e-04 +Time to check unitarity = 2.729893e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.9058072391974819 0.8796920652115094 2.216872106002637 2.197559518115146 1.616847827366594 1.583758555648904 0.05576565378232661 -GFLOW: 0.125 0.7115692342782103 0.6871003830707063 2.531003921693941 2.521953224719846 2.059964054371706 2.038270034128876 0.03042179674864214 -GFLOW: 0.1875 0.5361910888698285 0.5116960585512139 2.717300000458885 2.712270332678739 2.372736130523307 2.355351165557984 0.01787192950996011 -GFLOW: 0.25 0.4014234445559888 0.37537722490906 2.825300399295606 2.820959498594903 2.578513274566013 2.561154794805836 0.01256425564609647 -GFLOW: 0.3125 0.3046604847132983 0.2771479599860875 2.888074248463761 2.883445568951391 2.710360103275456 2.69195592912871 0.01019596195218075 -GFLOW: 0.375 0.2363709050918768 0.2082904779135255 2.925264233992292 2.920302238841608 2.794900908124411 2.775770774464101 0.008590038406524813 -GFLOW: 0.4375 0.1877762889021976 0.1600203275071545 2.947965571682113 2.942850972534359 2.850043720718725 2.830794461235618 0.0071010425032999 -GFLOW: 0.5 0.1525205240119165 0.1257032287546334 2.962325432423077 2.957235820782579 2.886946867918927 2.86808401887208 0.005696142737488299 -GFLOW: 0.5625 0.1263531405285459 0.1008180134556078 2.971754543635519 2.966813778451497 2.912368952969238 2.894222736813651 0.004452861462909364 -GFLOW: 0.625 0.1064916610067134 0.08238836419944108 2.978174584965453 2.973455087309061 2.930395384421841 2.913145902943409 0.003413749414388859 -GFLOW: 0.6875 0.09110559193835804 0.06846172450886191 2.982694540955041 2.978231036448013 2.943527538240369 2.927248850907649 0.002578029412265038 -GFLOW: 0.75 0.07896961546080462 0.05774240965332751 2.985973143240852 2.981775813517866 2.953329425553127 2.93802807788415 0.001921238508420313 -GFLOW: 0.8125 0.06924479396469148 0.04935479451497764 2.988414066536949 2.984478405196604 2.960803777236457 2.946446872824913 0.00141142500240056 -GFLOW: 0.875 0.06134298487857923 0.04269474465683353 2.990272643992486 2.98658610629446 2.966610730409217 2.95314463471094 0.001017831766673956 -GFLOW: 0.9375 0.05484248118210697 0.0373366634841456 2.991715443133546 2.988261650798499 2.971196422806157 2.958558496229756 0.0007143205679203317 -GFLOW: 1 0.04943470001559129 0.03297475761403763 2.992854342352627 2.989615607391197 2.974869955652791 2.962995534693379 0.0004800257456124206 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.9058072391974819 0.8796920652115094 2.197559518115146 2.216872106002637 1.583758555648904 1.616847827366594 0.05576565378232661 +GFLOW: 0.125 0.7115692342782103 0.6871003830707063 2.521953224719846 2.531003921693941 2.038270034128876 2.059964054371706 0.03042179674864214 +GFLOW: 0.1875 0.5361910888698285 0.5116960585512139 2.712270332678739 2.717300000458885 2.355351165557984 2.372736130523307 0.01787192950996011 +GFLOW: 0.25 0.4014234445559888 0.37537722490906 2.820959498594903 2.825300399295606 2.561154794805836 2.578513274566013 0.01256425564609647 +GFLOW: 0.3125 0.3046604847132983 0.2771479599860875 2.883445568951391 2.888074248463761 2.69195592912871 2.710360103275456 0.01019596195218075 +GFLOW: 0.375 0.2363709050918768 0.2082904779135255 2.920302238841608 2.925264233992292 2.775770774464101 2.794900908124411 0.008590038406524813 +GFLOW: 0.4375 0.1877762889021976 0.1600203275071545 2.942850972534359 2.947965571682113 2.830794461235618 2.850043720718725 0.0071010425032999 +GFLOW: 0.5 0.1525205240119165 0.1257032287546334 2.957235820782579 2.962325432423077 2.86808401887208 2.886946867918927 0.005696142737488299 +GFLOW: 0.5625 0.1263531405285459 0.1008180134556078 2.966813778451497 2.971754543635519 2.894222736813651 2.912368952969238 0.004452861462909364 +GFLOW: 0.625 0.1064916610067134 0.08238836419944108 2.973455087309061 2.978174584965453 2.913145902943409 2.930395384421841 0.003413749414388859 +GFLOW: 0.6875 0.09110559193835804 0.06846172450886191 2.978231036448013 2.982694540955041 2.927248850907649 2.943527538240369 0.002578029412265038 +GFLOW: 0.75 0.07896961546080462 0.05774240965332751 2.981775813517866 2.985973143240852 2.93802807788415 2.953329425553127 0.001921238508420313 +GFLOW: 0.8125 0.06924479396469148 0.04935479451497764 2.984478405196604 2.988414066536949 2.946446872824913 2.960803777236457 0.00141142500240056 +GFLOW: 0.875 0.06134298487857923 0.04269474465683353 2.98658610629446 2.990272643992486 2.95314463471094 2.966610730409217 0.001017831766673956 +GFLOW: 0.9375 0.05484248118210697 0.0373366634841456 2.988261650798499 2.991715443133546 2.958558496229756 2.971196422806157 0.0007143205679203317 +GFLOW: 1 0.04943470001559129 0.03297475761403763 2.989615607391197 2.992854342352627 2.962995534693379 2.974869955652791 0.0004800257456124206 Number of steps = 16 -Time to complete flow = 1.600370e-01 seconds +Time to complete flow = 1.547198e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.614060e-01 seconds -exit: Fri Oct 28 17:48:32 2022 +Time = 1.560588e-01 seconds +exit: Mon Oct 31 15:53:21 2022 diff --git a/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.errtol index bbe825dd1..aa60c5427 100644 --- a/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.errtol @@ -1,13 +1,13 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0006 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0005 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.sample-out index 1af925bf8..14beeefdc 100644 --- a/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_cf3_a.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 17:48:33 2022 +start: Mon Oct 31 15:53:22 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.981258e-04 +Time to reload gauge configuration = 2.000332e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.794930e-05 +Time to check unitarity = 6.699562e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.685661 0.691539 2.49026 2.66513 2.01462 2.20914 -0.00158456 -GFLOW: 0.125 0.381119 0.439251 2.76173 2.86588 2.46528 2.62963 -0.00690533 -GFLOW: 0.1875 0.235566 0.291511 2.8719 2.9275 2.68296 2.78872 0.00312779 -GFLOW: 0.25 0.159697 0.202811 2.92082 2.95251 2.79651 2.86386 0.00577613 -GFLOW: 0.3125 0.115686 0.147466 2.94157 2.96173 2.85991 2.90447 0.00607993 -GFLOW: 0.375 0.0879003 0.111207 2.94317 2.95876 2.89727 2.92832 0.00567332 -GFLOW: 0.4375 0.0690774 0.0862539 2.92115 2.93838 2.91946 2.94267 0.00544614 -GFLOW: 0.5 0.055519 0.068331 2.85941 2.88688 2.9311 2.95042 0.0056181 -GFLOW: 0.5625 0.0453046 0.0552751 2.74312 2.79014 2.9344 2.95266 0.00623353 -GFLOW: 0.625 0.0377325 0.0463746 2.60183 2.66409 2.93286 2.95079 0.00682033 -GFLOW: 0.6875 0.0326711 0.0411995 2.50974 2.56161 2.93157 2.94764 0.00687489 -GFLOW: 0.75 0.0295927 0.0385173 2.48094 2.50406 2.93201 2.94478 0.00642 -GFLOW: 0.8125 0.027768 0.0371372 2.47468 2.47266 2.93239 2.94193 0.00577421 -GFLOW: 0.875 0.0267813 0.0365531 2.47058 2.45557 2.93189 2.93898 0.00513585 -GFLOW: 0.9375 0.026401 0.0365579 2.46534 2.44887 2.93052 2.93618 0.00455004 -GFLOW: 1 0.0264556 0.0370072 2.45886 2.44916 2.92844 2.93366 0.00398724 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.685661 0.691539 2.66513 2.49026 2.20914 2.01462 -0.00158456 +GFLOW: 0.125 0.381119 0.439251 2.86588 2.76173 2.62963 2.46528 -0.00690533 +GFLOW: 0.1875 0.235566 0.291511 2.9275 2.8719 2.78872 2.68296 0.00312779 +GFLOW: 0.25 0.159697 0.202811 2.95251 2.92082 2.86386 2.79651 0.00577613 +GFLOW: 0.3125 0.115686 0.147466 2.96173 2.94157 2.90447 2.85991 0.00607993 +GFLOW: 0.375 0.0879003 0.111207 2.95876 2.94317 2.92832 2.89727 0.00567332 +GFLOW: 0.4375 0.0690774 0.0862539 2.93838 2.92115 2.94267 2.91946 0.00544614 +GFLOW: 0.5 0.055519 0.068331 2.88688 2.85941 2.95042 2.9311 0.0056181 +GFLOW: 0.5625 0.0453046 0.0552751 2.79014 2.74312 2.95266 2.9344 0.00623353 +GFLOW: 0.625 0.0377325 0.0463746 2.66409 2.60183 2.95079 2.93286 0.00682033 +GFLOW: 0.6875 0.0326711 0.0411995 2.56161 2.50974 2.94764 2.93157 0.00687489 +GFLOW: 0.75 0.0295927 0.0385173 2.50406 2.48094 2.94478 2.93201 0.00642 +GFLOW: 0.8125 0.027768 0.0371372 2.47266 2.47468 2.94193 2.93239 0.00577421 +GFLOW: 0.875 0.0267813 0.0365531 2.45557 2.47058 2.93898 2.93189 0.00513585 +GFLOW: 0.9375 0.026401 0.0365579 2.44887 2.46534 2.93618 2.93052 0.00455004 +GFLOW: 1 0.0264556 0.0370072 2.44916 2.45886 2.93366 2.92844 0.00398724 Number of steps = 16 -Time to complete flow = 3.698521e-01 seconds +Time to complete flow = 3.667631e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.707540e-01 seconds -exit: Fri Oct 28 17:48:34 2022 +Time = 3.676889e-01 seconds +exit: Mon Oct 31 15:53:22 2022 diff --git a/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.errtol index a2f1eb591..3ad9e0242 100644 --- a/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.errtol +++ b/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.errtol @@ -1,13 +1,13 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 5e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.sample-out index cbcc82c08..1bc5553d6 100644 --- a/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_cf3_a.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 17:48:34 2022 +start: Mon Oct 31 15:53:22 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.191067e-04 +Time to reload gauge configuration = 2.069473e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.748966e-04 +Time to check unitarity = 2.739429e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.6856607120142724 0.6915386007556226 2.490259090520325 2.665130186043828 2.014615384971077 2.209140985873434 -0.001584533264944331 -GFLOW: 0.125 0.3811193863432233 0.4392511648131131 2.761725713390957 2.865878814895864 2.465282942368236 2.629628984512853 -0.00690533743162124 -GFLOW: 0.1875 0.2355658931025102 0.2915107137771954 2.871897993913864 2.927498016823833 2.682959254365231 2.788716087658212 0.003127792173058328 -GFLOW: 0.25 0.1596972238125821 0.2028108409484413 2.920824862692038 2.952507853414912 2.79650585852006 2.863857589083135 0.005776129727567553 -GFLOW: 0.3125 0.1156859777245951 0.1474658799431158 2.941569955658396 2.961725411840393 2.859911117779783 2.904473886615087 0.006079923369740252 -GFLOW: 0.375 0.08790028551229737 0.1112072270453926 2.943172462220162 2.958763945699806 2.897269696572074 2.928321479451728 0.00567331810351665 -GFLOW: 0.4375 0.06907741356010769 0.08625388051247879 2.921150006525829 2.938383764639626 2.919457163475823 2.942667845138863 0.005446140686003436 -GFLOW: 0.5 0.05551898733183702 0.06833101193777388 2.859411728978429 2.886876334134476 2.931096813470482 2.950423433496975 0.005618087032236796 -GFLOW: 0.5625 0.04530459499911364 0.0552750866872892 2.74312521707594 2.790141246354013 2.934402842286001 2.952657201290844 0.006233532308565245 -GFLOW: 0.625 0.0377324869748966 0.0463745605323403 2.60183389214519 2.664093588479437 2.932856694317735 2.950794355341984 0.006820341244379956 -GFLOW: 0.6875 0.03267104926251781 0.04119946860004212 2.509739598334756 2.561605374221038 2.931567829778819 2.947640004205429 0.006874891351470366 -GFLOW: 0.75 0.02959266185390357 0.03851726386982698 2.480944402521809 2.504063916291041 2.932010477579551 2.944784594241413 0.006419994956274464 -GFLOW: 0.8125 0.02776801391805717 0.0371371547793204 2.474684508513712 2.472655968804852 2.932392841588005 2.941926482701848 0.005774209459538063 -GFLOW: 0.875 0.02678129392845017 0.03655312386978807 2.470579560089488 2.455573548724176 2.931886013703487 2.938982483145239 0.005135852251880555 -GFLOW: 0.9375 0.02640101140658564 0.0365578627077278 2.465343859433491 2.448871421446105 2.930523903351459 2.936179598659281 0.00455003036918984 -GFLOW: 1 0.0264555844795843 0.03700714527458681 2.458864900911031 2.44916440651395 2.928444532360039 2.933655576047524 0.003987242856075029 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.6856607120142724 0.6915386007556226 2.665130186043828 2.490259090520325 2.209140985873434 2.014615384971077 -0.001584533264944331 +GFLOW: 0.125 0.3811193863432233 0.4392511648131131 2.865878814895864 2.761725713390957 2.629628984512853 2.465282942368236 -0.00690533743162124 +GFLOW: 0.1875 0.2355658931025102 0.2915107137771954 2.927498016823833 2.871897993913864 2.788716087658212 2.682959254365231 0.003127792173058328 +GFLOW: 0.25 0.1596972238125821 0.2028108409484413 2.952507853414912 2.920824862692038 2.863857589083135 2.79650585852006 0.005776129727567553 +GFLOW: 0.3125 0.1156859777245951 0.1474658799431158 2.961725411840393 2.941569955658396 2.904473886615087 2.859911117779783 0.006079923369740252 +GFLOW: 0.375 0.08790028551229737 0.1112072270453926 2.958763945699806 2.943172462220162 2.928321479451728 2.897269696572074 0.00567331810351665 +GFLOW: 0.4375 0.06907741356010769 0.08625388051247879 2.938383764639626 2.921150006525829 2.942667845138863 2.919457163475823 0.005446140686003436 +GFLOW: 0.5 0.05551898733183702 0.06833101193777388 2.886876334134476 2.859411728978429 2.950423433496975 2.931096813470482 0.005618087032236796 +GFLOW: 0.5625 0.04530459499911364 0.0552750866872892 2.790141246354013 2.74312521707594 2.952657201290844 2.934402842286001 0.006233532308565245 +GFLOW: 0.625 0.0377324869748966 0.0463745605323403 2.664093588479437 2.60183389214519 2.950794355341984 2.932856694317735 0.006820341244379956 +GFLOW: 0.6875 0.03267104926251781 0.04119946860004212 2.561605374221038 2.509739598334756 2.947640004205429 2.931567829778819 0.006874891351470366 +GFLOW: 0.75 0.02959266185390357 0.03851726386982698 2.504063916291041 2.480944402521809 2.944784594241413 2.932010477579551 0.006419994956274464 +GFLOW: 0.8125 0.02776801391805717 0.0371371547793204 2.472655968804852 2.474684508513712 2.941926482701848 2.932392841588005 0.005774209459538063 +GFLOW: 0.875 0.02678129392845017 0.03655312386978807 2.455573548724176 2.470579560089488 2.938982483145239 2.931886013703487 0.005135852251880555 +GFLOW: 0.9375 0.02640101140658564 0.0365578627077278 2.448871421446105 2.465343859433491 2.936179598659281 2.930523903351459 0.00455003036918984 +GFLOW: 1 0.0264555844795843 0.03700714527458681 2.44916440651395 2.458864900911031 2.933655576047524 2.928444532360039 0.003987242856075029 Number of steps = 16 -Time to complete flow = 4.487572e-01 seconds +Time to complete flow = 4.337990e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.501591e-01 seconds -exit: Fri Oct 28 17:48:34 2022 +Time = 4.351289e-01 seconds +exit: Mon Oct 31 15:53:23 2022 diff --git a/wilson_flow/test/wilson_flow_cf3_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_cf3_a.wilson.1.errtol index 63a791fb2..fd9554641 100644 --- a/wilson_flow/test/wilson_flow_cf3_a.wilson.1.errtol +++ b/wilson_flow/test/wilson_flow_cf3_a.wilson.1.errtol @@ -1,8 +1,8 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0005 0.0005 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_cf3_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_cf3_a.wilson.1.sample-out index 46073ec45..210ee17da 100644 --- a/wilson_flow/test/wilson_flow_cf3_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_cf3_a.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 17:48:33 2022 +start: Mon Oct 31 15:53:22 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.040863e-04 +Time to reload gauge configuration = 2.019405e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.914139e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.771394 0.763463 2.35003 2.51478 1.82731 1.98882 0.00923064 -GFLOW: 0.125 0.478302 0.527838 2.64993 2.7966 2.28877 2.48414 -0.0142487 -GFLOW: 0.1875 0.304007 0.368163 2.79962 2.89485 2.55177 2.70393 -0.00891263 -GFLOW: 0.25 0.205842 0.26298 2.87872 2.93733 2.70561 2.81212 -0.00220205 -GFLOW: 0.3125 0.147574 0.193082 2.92241 2.95897 2.79836 2.87154 0.00142841 -GFLOW: 0.375 0.110769 0.145685 2.94771 2.97126 2.85628 2.90705 0.00300051 -GFLOW: 0.4375 0.0862074 0.112688 2.96309 2.97882 2.89387 2.92972 0.0034924 -GFLOW: 0.5 0.0690479 0.0890668 2.97292 2.98376 2.91922 2.94499 0.00344027 -GFLOW: 0.5625 0.0565961 0.0717075 2.97948 2.98714 2.93694 2.95574 0.00313229 -GFLOW: 0.625 0.0472704 0.0586496 2.98404 2.98957 2.94973 2.96358 0.0027244 -GFLOW: 0.6875 0.0400978 0.0486285 2.98732 2.99136 2.95921 2.96949 0.00229902 -GFLOW: 0.75 0.0344556 0.0408045 2.98974 2.99272 2.96641 2.97406 0.0018978 -GFLOW: 0.8125 0.0299313 0.0346044 2.99157 2.99378 2.97198 2.97767 0.00154 -GFLOW: 0.875 0.0262435 0.0296268 2.99299 2.99463 2.97636 2.98057 0.00123245 -GFLOW: 0.9375 0.0231953 0.0255839 2.9941 2.99532 2.97986 2.98295 0.000975064 -GFLOW: 1 0.0206451 0.0222652 2.99499 2.99588 2.98269 2.98491 0.000764088 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.771394 0.763463 2.51478 2.35003 1.98882 1.82731 0.00923064 +GFLOW: 0.125 0.478302 0.527838 2.7966 2.64993 2.48414 2.28877 -0.0142487 +GFLOW: 0.1875 0.304007 0.368163 2.89485 2.79962 2.70393 2.55177 -0.00891263 +GFLOW: 0.25 0.205842 0.26298 2.93733 2.87872 2.81212 2.70561 -0.00220205 +GFLOW: 0.3125 0.147574 0.193082 2.95897 2.92241 2.87154 2.79836 0.00142841 +GFLOW: 0.375 0.110769 0.145685 2.97126 2.94771 2.90705 2.85628 0.00300051 +GFLOW: 0.4375 0.0862074 0.112688 2.97882 2.96309 2.92972 2.89387 0.0034924 +GFLOW: 0.5 0.0690479 0.0890668 2.98376 2.97292 2.94499 2.91922 0.00344027 +GFLOW: 0.5625 0.0565961 0.0717075 2.98714 2.97948 2.95574 2.93694 0.00313229 +GFLOW: 0.625 0.0472704 0.0586496 2.98957 2.98404 2.96358 2.94973 0.0027244 +GFLOW: 0.6875 0.0400978 0.0486285 2.99136 2.98732 2.96949 2.95921 0.00229902 +GFLOW: 0.75 0.0344556 0.0408045 2.99272 2.98974 2.97406 2.96641 0.0018978 +GFLOW: 0.8125 0.0299313 0.0346044 2.99378 2.99157 2.97767 2.97198 0.00154 +GFLOW: 0.875 0.0262435 0.0296268 2.99463 2.99299 2.98057 2.97636 0.00123245 +GFLOW: 0.9375 0.0231953 0.0255839 2.99532 2.9941 2.98295 2.97986 0.000975064 +GFLOW: 1 0.0206451 0.0222652 2.99588 2.99499 2.98491 2.98269 0.000764088 Number of steps = 16 -Time to complete flow = 1.338301e-01 seconds +Time to complete flow = 1.319370e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.347699e-01 seconds -exit: Fri Oct 28 17:48:33 2022 +Time = 1.328609e-01 seconds +exit: Mon Oct 31 15:53:22 2022 diff --git a/wilson_flow/test/wilson_flow_cf3_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_cf3_a.wilson.2.errtol index 8e6cbfe2d..861cd8cc6 100644 --- a/wilson_flow/test/wilson_flow_cf3_a.wilson.2.errtol +++ b/wilson_flow/test/wilson_flow_cf3_a.wilson.2.errtol @@ -1,8 +1,8 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 5e-08 5e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_cf3_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_cf3_a.wilson.2.sample-out index 7b3dd4783..b0af6d90a 100644 --- a/wilson_flow/test/wilson_flow_cf3_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_cf3_a.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 17:48:33 2022 +start: Mon Oct 31 15:53:22 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.069473e-04 +Time to reload gauge configuration = 2.119541e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.758503e-04 +Time to check unitarity = 2.741814e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.7713943927111765 0.7634630606084033 2.350031769691219 2.514781281388779 1.827313562898589 1.988817497601031 0.009230654874579167 -GFLOW: 0.125 0.4783018307034984 0.5278376531532574 2.649933337074537 2.796602206597927 2.288769917757433 2.484136382659088 -0.01424865826713364 -GFLOW: 0.1875 0.3040069885631543 0.3681627846516449 2.799621614853425 2.894850338243851 2.551766666190282 2.703927714696604 -0.008912601319346463 -GFLOW: 0.25 0.2058422906160145 0.262979678284835 2.878724388578633 2.937331644318232 2.705607394159806 2.812120892576583 -0.002202050045844614 -GFLOW: 0.3125 0.1475744998920776 0.1930818995378535 2.922412968295223 2.958971069424337 2.798361192884147 2.871542716078521 0.001428422660655399 -GFLOW: 0.375 0.1107686351529781 0.1456845684946342 2.947706530259039 2.971264443735393 2.856279349023733 2.907050793606105 0.003000514140365618 -GFLOW: 0.4375 0.08620742260587037 0.1126878068200699 2.96309444114991 2.978820138747814 2.893865730240932 2.929720711461997 0.003492403648589035 -GFLOW: 0.5 0.06904793934999515 0.089066845216787 2.972920751304649 2.983756288158857 2.919216134426235 2.944989834116293 0.003440281614678888 -GFLOW: 0.5625 0.05659609296831514 0.07170749421520603 2.97948223117384 2.987144020853274 2.936937870057502 2.955736989007537 0.00313229769814082 -GFLOW: 0.625 0.04727039539313523 0.05864964752886612 2.984040271481168 2.989565731350398 2.949726454903459 2.963583780173089 0.002724400950056311 -GFLOW: 0.6875 0.04009784923534647 0.04862850192146762 2.987315949290818 2.991357003111515 2.95921078668998 2.96949223887249 0.002299018937985342 -GFLOW: 0.75 0.0344556072120725 0.04080448248165022 2.989738309917906 2.992720659682238 2.966409296088727 2.974058541243195 0.001897809466426802 -GFLOW: 0.8125 0.02993126138306861 0.03460443411410587 2.991572797774242 2.993784337208987 2.971980594699287 2.977666196559655 0.001540011220568367 -GFLOW: 0.875 0.02624351365944406 0.02962682557763133 2.992989881229956 2.994631243018774 2.976364512972979 2.98057015833291 0.001232452629599708 -GFLOW: 0.9375 0.0231952897564902 0.02558385889964792 2.994102903052204 2.995317367964125 2.979863573115704 2.982945019270884 0.0009750678711856884 -GFLOW: 1 0.02064511780478029 0.022265170435597 2.994989617920152 2.995881490355348 2.982691375757261 2.984913612506852 0.0007640898777279815 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.7713943927111765 0.7634630606084033 2.514781281388779 2.350031769691219 1.988817497601031 1.827313562898589 0.009230654874579167 +GFLOW: 0.125 0.4783018307034984 0.5278376531532574 2.796602206597927 2.649933337074537 2.484136382659088 2.288769917757433 -0.01424865826713364 +GFLOW: 0.1875 0.3040069885631543 0.3681627846516449 2.894850338243851 2.799621614853425 2.703927714696604 2.551766666190282 -0.008912601319346463 +GFLOW: 0.25 0.2058422906160145 0.262979678284835 2.937331644318232 2.878724388578633 2.812120892576583 2.705607394159806 -0.002202050045844614 +GFLOW: 0.3125 0.1475744998920776 0.1930818995378535 2.958971069424337 2.922412968295223 2.871542716078521 2.798361192884147 0.001428422660655399 +GFLOW: 0.375 0.1107686351529781 0.1456845684946342 2.971264443735393 2.947706530259039 2.907050793606105 2.856279349023733 0.003000514140365618 +GFLOW: 0.4375 0.08620742260587037 0.1126878068200699 2.978820138747814 2.96309444114991 2.929720711461997 2.893865730240932 0.003492403648589035 +GFLOW: 0.5 0.06904793934999515 0.089066845216787 2.983756288158857 2.972920751304649 2.944989834116293 2.919216134426235 0.003440281614678888 +GFLOW: 0.5625 0.05659609296831514 0.07170749421520603 2.987144020853274 2.97948223117384 2.955736989007537 2.936937870057502 0.00313229769814082 +GFLOW: 0.625 0.04727039539313523 0.05864964752886612 2.989565731350398 2.984040271481168 2.963583780173089 2.949726454903459 0.002724400950056311 +GFLOW: 0.6875 0.04009784923534647 0.04862850192146762 2.991357003111515 2.987315949290818 2.96949223887249 2.95921078668998 0.002299018937985342 +GFLOW: 0.75 0.0344556072120725 0.04080448248165022 2.992720659682238 2.989738309917906 2.974058541243195 2.966409296088727 0.001897809466426802 +GFLOW: 0.8125 0.02993126138306861 0.03460443411410587 2.993784337208987 2.991572797774242 2.977666196559655 2.971980594699287 0.001540011220568367 +GFLOW: 0.875 0.02624351365944406 0.02962682557763133 2.994631243018774 2.992989881229956 2.98057015833291 2.976364512972979 0.001232452629599708 +GFLOW: 0.9375 0.0231952897564902 0.02558385889964792 2.995317367964125 2.994102903052204 2.982945019270884 2.979863573115704 0.0009750678711856884 +GFLOW: 1 0.02064511780478029 0.022265170435597 2.995881490355348 2.994989617920152 2.984913612506852 2.982691375757261 0.0007640898777279815 Number of steps = 16 -Time to complete flow = 1.593132e-01 seconds +Time to complete flow = 1.545990e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.606832e-01 seconds -exit: Fri Oct 28 17:48:33 2022 +Time = 1.559489e-01 seconds +exit: Mon Oct 31 15:53:22 2022 diff --git a/wilson_flow/test/wilson_flow_ck.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_ck.symanzik.1.sample-out index 7bda83017..9571123d3 100644 --- a/wilson_flow/test/wilson_flow_ck.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_ck.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:00:16 2022 +start: Mon Oct 31 16:03:40 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.919270e-04 +Time to reload gauge configuration = 2.059937e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.794930e-05 +Time to check unitarity = 6.914139e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.853802 0.828745 2.37573 2.36237 1.80293 1.77604 0.0468074 -GFLOW: 0.125 0.606994 0.58331 2.68456 2.6797 2.28985 2.273 0.0230022 -GFLOW: 0.1875 0.424321 0.39873 2.82859 2.82471 2.56815 2.55178 0.0151542 -GFLOW: 0.25 0.305533 0.277981 2.89892 2.89451 2.72343 2.70558 0.0123547 -GFLOW: 0.3125 0.228958 0.200863 2.93558 2.93074 2.81253 2.79378 0.0101122 -GFLOW: 0.375 0.178029 0.150559 2.95611 2.95112 2.86619 2.84738 0.007886 -GFLOW: 0.4375 0.142767 0.116572 2.96842 2.9635 2.90023 2.88197 0.00591784 -GFLOW: 0.5 0.117406 0.0927635 2.97627 2.97155 2.92293 2.90553 0.00433525 -GFLOW: 0.5625 0.0985634 0.0755336 2.98155 2.97708 2.93872 2.92233 0.00312798 -GFLOW: 0.625 0.0841822 0.0627121 2.98525 2.98106 2.95011 2.93476 0.00223029 -GFLOW: 0.6875 0.0729603 0.0529448 2.98794 2.98402 2.95857 2.94422 0.00156929 -GFLOW: 0.75 0.0640397 0.0453554 2.98995 2.98629 2.96501 2.9516 0.0010829 -GFLOW: 0.8125 0.0568348 0.0393576 2.99149 2.98807 2.97002 2.95747 0.000723511 -GFLOW: 0.875 0.0509342 0.0345475 2.99269 2.98949 2.97398 2.96222 0.000456365 -GFLOW: 0.9375 0.0460408 0.0306391 2.99364 2.99065 2.97716 2.96611 0.000256573 -GFLOW: 1 0.0419366 0.0274257 2.99441 2.9916 2.97974 2.96934 0.000106434 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.853802 0.828745 2.36237 2.37573 1.77604 1.80293 0.0468074 +GFLOW: 0.125 0.606994 0.58331 2.6797 2.68456 2.273 2.28985 0.0230022 +GFLOW: 0.1875 0.424321 0.39873 2.82471 2.82859 2.55178 2.56815 0.0151542 +GFLOW: 0.25 0.305533 0.277981 2.89451 2.89892 2.70558 2.72343 0.0123547 +GFLOW: 0.3125 0.228958 0.200863 2.93074 2.93558 2.79378 2.81253 0.0101122 +GFLOW: 0.375 0.178029 0.150559 2.95112 2.95611 2.84738 2.86619 0.007886 +GFLOW: 0.4375 0.142767 0.116572 2.9635 2.96842 2.88197 2.90023 0.00591784 +GFLOW: 0.5 0.117406 0.0927635 2.97155 2.97627 2.90553 2.92293 0.00433525 +GFLOW: 0.5625 0.0985634 0.0755336 2.97708 2.98155 2.92233 2.93872 0.00312798 +GFLOW: 0.625 0.0841822 0.0627121 2.98106 2.98525 2.93476 2.95011 0.00223029 +GFLOW: 0.6875 0.0729603 0.0529448 2.98402 2.98794 2.94422 2.95857 0.00156929 +GFLOW: 0.75 0.0640397 0.0453554 2.98629 2.98995 2.9516 2.96501 0.0010829 +GFLOW: 0.8125 0.0568348 0.0393576 2.98807 2.99149 2.95747 2.97002 0.000723511 +GFLOW: 0.875 0.0509342 0.0345475 2.98949 2.99269 2.96222 2.97398 0.000456365 +GFLOW: 0.9375 0.0460408 0.0306391 2.99065 2.99364 2.96611 2.97716 0.000256573 +GFLOW: 1 0.0419366 0.0274257 2.9916 2.99441 2.96934 2.97974 0.000106434 Number of steps = 16 -Time to complete flow = 5.822339e-01 seconds +Time to complete flow = 5.891240e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.831490e-01 seconds -exit: Fri Oct 28 18:00:17 2022 +Time = 5.900750e-01 seconds +exit: Mon Oct 31 16:03:40 2022 diff --git a/wilson_flow/test/wilson_flow_ck.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_ck.symanzik.2.sample-out index 9c66565e9..8bd210f5c 100644 --- a/wilson_flow/test/wilson_flow_ck.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_ck.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:00:17 2022 +start: Mon Oct 31 16:03:40 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.090931e-04 +Time to reload gauge configuration = 2.229214e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.710819e-04 +Time to check unitarity = 2.739429e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.8538024171258738 0.8287454255568873 2.375733022008848 2.362371644705775 1.802929097356299 1.776043623868389 0.0468073501846351 -GFLOW: 0.125 0.6069941510183514 0.5833098845606514 2.684563925459105 2.679701464912458 2.289851471791427 2.272996229013717 0.02300219716150606 -GFLOW: 0.1875 0.424321004795519 0.3987304158926558 2.828593317998969 2.824709987753531 2.568148704269233 2.551783724665988 0.01515419493966593 -GFLOW: 0.25 0.3055327273438593 0.2779807227753652 2.898920737672523 2.894505829080569 2.723429892543532 2.705578489524143 0.01235474209363432 -GFLOW: 0.3125 0.2289575315576213 0.2008630569907255 2.935583341192662 2.930735936503493 2.812533996370485 2.793780019436992 0.01011226675170361 -GFLOW: 0.375 0.178029134095559 0.1505588994720508 2.956111354612482 2.951120928835126 2.866186898123232 2.847378018371787 0.007886034979185018 -GFLOW: 0.4375 0.1427672476896437 0.1165718605844971 2.968422654714486 2.9635047204105 2.900233682104328 2.881966611153967 0.005917863197937137 -GFLOW: 0.5 0.1174062773232116 0.09276353093745429 2.976273108570453 2.971552828369528 2.922928273276621 2.905531966803748 0.004335281869208479 -GFLOW: 0.5625 0.09856344486122985 0.07553358372134206 2.981547501339596 2.977084704802347 2.93871865127985 2.922333385508605 0.003127998093553576 -GFLOW: 0.625 0.08418226207375464 0.06271213815700305 2.985247674089315 2.981061808455666 2.950107927956557 2.934760053620236 0.002230312493979359 -GFLOW: 0.6875 0.07296035722837727 0.05294481298724335 2.987936557791267 2.984024504384918 2.958570568298017 2.944224809068439 0.001569305690545583 -GFLOW: 0.75 0.06403972244055553 0.04535538460825249 2.98994728507692 2.986294584793946 2.965014499964871 2.951606331556511 0.00108290622599463 -GFLOW: 0.8125 0.05683488178982769 0.03935764560905165 2.991486514808554 2.9880739189306 2.970022215980307 2.957476422546556 0.0007235222562663588 -GFLOW: 0.875 0.05093418380447465 0.03454751102613438 2.992687938055619 2.989494993537468 2.973981387679876 2.962221990588796 0.0004563768151359079 -GFLOW: 0.9375 0.04604087926300007 0.03063912237458566 2.993641259296205 2.99064813445157 2.977158402728709 2.966113535860531 0.0002565843724865501 -GFLOW: 1 0.0419365823466555 0.02742573261684322 2.994408579617042 2.991596896189359 2.979741377472791 2.969345342434051 0.0001064405011650979 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.8538024171258738 0.8287454255568873 2.362371644705775 2.375733022008848 1.776043623868389 1.802929097356299 0.0468073501846351 +GFLOW: 0.125 0.6069941510183514 0.5833098845606514 2.679701464912458 2.684563925459105 2.272996229013717 2.289851471791427 0.02300219716150606 +GFLOW: 0.1875 0.424321004795519 0.3987304158926558 2.824709987753531 2.828593317998969 2.551783724665988 2.568148704269233 0.01515419493966593 +GFLOW: 0.25 0.3055327273438593 0.2779807227753652 2.894505829080569 2.898920737672523 2.705578489524143 2.723429892543532 0.01235474209363432 +GFLOW: 0.3125 0.2289575315576213 0.2008630569907255 2.930735936503493 2.935583341192662 2.793780019436992 2.812533996370485 0.01011226675170361 +GFLOW: 0.375 0.178029134095559 0.1505588994720508 2.951120928835126 2.956111354612482 2.847378018371787 2.866186898123232 0.007886034979185018 +GFLOW: 0.4375 0.1427672476896437 0.1165718605844971 2.9635047204105 2.968422654714486 2.881966611153967 2.900233682104328 0.005917863197937137 +GFLOW: 0.5 0.1174062773232116 0.09276353093745429 2.971552828369528 2.976273108570453 2.905531966803748 2.922928273276621 0.004335281869208479 +GFLOW: 0.5625 0.09856344486122985 0.07553358372134206 2.977084704802347 2.981547501339596 2.922333385508605 2.93871865127985 0.003127998093553576 +GFLOW: 0.625 0.08418226207375464 0.06271213815700305 2.981061808455666 2.985247674089315 2.934760053620236 2.950107927956557 0.002230312493979359 +GFLOW: 0.6875 0.07296035722837727 0.05294481298724335 2.984024504384918 2.987936557791267 2.944224809068439 2.958570568298017 0.001569305690545583 +GFLOW: 0.75 0.06403972244055553 0.04535538460825249 2.986294584793946 2.98994728507692 2.951606331556511 2.965014499964871 0.00108290622599463 +GFLOW: 0.8125 0.05683488178982769 0.03935764560905165 2.9880739189306 2.991486514808554 2.957476422546556 2.970022215980307 0.0007235222562663588 +GFLOW: 0.875 0.05093418380447465 0.03454751102613438 2.989494993537468 2.992687938055619 2.962221990588796 2.973981387679876 0.0004563768151359079 +GFLOW: 0.9375 0.04604087926300007 0.03063912237458566 2.99064813445157 2.993641259296205 2.966113535860531 2.977158402728709 0.0002565843724865501 +GFLOW: 1 0.0419365823466555 0.02742573261684322 2.991596896189359 2.994408579617042 2.969345342434051 2.979741377472791 0.0001064405011650979 Number of steps = 16 -Time to complete flow = 6.883149e-01 seconds +Time to complete flow = 7.119980e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 6.896830e-01 seconds -exit: Fri Oct 28 18:00:18 2022 +Time = 7.134118e-01 seconds +exit: Mon Oct 31 16:03:41 2022 diff --git a/wilson_flow/test/wilson_flow_ck.wilson.1.sample-out b/wilson_flow/test/wilson_flow_ck.wilson.1.sample-out index 3675ffb2c..2062ada8d 100644 --- a/wilson_flow/test/wilson_flow_ck.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_ck.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:00:16 2022 +start: Mon Oct 31 16:03:39 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.950264e-04 +Time to reload gauge configuration = 2.000332e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.818771e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.905716 0.879587 2.21653 2.19725 1.61673 1.58364 0.0556872 -GFLOW: 0.125 0.711525 0.687048 2.5305 2.52146 2.05963 2.03792 0.0303356 -GFLOW: 0.1875 0.53623 0.511728 2.71689 2.71185 2.37236 2.35494 0.0177958 -GFLOW: 0.25 0.401502 0.375447 2.82503 2.82068 2.57821 2.56082 0.0125149 -GFLOW: 0.3125 0.304739 0.277221 2.88791 2.88327 2.71014 2.69172 0.0101715 -GFLOW: 0.375 0.236434 0.208351 2.92517 2.9202 2.79476 2.77562 0.00857887 -GFLOW: 0.4375 0.187822 0.160066 2.94791 2.94279 2.84995 2.8307 0.0070956 -GFLOW: 0.5 0.152553 0.125736 2.96229 2.9572 2.88689 2.86802 0.00569323 -GFLOW: 0.5625 0.126375 0.100841 2.97173 2.96679 2.91233 2.89418 0.00445123 -GFLOW: 0.625 0.106507 0.0824045 2.97816 2.97344 2.93037 2.91312 0.00341285 -GFLOW: 0.6875 0.0911159 0.068473 2.98269 2.97822 2.94351 2.92723 0.00257753 -GFLOW: 0.75 0.0789768 0.0577504 2.98597 2.98177 2.95332 2.93802 0.00192096 -GFLOW: 0.8125 0.0692499 0.0493605 2.98841 2.98447 2.9608 2.94644 0.00141127 -GFLOW: 0.875 0.0613466 0.0426989 2.99027 2.98658 2.9666 2.95314 0.00101775 -GFLOW: 0.9375 0.0548452 0.0373397 2.99171 2.98826 2.97119 2.95855 0.000714273 -GFLOW: 1 0.0494367 0.032977 2.99285 2.98961 2.97487 2.96299 0.000480004 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.905716 0.879587 2.19725 2.21653 1.58364 1.61673 0.0556872 +GFLOW: 0.125 0.711525 0.687048 2.52146 2.5305 2.03792 2.05963 0.0303356 +GFLOW: 0.1875 0.53623 0.511728 2.71185 2.71689 2.35494 2.37236 0.0177958 +GFLOW: 0.25 0.401502 0.375447 2.82068 2.82503 2.56082 2.57821 0.0125149 +GFLOW: 0.3125 0.304739 0.277221 2.88327 2.88791 2.69172 2.71014 0.0101715 +GFLOW: 0.375 0.236434 0.208351 2.9202 2.92517 2.77562 2.79476 0.00857887 +GFLOW: 0.4375 0.187822 0.160066 2.94279 2.94791 2.8307 2.84995 0.0070956 +GFLOW: 0.5 0.152553 0.125736 2.9572 2.96229 2.86802 2.88689 0.00569323 +GFLOW: 0.5625 0.126375 0.100841 2.96679 2.97173 2.89418 2.91233 0.00445123 +GFLOW: 0.625 0.106507 0.0824045 2.97344 2.97816 2.91312 2.93037 0.00341285 +GFLOW: 0.6875 0.0911159 0.068473 2.97822 2.98269 2.92723 2.94351 0.00257753 +GFLOW: 0.75 0.0789768 0.0577504 2.98177 2.98597 2.93802 2.95332 0.00192096 +GFLOW: 0.8125 0.0692499 0.0493605 2.98447 2.98841 2.94644 2.9608 0.00141127 +GFLOW: 0.875 0.0613466 0.0426989 2.98658 2.99027 2.95314 2.9666 0.00101775 +GFLOW: 0.9375 0.0548452 0.0373397 2.98826 2.99171 2.95855 2.97119 0.000714273 +GFLOW: 1 0.0494367 0.032977 2.98961 2.99285 2.96299 2.97487 0.000480004 Number of steps = 16 -Time to complete flow = 1.925728e-01 seconds +Time to complete flow = 1.925631e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.935089e-01 seconds -exit: Fri Oct 28 18:00:16 2022 +Time = 1.934991e-01 seconds +exit: Mon Oct 31 16:03:40 2022 diff --git a/wilson_flow/test/wilson_flow_ck.wilson.2.sample-out b/wilson_flow/test/wilson_flow_ck.wilson.2.sample-out index a6d888ae9..7958cc70b 100644 --- a/wilson_flow/test/wilson_flow_ck.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_ck.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:00:16 2022 +start: Mon Oct 31 16:03:40 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.140999e-04 +Time to reload gauge configuration = 2.090931e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.739429e-04 +Time to check unitarity = 2.741814e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.9057161062336272 0.8795864854631501 2.216532461684175 2.197245946658469 1.616733492229816 1.583642874136251 0.05568724694142022 -GFLOW: 0.125 0.7115246856116612 0.687048119754271 2.53049989731755 2.521462604861131 2.059627046693099 2.037920062258599 0.03033557243909978 -GFLOW: 0.1875 0.5362303344775158 0.5117283787417388 2.716888287477472 2.711849173315535 2.372358588909376 2.354942969493995 0.01779575119379141 -GFLOW: 0.25 0.4015015978634898 0.3754474827238493 2.825029138613603 2.820675513545712 2.578207504767697 2.560821192323999 0.01251490755186715 -GFLOW: 0.3125 0.3047387949957674 0.2772210084303621 2.887908496914991 2.883272107460986 2.710142720718046 2.691722147996936 0.01017151912381811 -GFLOW: 0.375 0.2364340280154606 0.2083514682131738 2.925165620115127 2.920200299668791 2.794755431524462 2.775617869985821 0.008578906639404272 -GFLOW: 0.4375 0.1878224166884487 0.1600663345476213 2.947907350544321 2.942791764507341 2.849949230406613 2.830697474240983 0.007095628498215998 -GFLOW: 0.5 0.1525526974101973 0.1257362444486345 2.962290960295656 2.957201358503971 2.886886247246878 2.868023177580902 0.005693255426877902 -GFLOW: 0.5625 0.126375151434434 0.1008411868027363 2.971733924110705 2.966793507196958 2.912330090891356 2.894184547334724 0.004451253866303219 -GFLOW: 0.625 0.1065066730089616 0.08240452839745217 2.978162059326774 2.973442968511344 2.93037029217101 2.913121727139801 0.003412852889236642 -GFLOW: 0.6875 0.09111590473230985 0.06847303572394633 2.982686785173154 2.978223643084835 2.943511133174177 2.92723332691971 0.002577535334270231 -GFLOW: 0.75 0.07897679896874556 0.05775039489489908 2.985968236454973 2.981771197168751 2.953318527610918 2.938017923560914 0.001920968387524663 -GFLOW: 0.8125 0.06924988849572515 0.04936050034757671 2.988410890226512 2.984475449079231 2.960796405786113 2.946440086445061 0.001411276916941563 -GFLOW: 0.875 0.06134667165981911 0.04269887901289016 2.990270538864177 2.986584162356692 2.966605647702595 2.953139991515951 0.001017749471620342 -GFLOW: 0.9375 0.0548452058492109 0.03733970414687345 2.991714014616549 2.988260337223827 2.971192848733542 2.958555240730743 0.0007142739353339791 -GFLOW: 1 0.04943675585547579 0.03297702832885498 2.992853350217406 2.989614695326577 2.974867392713423 2.962993195380845 0.0004799988896040288 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.9057161062336272 0.8795864854631501 2.197245946658469 2.216532461684175 1.583642874136251 1.616733492229816 0.05568724694142022 +GFLOW: 0.125 0.7115246856116612 0.687048119754271 2.521462604861131 2.53049989731755 2.037920062258599 2.059627046693099 0.03033557243909978 +GFLOW: 0.1875 0.5362303344775158 0.5117283787417388 2.711849173315535 2.716888287477472 2.354942969493995 2.372358588909376 0.01779575119379141 +GFLOW: 0.25 0.4015015978634898 0.3754474827238493 2.820675513545712 2.825029138613603 2.560821192323999 2.578207504767697 0.01251490755186715 +GFLOW: 0.3125 0.3047387949957674 0.2772210084303621 2.883272107460986 2.887908496914991 2.691722147996936 2.710142720718046 0.01017151912381811 +GFLOW: 0.375 0.2364340280154606 0.2083514682131738 2.920200299668791 2.925165620115127 2.775617869985821 2.794755431524462 0.008578906639404272 +GFLOW: 0.4375 0.1878224166884487 0.1600663345476213 2.942791764507341 2.947907350544321 2.830697474240983 2.849949230406613 0.007095628498215998 +GFLOW: 0.5 0.1525526974101973 0.1257362444486345 2.957201358503971 2.962290960295656 2.868023177580902 2.886886247246878 0.005693255426877902 +GFLOW: 0.5625 0.126375151434434 0.1008411868027363 2.966793507196958 2.971733924110705 2.894184547334724 2.912330090891356 0.004451253866303219 +GFLOW: 0.625 0.1065066730089616 0.08240452839745217 2.973442968511344 2.978162059326774 2.913121727139801 2.93037029217101 0.003412852889236642 +GFLOW: 0.6875 0.09111590473230985 0.06847303572394633 2.978223643084835 2.982686785173154 2.92723332691971 2.943511133174177 0.002577535334270231 +GFLOW: 0.75 0.07897679896874556 0.05775039489489908 2.981771197168751 2.985968236454973 2.938017923560914 2.953318527610918 0.001920968387524663 +GFLOW: 0.8125 0.06924988849572515 0.04936050034757671 2.984475449079231 2.988410890226512 2.946440086445061 2.960796405786113 0.001411276916941563 +GFLOW: 0.875 0.06134667165981911 0.04269887901289016 2.986584162356692 2.990270538864177 2.953139991515951 2.966605647702595 0.001017749471620342 +GFLOW: 0.9375 0.0548452058492109 0.03733970414687345 2.988260337223827 2.991714014616549 2.958555240730743 2.971192848733542 0.0007142739353339791 +GFLOW: 1 0.04943675585547579 0.03297702832885498 2.989614695326577 2.992853350217406 2.962993195380845 2.974867392713423 0.0004799988896040288 Number of steps = 16 -Time to complete flow = 2.222559e-01 seconds +Time to complete flow = 2.225249e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.236199e-01 seconds -exit: Fri Oct 28 18:00:16 2022 +Time = 2.238781e-01 seconds +exit: Mon Oct 31 16:03:40 2022 diff --git a/wilson_flow/test/wilson_flow_ck_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_ck_a.symanzik.1.errtol index 867204b69..c913c1677 100644 --- a/wilson_flow/test/wilson_flow_ck_a.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_ck_a.symanzik.1.errtol @@ -1,7 +1,7 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_ck_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_ck_a.symanzik.1.sample-out index 93f2bb0da..d558d55a3 100644 --- a/wilson_flow/test/wilson_flow_ck_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_ck_a.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:00:18 2022 +start: Mon Oct 31 16:03:42 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.950264e-04 +Time to reload gauge configuration = 1.921654e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.699562e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.680938 0.690218 2.49733 2.6621 2.02003 2.20799 -0.00319527 -GFLOW: 0.125 0.381292 0.439145 2.76514 2.8667 2.46742 2.62763 -0.00540695 -GFLOW: 0.1875 0.235858 0.291214 2.87528 2.93036 2.68439 2.78859 0.00308674 -GFLOW: 0.25 0.159862 0.20271 2.92622 2.95751 2.79778 2.86435 0.00571779 -GFLOW: 0.3125 0.115873 0.147543 2.95235 2.97139 2.8616 2.90541 0.00579957 -GFLOW: 0.375 0.0882184 0.111488 2.96707 2.97936 2.90013 2.93 0.00517051 -GFLOW: 0.4375 0.0696817 0.0868174 2.97603 2.98435 2.92492 2.94587 0.00439873 -GFLOW: 0.5 0.0566151 0.0692486 2.98186 2.98768 2.94173 2.95673 0.00365129 -GFLOW: 0.5625 0.0470259 0.056318 2.98586 2.99001 2.95364 2.96452 0.00297728 -GFLOW: 0.625 0.0397544 0.0465446 2.98872 2.99173 2.96239 2.97032 0.00239028 -GFLOW: 0.6875 0.0340902 0.0389966 2.99084 2.99303 2.96899 2.97477 0.00189194 -GFLOW: 0.75 0.0295793 0.0330628 2.99244 2.99404 2.97408 2.97827 0.00147834 -GFLOW: 0.8125 0.0259199 0.0283269 2.99368 2.99484 2.97807 2.98109 0.00114201 -GFLOW: 0.875 0.0229052 0.0244966 2.99466 2.99549 2.98126 2.98338 0.000873416 -GFLOW: 0.9375 0.0203887 0.0213617 2.99544 2.99603 2.98383 2.98529 0.000662213 -GFLOW: 1 0.0182644 0.0187679 2.99607 2.99647 2.98594 2.98688 0.000498303 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.680938 0.690218 2.6621 2.49733 2.20799 2.02003 -0.00319527 +GFLOW: 0.125 0.381292 0.439145 2.8667 2.76514 2.62763 2.46742 -0.00540695 +GFLOW: 0.1875 0.235858 0.291214 2.93036 2.87528 2.78859 2.68439 0.00308674 +GFLOW: 0.25 0.159862 0.20271 2.95751 2.92622 2.86435 2.79778 0.00571779 +GFLOW: 0.3125 0.115873 0.147543 2.97139 2.95235 2.90541 2.8616 0.00579957 +GFLOW: 0.375 0.0882184 0.111488 2.97936 2.96707 2.93 2.90013 0.00517051 +GFLOW: 0.4375 0.0696817 0.0868174 2.98435 2.97603 2.94587 2.92492 0.00439873 +GFLOW: 0.5 0.0566151 0.0692486 2.98768 2.98186 2.95673 2.94173 0.00365129 +GFLOW: 0.5625 0.0470259 0.056318 2.99001 2.98586 2.96452 2.95364 0.00297728 +GFLOW: 0.625 0.0397544 0.0465446 2.99173 2.98872 2.97032 2.96239 0.00239028 +GFLOW: 0.6875 0.0340902 0.0389966 2.99303 2.99084 2.97477 2.96899 0.00189194 +GFLOW: 0.75 0.0295793 0.0330628 2.99404 2.99244 2.97827 2.97408 0.00147834 +GFLOW: 0.8125 0.0259199 0.0283269 2.99484 2.99368 2.98109 2.97807 0.00114201 +GFLOW: 0.875 0.0229052 0.0244966 2.99549 2.99466 2.98338 2.98126 0.000873416 +GFLOW: 0.9375 0.0203887 0.0213617 2.99603 2.99544 2.98529 2.98383 0.000662213 +GFLOW: 1 0.0182644 0.0187679 2.99647 2.99607 2.98688 2.98594 0.000498303 Number of steps = 16 -Time to complete flow = 5.794361e-01 seconds +Time to complete flow = 5.866070e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.803492e-01 seconds -exit: Fri Oct 28 18:00:19 2022 +Time = 5.875368e-01 seconds +exit: Mon Oct 31 16:03:42 2022 diff --git a/wilson_flow/test/wilson_flow_ck_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_ck_a.symanzik.2.errtol index efbf1dccc..e1e9d1b7d 100644 --- a/wilson_flow/test/wilson_flow_ck_a.symanzik.2.errtol +++ b/wilson_flow/test/wilson_flow_ck_a.symanzik.2.errtol @@ -1,7 +1,7 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_ck_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_ck_a.symanzik.2.sample-out index 989721d69..b18b1806d 100644 --- a/wilson_flow/test/wilson_flow_ck_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_ck_a.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:00:19 2022 +start: Mon Oct 31 16:03:42 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.028942e-04 +Time to reload gauge configuration = 2.050400e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.729893e-04 +Time to check unitarity = 2.751350e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.6809377819170422 0.6902181570005429 2.497327080203822 2.662101369132726 2.020032465175898 2.207990831261513 -0.003195251660284452 -GFLOW: 0.125 0.3812919446039717 0.4391449000730085 2.765139521016314 2.866704601903391 2.467424753202904 2.627629690512798 -0.005406942801497071 -GFLOW: 0.1875 0.2358580480774822 0.2912140600109379 2.875278307468269 2.930361008767199 2.68438676047718 2.788589646334589 0.003086719269487925 -GFLOW: 0.25 0.1598622295875889 0.2027094922065367 2.926216372724614 2.957512524643475 2.797778639368051 2.864349763824201 0.005717768033481236 -GFLOW: 0.3125 0.1158730027844956 0.1475430686861201 2.952354867490176 2.971388357161363 2.861597378385369 2.905408281398696 0.005799561433818116 -GFLOW: 0.375 0.08821843131456017 0.1114878961153979 2.967067435028385 2.979360596534455 2.900133615481239 2.929996239071733 0.005170505069593634 -GFLOW: 0.4375 0.06968166819191007 0.08681741257864956 2.976030895897839 2.984346855192825 2.924915770502862 2.945869212566512 0.004398719978940459 -GFLOW: 0.5 0.05661514226578088 0.0692486247428698 2.981862317445508 2.987675581271479 2.941728689236643 2.956733400218209 0.003651281928596496 -GFLOW: 0.5625 0.04702592548854593 0.05631805148354909 2.985862657167883 2.990015257670538 2.953644970405664 2.964523560320854 0.002977274751346994 -GFLOW: 0.625 0.03975437883675583 0.04654460558943768 2.988724252754408 2.991729132400353 2.962390682144765 2.970322939662736 0.002390272717550616 -GFLOW: 0.6875 0.03409024532022537 0.03899663855579314 2.99083929211178 2.993027210148918 2.968989185938423 2.974773730352799 0.00189194004578856 -GFLOW: 0.75 0.02957930406506062 0.03306281844899556 2.992443072214822 2.994037388866296 2.974078627414533 2.978275501430931 0.001478336470299842 -GFLOW: 0.8125 0.02591995273776917 0.02832689776104513 2.993684256839014 2.994841146407275 2.978075412366036 2.981087509403208 0.001142007206937358 -GFLOW: 0.875 0.02290518310100093 0.02449663152696972 2.994661074055317 2.995492472059368 2.981262036796254 2.983384272468733 0.0008734115521185324 -GFLOW: 0.9375 0.0203887027122765 0.02136172418101899 2.995440879350614 2.99602839324106 2.983836377475227 2.985287116025093 0.0006622122104084191 -GFLOW: 1 0.01826444261148784 0.01876786428269259 2.996071251381579 2.996475077109209 2.985940627124168 2.98688279200371 0.0004983007764924855 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.6809377819170422 0.6902181570005429 2.662101369132726 2.497327080203822 2.207990831261513 2.020032465175898 -0.003195251660284452 +GFLOW: 0.125 0.3812919446039717 0.4391449000730085 2.866704601903391 2.765139521016314 2.627629690512798 2.467424753202904 -0.005406942801497071 +GFLOW: 0.1875 0.2358580480774822 0.2912140600109379 2.930361008767199 2.875278307468269 2.788589646334589 2.68438676047718 0.003086719269487925 +GFLOW: 0.25 0.1598622295875889 0.2027094922065367 2.957512524643475 2.926216372724614 2.864349763824201 2.797778639368051 0.005717768033481236 +GFLOW: 0.3125 0.1158730027844956 0.1475430686861201 2.971388357161363 2.952354867490176 2.905408281398696 2.861597378385369 0.005799561433818116 +GFLOW: 0.375 0.08821843131456017 0.1114878961153979 2.979360596534455 2.967067435028385 2.929996239071733 2.900133615481239 0.005170505069593634 +GFLOW: 0.4375 0.06968166819191007 0.08681741257864956 2.984346855192825 2.976030895897839 2.945869212566512 2.924915770502862 0.004398719978940459 +GFLOW: 0.5 0.05661514226578088 0.0692486247428698 2.987675581271479 2.981862317445508 2.956733400218209 2.941728689236643 0.003651281928596496 +GFLOW: 0.5625 0.04702592548854593 0.05631805148354909 2.990015257670538 2.985862657167883 2.964523560320854 2.953644970405664 0.002977274751346994 +GFLOW: 0.625 0.03975437883675583 0.04654460558943768 2.991729132400353 2.988724252754408 2.970322939662736 2.962390682144765 0.002390272717550616 +GFLOW: 0.6875 0.03409024532022537 0.03899663855579314 2.993027210148918 2.99083929211178 2.974773730352799 2.968989185938423 0.00189194004578856 +GFLOW: 0.75 0.02957930406506062 0.03306281844899556 2.994037388866296 2.992443072214822 2.978275501430931 2.974078627414533 0.001478336470299842 +GFLOW: 0.8125 0.02591995273776917 0.02832689776104513 2.994841146407275 2.993684256839014 2.981087509403208 2.978075412366036 0.001142007206937358 +GFLOW: 0.875 0.02290518310100093 0.02449663152696972 2.995492472059368 2.994661074055317 2.983384272468733 2.981262036796254 0.0008734115521185324 +GFLOW: 0.9375 0.0203887027122765 0.02136172418101899 2.99602839324106 2.995440879350614 2.985287116025093 2.983836377475227 0.0006622122104084191 +GFLOW: 1 0.01826444261148784 0.01876786428269259 2.996475077109209 2.996071251381579 2.98688279200371 2.985940627124168 0.0004983007764924855 Number of steps = 16 -Time to complete flow = 6.878290e-01 seconds +Time to complete flow = 7.114050e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 6.891580e-01 seconds -exit: Fri Oct 28 18:00:19 2022 +Time = 7.127440e-01 seconds +exit: Mon Oct 31 16:03:43 2022 diff --git a/wilson_flow/test/wilson_flow_ck_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_ck_a.wilson.1.errtol index 63a791fb2..fd9554641 100644 --- a/wilson_flow/test/wilson_flow_ck_a.wilson.1.errtol +++ b/wilson_flow/test/wilson_flow_ck_a.wilson.1.errtol @@ -1,8 +1,8 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0005 0.0005 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_ck_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_ck_a.wilson.1.sample-out index 8c7589760..86a2ba872 100644 --- a/wilson_flow/test/wilson_flow_ck_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_ck_a.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:00:18 2022 +start: Mon Oct 31 16:03:41 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.981258e-04 +Time to reload gauge configuration = 1.971722e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.794930e-05 +Time to check unitarity = 6.890297e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.769681 0.763276 2.34845 2.5114 1.8262 1.98787 0.00859189 -GFLOW: 0.125 0.47819 0.528265 2.64905 2.79386 2.28766 2.48153 -0.0140562 -GFLOW: 0.1875 0.304332 0.368349 2.79942 2.89393 2.55148 2.70268 -0.00876882 -GFLOW: 0.25 0.20607 0.263028 2.87865 2.93703 2.70553 2.81162 -0.00220008 -GFLOW: 0.3125 0.1477 0.1931 2.92237 2.95886 2.79831 2.87133 0.00140213 -GFLOW: 0.375 0.110837 0.145699 2.94768 2.97122 2.85624 2.90695 0.00298274 -GFLOW: 0.4375 0.0862455 0.112701 2.96307 2.9788 2.89384 2.92967 0.00348382 -GFLOW: 0.5 0.0690699 0.0890779 2.97291 2.98374 2.91919 2.94496 0.00343642 -GFLOW: 0.5625 0.0566093 0.0717162 2.97947 2.98714 2.93692 2.95572 0.00313033 -GFLOW: 0.625 0.0472786 0.0586563 2.98403 2.98956 2.94972 2.96357 0.00272312 -GFLOW: 0.6875 0.0401032 0.0486335 2.98731 2.99135 2.9592 2.96948 0.00229803 -GFLOW: 0.75 0.0344592 0.0408082 2.98974 2.99272 2.9664 2.97405 0.00189699 -GFLOW: 0.8125 0.0299338 0.0346073 2.99157 2.99378 2.97198 2.97766 0.00153933 -GFLOW: 0.875 0.0262454 0.0296291 2.99299 2.99463 2.97636 2.98057 0.00123191 -GFLOW: 0.9375 0.0231967 0.0255856 2.9941 2.99532 2.97986 2.98294 0.000974649 -GFLOW: 1 0.0206463 0.0222666 2.99499 2.99588 2.98269 2.98491 0.000763776 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.769681 0.763276 2.5114 2.34845 1.98787 1.8262 0.00859189 +GFLOW: 0.125 0.47819 0.528265 2.79386 2.64905 2.48153 2.28766 -0.0140562 +GFLOW: 0.1875 0.304332 0.368349 2.89393 2.79942 2.70268 2.55148 -0.00876882 +GFLOW: 0.25 0.20607 0.263028 2.93703 2.87865 2.81162 2.70553 -0.00220008 +GFLOW: 0.3125 0.1477 0.1931 2.95886 2.92237 2.87133 2.79831 0.00140213 +GFLOW: 0.375 0.110837 0.145699 2.97122 2.94768 2.90695 2.85624 0.00298274 +GFLOW: 0.4375 0.0862455 0.112701 2.9788 2.96307 2.92967 2.89384 0.00348382 +GFLOW: 0.5 0.0690699 0.0890779 2.98374 2.97291 2.94496 2.91919 0.00343642 +GFLOW: 0.5625 0.0566093 0.0717162 2.98714 2.97947 2.95572 2.93692 0.00313033 +GFLOW: 0.625 0.0472786 0.0586563 2.98956 2.98403 2.96357 2.94972 0.00272312 +GFLOW: 0.6875 0.0401032 0.0486335 2.99135 2.98731 2.96948 2.9592 0.00229803 +GFLOW: 0.75 0.0344592 0.0408082 2.99272 2.98974 2.97405 2.9664 0.00189699 +GFLOW: 0.8125 0.0299338 0.0346073 2.99378 2.99157 2.97766 2.97198 0.00153933 +GFLOW: 0.875 0.0262454 0.0296291 2.99463 2.99299 2.98057 2.97636 0.00123191 +GFLOW: 0.9375 0.0231967 0.0255856 2.99532 2.9941 2.98294 2.97986 0.000974649 +GFLOW: 1 0.0206463 0.0222666 2.99588 2.99499 2.98491 2.98269 0.000763776 Number of steps = 16 -Time to complete flow = 1.912889e-01 seconds +Time to complete flow = 1.927440e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.922190e-01 seconds -exit: Fri Oct 28 18:00:18 2022 +Time = 1.936710e-01 seconds +exit: Mon Oct 31 16:03:41 2022 diff --git a/wilson_flow/test/wilson_flow_ck_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_ck_a.wilson.2.errtol index 8e6cbfe2d..861cd8cc6 100644 --- a/wilson_flow/test/wilson_flow_ck_a.wilson.2.errtol +++ b/wilson_flow/test/wilson_flow_ck_a.wilson.2.errtol @@ -1,8 +1,8 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 5e-08 5e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_ck_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_ck_a.wilson.2.sample-out index 24f265f23..7ffaa31bd 100644 --- a/wilson_flow/test/wilson_flow_ck_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_ck_a.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:00:18 2022 +start: Mon Oct 31 16:03:41 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.019405e-04 +Time to reload gauge configuration = 2.028942e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.720356e-04 +Time to check unitarity = 2.758503e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.7696809187708318 0.7632755031149672 2.348454047673703 2.511403545710404 1.82620484416736 1.987873613175696 0.008591905850607939 -GFLOW: 0.125 0.4781900708089505 0.528264814152612 2.649053719447735 2.793856681455826 2.287662038766956 2.481532348146578 -0.0140562228825145 -GFLOW: 0.1875 0.3043319464280909 0.3683492195376011 2.799422216298391 2.893926630889087 2.551480923533672 2.702679815042122 -0.008768832391438742 -GFLOW: 0.25 0.2060701595086417 0.2630279061446056 2.878654216533527 2.937033026869737 2.705529059866122 2.811615892524802 -0.002200108828340588 -GFLOW: 0.3125 0.1477004834758075 0.1930998606768563 2.92236836553491 2.958860574405864 2.798314048211277 2.871325149223738 0.001402128923183742 -GFLOW: 0.375 0.1108370328810066 0.1456989046821651 2.947675611441401 2.971217157704384 2.856241072537238 2.906947847085453 0.002982731284848431 -GFLOW: 0.4375 0.08624553511525967 0.1127009190438239 2.963073958025953 2.978797498800507 2.893836132098094 2.929668012295812 0.003483807973074683 -GFLOW: 0.5 0.0690699509636402 0.08907788203973291 2.972907636058558 2.983744522196213 2.919194697679925 2.944961134490057 0.003436398801176777 -GFLOW: 0.5625 0.05660930565635393 0.07171618379264265 2.97947392753768 2.987137509682798 2.936922888208277 2.95572053789434 0.003130319228698291 -GFLOW: 0.625 0.04727865022963097 0.05865626574752075 2.984034985102145 2.989561936762165 2.949716102515725 2.963573911988476 0.002723121006786492 -GFLOW: 0.6875 0.04010322383149208 0.04863349376949944 2.987312526781939 2.99135468821998 2.959203598259797 2.969486061185557 0.002298021829581715 -GFLOW: 0.75 0.03445925819771115 0.04080826571016768 2.989736039070005 2.992719185462845 2.96640422696734 2.974054508100096 0.001896980948321158 -GFLOW: 0.8125 0.02993385057920675 0.03460733911954552 2.991571245581105 2.993783357922303 2.971976940594256 2.977663450030356 0.001539327267226655 -GFLOW: 0.875 0.02624542922290212 0.02962909435690859 2.992988785218849 2.994630564612182 2.976361811477597 2.980568207371556 0.001231904839241903 -GFLOW: 0.9375 0.02319676441530075 0.02558566238286014 2.994102103443268 2.995316878239127 2.979861523812927 2.982943575465618 0.0009746437282930889 -GFLOW: 1 0.02064629402617104 0.02226662775833122 2.994989016474138 2.995881122777838 2.982689783395693 2.984912502541169 0.0007637715104002226 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.7696809187708318 0.7632755031149672 2.511403545710404 2.348454047673703 1.987873613175696 1.82620484416736 0.008591905850607939 +GFLOW: 0.125 0.4781900708089505 0.528264814152612 2.793856681455826 2.649053719447735 2.481532348146578 2.287662038766956 -0.0140562228825145 +GFLOW: 0.1875 0.3043319464280909 0.3683492195376011 2.893926630889087 2.799422216298391 2.702679815042122 2.551480923533672 -0.008768832391438742 +GFLOW: 0.25 0.2060701595086417 0.2630279061446056 2.937033026869737 2.878654216533527 2.811615892524802 2.705529059866122 -0.002200108828340588 +GFLOW: 0.3125 0.1477004834758075 0.1930998606768563 2.958860574405864 2.92236836553491 2.871325149223738 2.798314048211277 0.001402128923183742 +GFLOW: 0.375 0.1108370328810066 0.1456989046821651 2.971217157704384 2.947675611441401 2.906947847085453 2.856241072537238 0.002982731284848431 +GFLOW: 0.4375 0.08624553511525967 0.1127009190438239 2.978797498800507 2.963073958025953 2.929668012295812 2.893836132098094 0.003483807973074683 +GFLOW: 0.5 0.0690699509636402 0.08907788203973291 2.983744522196213 2.972907636058558 2.944961134490057 2.919194697679925 0.003436398801176777 +GFLOW: 0.5625 0.05660930565635393 0.07171618379264265 2.987137509682798 2.97947392753768 2.95572053789434 2.936922888208277 0.003130319228698291 +GFLOW: 0.625 0.04727865022963097 0.05865626574752075 2.989561936762165 2.984034985102145 2.963573911988476 2.949716102515725 0.002723121006786492 +GFLOW: 0.6875 0.04010322383149208 0.04863349376949944 2.99135468821998 2.987312526781939 2.969486061185557 2.959203598259797 0.002298021829581715 +GFLOW: 0.75 0.03445925819771115 0.04080826571016768 2.992719185462845 2.989736039070005 2.974054508100096 2.96640422696734 0.001896980948321158 +GFLOW: 0.8125 0.02993385057920675 0.03460733911954552 2.993783357922303 2.991571245581105 2.977663450030356 2.971976940594256 0.001539327267226655 +GFLOW: 0.875 0.02624542922290212 0.02962909435690859 2.994630564612182 2.992988785218849 2.980568207371556 2.976361811477597 0.001231904839241903 +GFLOW: 0.9375 0.02319676441530075 0.02558566238286014 2.995316878239127 2.994102103443268 2.982943575465618 2.979861523812927 0.0009746437282930889 +GFLOW: 1 0.02064629402617104 0.02226662775833122 2.995881122777838 2.994989016474138 2.984912502541169 2.982689783395693 0.0007637715104002226 Number of steps = 16 -Time to complete flow = 2.242980e-01 seconds +Time to complete flow = 2.296958e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.256460e-01 seconds -exit: Fri Oct 28 18:00:18 2022 +Time = 2.310479e-01 seconds +exit: Mon Oct 31 16:03:42 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk3.symanzik.1.sample-out index f2694b607..55df116b7 100644 --- a/wilson_flow/test/wilson_flow_rkmk3.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:23:00 2022 +start: Mon Oct 31 16:41:01 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.069473e-04 +Time to reload gauge configuration = 1.988411e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 7.009506e-05 +Time to check unitarity = 6.890297e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.854382 0.829414 2.37915 2.36573 1.80473 1.77801 0.0474035 -GFLOW: 0.125 0.606902 0.583251 2.68668 2.68188 2.29169 2.27503 0.0235038 -GFLOW: 0.1875 0.424056 0.398488 2.82952 2.82568 2.56922 2.55296 0.015366 -GFLOW: 0.25 0.30533 0.277788 2.89932 2.89492 2.72399 2.70617 0.012416 -GFLOW: 0.3125 0.228836 0.200744 2.93576 2.93091 2.81281 2.79407 0.0101287 -GFLOW: 0.375 0.177964 0.150491 2.95619 2.9512 2.86633 2.84752 0.0078898 -GFLOW: 0.4375 0.142734 0.116535 2.96846 2.96354 2.90031 2.88204 0.00591715 -GFLOW: 0.5 0.11739 0.0927431 2.97629 2.97157 2.92297 2.90557 0.00433296 -GFLOW: 0.5625 0.0985561 0.0755224 2.98156 2.97709 2.93874 2.92235 0.00312535 -GFLOW: 0.625 0.0841795 0.062706 2.98525 2.98107 2.95012 2.93477 0.00222784 -GFLOW: 0.6875 0.0729598 0.0529414 2.98794 2.98403 2.95858 2.94423 0.00156717 -GFLOW: 0.75 0.0640402 0.0453535 2.98995 2.9863 2.96502 2.95161 0.00108112 -GFLOW: 0.8125 0.0568357 0.0393566 2.99149 2.98807 2.97002 2.95748 0.000722058 -GFLOW: 0.875 0.0509351 0.0345469 2.99269 2.9895 2.97398 2.96222 0.000455175 -GFLOW: 0.9375 0.0460418 0.0306387 2.99364 2.99065 2.97716 2.96611 0.000255616 -GFLOW: 1 0.0419374 0.0274254 2.99441 2.9916 2.97974 2.96934 0.000105656 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.854382 0.829414 2.36573 2.37915 1.77801 1.80473 0.0474035 +GFLOW: 0.125 0.606902 0.583251 2.68188 2.68668 2.27503 2.29169 0.0235038 +GFLOW: 0.1875 0.424056 0.398488 2.82568 2.82952 2.55296 2.56922 0.015366 +GFLOW: 0.25 0.30533 0.277788 2.89492 2.89932 2.70617 2.72399 0.012416 +GFLOW: 0.3125 0.228836 0.200744 2.93091 2.93576 2.79407 2.81281 0.0101287 +GFLOW: 0.375 0.177964 0.150491 2.9512 2.95619 2.84752 2.86633 0.0078898 +GFLOW: 0.4375 0.142734 0.116535 2.96354 2.96846 2.88204 2.90031 0.00591715 +GFLOW: 0.5 0.11739 0.0927431 2.97157 2.97629 2.90557 2.92297 0.00433296 +GFLOW: 0.5625 0.0985561 0.0755224 2.97709 2.98156 2.92235 2.93874 0.00312535 +GFLOW: 0.625 0.0841795 0.062706 2.98107 2.98525 2.93477 2.95012 0.00222784 +GFLOW: 0.6875 0.0729598 0.0529414 2.98403 2.98794 2.94423 2.95858 0.00156717 +GFLOW: 0.75 0.0640402 0.0453535 2.9863 2.98995 2.95161 2.96502 0.00108112 +GFLOW: 0.8125 0.0568357 0.0393566 2.98807 2.99149 2.95748 2.97002 0.000722058 +GFLOW: 0.875 0.0509351 0.0345469 2.9895 2.99269 2.96222 2.97398 0.000455175 +GFLOW: 0.9375 0.0460418 0.0306387 2.99065 2.99364 2.96611 2.97716 0.000255616 +GFLOW: 1 0.0419374 0.0274254 2.9916 2.99441 2.96934 2.97974 0.000105656 Number of steps = 16 -Time to complete flow = 4.018769e-01 seconds +Time to complete flow = 3.993938e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.029210e-01 seconds -exit: Fri Oct 28 18:23:01 2022 +Time = 4.004321e-01 seconds +exit: Mon Oct 31 16:41:01 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk3.symanzik.2.sample-out index 1b9dbb5c3..8b3a16bcd 100644 --- a/wilson_flow/test/wilson_flow_rkmk3.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:23:01 2022 +start: Mon Oct 31 16:41:01 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.069473e-04 +Time to reload gauge configuration = 2.131462e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.799034e-04 +Time to check unitarity = 2.758503e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.8543821081090931 0.8294143032164626 2.379153297732387 2.365728299275925 1.804732423553656 1.778009568228787 0.04740354964843416 -GFLOW: 0.125 0.6069021270531422 0.5832509438725398 2.68667846045753 2.681883439823787 2.29169367291054 2.275029543662808 0.02350377449352103 -GFLOW: 0.1875 0.4240561870528933 0.3984877010085393 2.829516683904455 2.825680625211321 2.569224880471959 2.552963371343134 0.01536600546036624 -GFLOW: 0.25 0.3053300409765354 0.2777882853598944 2.899318317200924 2.894918401145713 2.723987106438473 2.70617285182506 0.01241598308410958 -GFLOW: 0.3125 0.2288364133911121 0.2007441211855019 2.935759763684834 2.930914731718105 2.812814473619533 2.794070213139761 0.0101287288063565 -GFLOW: 0.375 0.1779635851189506 0.1504913400848876 2.956192413245818 2.951200925543326 2.866328065525167 2.847519210518135 0.007889794643817762 -GFLOW: 0.4375 0.1427337369157743 0.1165345698044707 2.968461237265746 2.963541602310504 2.900305615014509 2.882035403659442 0.00591714519415807 -GFLOW: 0.5 0.1173900188930314 0.09274309864402419 2.976292105619011 2.971570216533765 2.92296556289766 2.90556540512973 0.004332970371690775 -GFLOW: 0.5625 0.09855614479321251 0.07552238550237149 2.981557149033444 2.977093000385898 2.938738330224719 2.922349435695785 0.003125349468776849 -GFLOW: 0.625 0.08417948330747864 0.06270598566805652 2.985252709665247 2.981065758559339 2.950118486115896 2.934767509308208 0.002227837915614471 -GFLOW: 0.6875 0.07295977973185895 0.05294142054341856 2.987939249972261 2.9840263429795 2.958576318089813 2.944228019867299 0.001567166983834913 -GFLOW: 0.75 0.06404015066388757 0.0453535002689337 2.989948756303563 2.986295389533847 2.965017677733942 2.951607469109421 0.001081120308202443 -GFLOW: 0.8125 0.05683570924683092 0.03935657963057476 2.991487336970563 2.988074219580792 2.970024004248257 2.95747657764516 0.0007220550647749376 -GFLOW: 0.875 0.05093511043212982 0.03454688198382789 2.99268840997204 2.989495053854194 2.973982421974547 2.962221711312756 0.0004551814204124736 -GFLOW: 0.9375 0.04604176321113369 0.03063871954166489 2.993641540327165 2.990648086494692 2.977159028698294 2.966113095305094 0.000255614820690152 -GFLOW: 1 0.04193736236334834 0.02742544045818422 2.994408756080345 2.991596805875664 2.979741784424635 2.969344873732489 0.0001056561418256736 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.8543821081090931 0.8294143032164626 2.365728299275925 2.379153297732387 1.778009568228787 1.804732423553656 0.04740354964843416 +GFLOW: 0.125 0.6069021270531422 0.5832509438725398 2.681883439823787 2.68667846045753 2.275029543662808 2.29169367291054 0.02350377449352103 +GFLOW: 0.1875 0.4240561870528933 0.3984877010085393 2.825680625211321 2.829516683904455 2.552963371343134 2.569224880471959 0.01536600546036624 +GFLOW: 0.25 0.3053300409765354 0.2777882853598944 2.894918401145713 2.899318317200924 2.70617285182506 2.723987106438473 0.01241598308410958 +GFLOW: 0.3125 0.2288364133911121 0.2007441211855019 2.930914731718105 2.935759763684834 2.794070213139761 2.812814473619533 0.0101287288063565 +GFLOW: 0.375 0.1779635851189506 0.1504913400848876 2.951200925543326 2.956192413245818 2.847519210518135 2.866328065525167 0.007889794643817762 +GFLOW: 0.4375 0.1427337369157743 0.1165345698044707 2.963541602310504 2.968461237265746 2.882035403659442 2.900305615014509 0.00591714519415807 +GFLOW: 0.5 0.1173900188930314 0.09274309864402419 2.971570216533765 2.976292105619011 2.90556540512973 2.92296556289766 0.004332970371690775 +GFLOW: 0.5625 0.09855614479321251 0.07552238550237149 2.977093000385898 2.981557149033444 2.922349435695785 2.938738330224719 0.003125349468776849 +GFLOW: 0.625 0.08417948330747864 0.06270598566805652 2.981065758559339 2.985252709665247 2.934767509308208 2.950118486115896 0.002227837915614471 +GFLOW: 0.6875 0.07295977973185895 0.05294142054341856 2.9840263429795 2.987939249972261 2.944228019867299 2.958576318089813 0.001567166983834913 +GFLOW: 0.75 0.06404015066388757 0.0453535002689337 2.986295389533847 2.989948756303563 2.951607469109421 2.965017677733942 0.001081120308202443 +GFLOW: 0.8125 0.05683570924683092 0.03935657963057476 2.988074219580792 2.991487336970563 2.95747657764516 2.970024004248257 0.0007220550647749376 +GFLOW: 0.875 0.05093511043212982 0.03454688198382789 2.989495053854194 2.99268840997204 2.962221711312756 2.973982421974547 0.0004551814204124736 +GFLOW: 0.9375 0.04604176321113369 0.03063871954166489 2.990648086494692 2.993641540327165 2.966113095305094 2.977159028698294 0.000255614820690152 +GFLOW: 1 0.04193736236334834 0.02742544045818422 2.991596805875664 2.994408756080345 2.969344873732489 2.979741784424635 0.0001056561418256736 Number of steps = 16 -Time to complete flow = 4.535751e-01 seconds +Time to complete flow = 4.555349e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.551489e-01 seconds -exit: Fri Oct 28 18:23:01 2022 +Time = 4.571290e-01 seconds +exit: Mon Oct 31 16:41:02 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk3.wilson.1.sample-out index 2e73ce5c2..8a862b1c3 100644 --- a/wilson_flow/test/wilson_flow_rkmk3.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:23:00 2022 +start: Mon Oct 31 16:41:01 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.028942e-04 +Time to reload gauge configuration = 2.009869e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.794930e-05 +Time to check unitarity = 6.985664e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.905813 0.879699 2.21718 2.19787 1.61709 1.58402 0.0557593 -GFLOW: 0.125 0.711525 0.687057 2.53127 2.52222 2.06023 2.03856 0.0304548 -GFLOW: 0.1875 0.536135 0.51164 2.71746 2.71243 2.37293 2.35556 0.0179037 -GFLOW: 0.25 0.40138 0.375333 2.82538 2.82104 2.57863 2.56127 0.0125802 -GFLOW: 0.3125 0.304634 0.27712 2.88812 2.88349 2.71042 2.69202 0.010202 -GFLOW: 0.375 0.236356 0.208275 2.92528 2.92032 2.79493 2.7758 0.00859178 -GFLOW: 0.4375 0.187769 0.160013 2.94798 2.94286 2.85006 2.83081 0.007101 -GFLOW: 0.5 0.152518 0.1257 2.96233 2.95724 2.88695 2.86809 0.00569543 -GFLOW: 0.5625 0.126353 0.100817 2.97176 2.96682 2.91237 2.89423 0.00445194 -GFLOW: 0.625 0.106492 0.0823885 2.97818 2.97346 2.9304 2.91315 0.00341285 -GFLOW: 0.6875 0.0911065 0.0684623 2.98269 2.97823 2.94353 2.92725 0.00257721 -GFLOW: 0.75 0.0789707 0.0577432 2.98597 2.98178 2.95333 2.93803 0.00192053 -GFLOW: 0.8125 0.0692458 0.0493556 2.98841 2.98448 2.9608 2.94645 0.00141083 -GFLOW: 0.875 0.061344 0.0426954 2.99027 2.98659 2.96661 2.95314 0.00101734 -GFLOW: 0.9375 0.0548433 0.0373373 2.99172 2.98826 2.9712 2.95856 0.000713902 -GFLOW: 1 0.0494355 0.0329753 2.99285 2.98962 2.97487 2.96299 0.000479679 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.905813 0.879699 2.19787 2.21718 1.58402 1.61709 0.0557593 +GFLOW: 0.125 0.711525 0.687057 2.52222 2.53127 2.03856 2.06023 0.0304548 +GFLOW: 0.1875 0.536135 0.51164 2.71243 2.71746 2.35556 2.37293 0.0179037 +GFLOW: 0.25 0.40138 0.375333 2.82104 2.82538 2.56127 2.57863 0.0125802 +GFLOW: 0.3125 0.304634 0.27712 2.88349 2.88812 2.69202 2.71042 0.010202 +GFLOW: 0.375 0.236356 0.208275 2.92032 2.92528 2.7758 2.79493 0.00859178 +GFLOW: 0.4375 0.187769 0.160013 2.94286 2.94798 2.83081 2.85006 0.007101 +GFLOW: 0.5 0.152518 0.1257 2.95724 2.96233 2.86809 2.88695 0.00569543 +GFLOW: 0.5625 0.126353 0.100817 2.96682 2.97176 2.89423 2.91237 0.00445194 +GFLOW: 0.625 0.106492 0.0823885 2.97346 2.97818 2.91315 2.9304 0.00341285 +GFLOW: 0.6875 0.0911065 0.0684623 2.97823 2.98269 2.92725 2.94353 0.00257721 +GFLOW: 0.75 0.0789707 0.0577432 2.98178 2.98597 2.93803 2.95333 0.00192053 +GFLOW: 0.8125 0.0692458 0.0493556 2.98448 2.98841 2.94645 2.9608 0.00141083 +GFLOW: 0.875 0.061344 0.0426954 2.98659 2.99027 2.95314 2.96661 0.00101734 +GFLOW: 0.9375 0.0548433 0.0373373 2.98826 2.99172 2.95856 2.9712 0.000713902 +GFLOW: 1 0.0494355 0.0329753 2.98962 2.99285 2.96299 2.97487 0.000479679 Number of steps = 16 -Time to complete flow = 1.440270e-01 seconds +Time to complete flow = 1.470139e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.450660e-01 seconds -exit: Fri Oct 28 18:23:00 2022 +Time = 1.480579e-01 seconds +exit: Mon Oct 31 16:41:01 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk3.wilson.2.sample-out index 84194c619..0ee5a399b 100644 --- a/wilson_flow/test/wilson_flow_rkmk3.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:23:00 2022 +start: Mon Oct 31 16:41:01 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.238750e-04 +Time to reload gauge configuration = 2.059937e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.751350e-04 +Time to check unitarity = 2.789497e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.9058132281572296 0.8796992037234977 2.217180550948812 2.197869838719706 1.617090518681119 1.58401604382473 0.05575934074905174 -GFLOW: 0.125 0.7115254582659731 0.6870568620546073 2.53126550111504 2.522223206164383 2.060232778053487 2.038560883170349 0.03045484297889786 -GFLOW: 0.1875 0.5361354296762419 0.5116402948244049 2.717456738118047 2.712431105838455 2.372928379767277 2.355555671968239 0.01790375555676558 -GFLOW: 0.25 0.4013804780293652 0.3753332903537789 2.825383973499969 2.821043357388587 2.578629264945539 2.561274133591013 0.01258025583895368 -GFLOW: 0.3125 0.3046338011192212 0.2771201551386229 2.888116503406693 2.883486959063131 2.710424100716324 2.692019676878166 0.01020205962250699 -GFLOW: 0.375 0.2363563980706052 0.2082751037248078 2.925284990113183 2.920322091099171 2.79493425510656 2.775803041839468 0.008591774263260075 -GFLOW: 0.4375 0.1877692921433338 0.1600127252991931 2.947975571957718 2.94286028540024 2.850060315069193 2.830810026368914 0.007101005891220967 -GFLOW: 0.5 0.1525177213513235 0.1256999821409268 2.962330148509587 2.957240058332201 2.886954697573132 2.868091038497541 0.005695434680888359 -GFLOW: 0.5625 0.1263525243545787 0.1008170350850017 2.971756685868732 2.966815593631594 2.912372331007211 2.894225500064104 0.00445195778278721 -GFLOW: 0.625 0.1064921055548746 0.08238848522259744 2.978175482798126 2.973455758210036 2.930396564384409 2.913146608982873 0.00341285328240314 -GFLOW: 0.6875 0.09110649459071367 0.06846232304307578 2.98269484562627 2.978231178071377 2.943527675458268 2.927248609725565 0.002577219710034277 -GFLOW: 0.75 0.07897066582170344 0.05774316808305817 2.985973174021435 2.981775721690503 2.953329103711237 2.938027441795388 0.001920537589722053 -GFLOW: 0.8125 0.06924583936900075 0.04935555842507876 2.988413979626952 2.98447822153957 2.960803285907898 2.946446111199216 0.001410830894029316 -GFLOW: 0.875 0.06134395572850838 0.04269544502149491 2.990272515017896 2.986585897546107 2.966610208847293 2.953143874280938 0.001017333326714141 -GFLOW: 0.9375 0.05484335057073104 0.03733727484505324 2.991715307722234 2.988261447229226 2.971195933971117 2.958557792416499 0.0007139043046858566 -GFLOW: 1 0.04943546225522002 0.03297527593893552 2.99285421627351 2.989615421564702 2.974869524266856 2.96299490780264 0.0004796786451075099 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.9058132281572296 0.8796992037234977 2.197869838719706 2.217180550948812 1.58401604382473 1.617090518681119 0.05575934074905174 +GFLOW: 0.125 0.7115254582659731 0.6870568620546073 2.522223206164383 2.53126550111504 2.038560883170349 2.060232778053487 0.03045484297889786 +GFLOW: 0.1875 0.5361354296762419 0.5116402948244049 2.712431105838455 2.717456738118047 2.355555671968239 2.372928379767277 0.01790375555676558 +GFLOW: 0.25 0.4013804780293652 0.3753332903537789 2.821043357388587 2.825383973499969 2.561274133591013 2.578629264945539 0.01258025583895368 +GFLOW: 0.3125 0.3046338011192212 0.2771201551386229 2.883486959063131 2.888116503406693 2.692019676878166 2.710424100716324 0.01020205962250699 +GFLOW: 0.375 0.2363563980706052 0.2082751037248078 2.920322091099171 2.925284990113183 2.775803041839468 2.79493425510656 0.008591774263260075 +GFLOW: 0.4375 0.1877692921433338 0.1600127252991931 2.94286028540024 2.947975571957718 2.830810026368914 2.850060315069193 0.007101005891220967 +GFLOW: 0.5 0.1525177213513235 0.1256999821409268 2.957240058332201 2.962330148509587 2.868091038497541 2.886954697573132 0.005695434680888359 +GFLOW: 0.5625 0.1263525243545787 0.1008170350850017 2.966815593631594 2.971756685868732 2.894225500064104 2.912372331007211 0.00445195778278721 +GFLOW: 0.625 0.1064921055548746 0.08238848522259744 2.973455758210036 2.978175482798126 2.913146608982873 2.930396564384409 0.00341285328240314 +GFLOW: 0.6875 0.09110649459071367 0.06846232304307578 2.978231178071377 2.98269484562627 2.927248609725565 2.943527675458268 0.002577219710034277 +GFLOW: 0.75 0.07897066582170344 0.05774316808305817 2.981775721690503 2.985973174021435 2.938027441795388 2.953329103711237 0.001920537589722053 +GFLOW: 0.8125 0.06924583936900075 0.04935555842507876 2.98447822153957 2.988413979626952 2.946446111199216 2.960803285907898 0.001410830894029316 +GFLOW: 0.875 0.06134395572850838 0.04269544502149491 2.986585897546107 2.990272515017896 2.953143874280938 2.966610208847293 0.001017333326714141 +GFLOW: 0.9375 0.05484335057073104 0.03733727484505324 2.988261447229226 2.991715307722234 2.958557792416499 2.971195933971117 0.0007139043046858566 +GFLOW: 1 0.04943546225522002 0.03297527593893552 2.989615421564702 2.99285421627351 2.96299490780264 2.974869524266856 0.0004796786451075099 Number of steps = 16 -Time to complete flow = 1.626430e-01 seconds +Time to complete flow = 1.651230e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.642449e-01 seconds -exit: Fri Oct 28 18:23:00 2022 +Time = 1.666849e-01 seconds +exit: Mon Oct 31 16:41:01 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.errtol index d97f3e6b8..724734b3d 100644 --- a/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.errtol @@ -1,7 +1,7 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.sample-out index b176e0736..42d7de4a5 100644 --- a/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:23:02 2022 +start: Mon Oct 31 16:41:02 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.028942e-04 +Time to reload gauge configuration = 2.031326e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.914139e-05 +Time to check unitarity = 6.985664e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.683596 0.689287 2.49362 2.66867 2.01982 2.21584 -0.000286496 -GFLOW: 0.125 0.380589 0.438537 2.76198 2.86539 2.46646 2.63025 -0.00738036 -GFLOW: 0.1875 0.235543 0.291327 2.87118 2.92655 2.68301 2.78851 0.00299302 -GFLOW: 0.25 0.159769 0.202814 2.91938 2.95113 2.79618 2.86353 0.00561591 -GFLOW: 0.3125 0.115768 0.147563 2.93881 2.95941 2.85931 2.90407 0.00591576 -GFLOW: 0.375 0.0879875 0.111402 2.9378 2.95451 2.89631 2.92774 0.00552133 -GFLOW: 0.4375 0.0692117 0.0866591 2.9115 2.93101 2.91791 2.94176 0.00528771 -GFLOW: 0.5 0.0558469 0.0692581 2.84812 2.87832 2.92891 2.94913 0.00537534 -GFLOW: 0.5625 0.0462001 0.0573727 2.75125 2.79569 2.93233 2.9515 0.00570866 -GFLOW: 0.625 0.0396954 0.0503209 2.667 2.71346 2.93238 2.95116 0.00593055 -GFLOW: 0.6875 0.0358127 0.0470029 2.63215 2.66268 2.93255 2.95028 0.00592383 -GFLOW: 0.75 0.0336817 0.0458472 2.62522 2.63599 2.93276 2.94914 0.00582365 -GFLOW: 0.8125 0.0326966 0.0459802 2.62356 2.62062 2.93224 2.94755 0.00575778 -GFLOW: 0.875 0.0325555 0.0470688 2.62184 2.61284 2.93089 2.94566 0.00575045 -GFLOW: 0.9375 0.0330521 0.0488943 2.61941 2.61067 2.92881 2.94361 0.00576839 -GFLOW: 1 0.0340194 0.0512615 2.61611 2.61202 2.92611 2.94153 0.00576525 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.683596 0.689287 2.66867 2.49362 2.21584 2.01982 -0.000286496 +GFLOW: 0.125 0.380589 0.438537 2.86539 2.76198 2.63025 2.46646 -0.00738036 +GFLOW: 0.1875 0.235543 0.291327 2.92655 2.87118 2.78851 2.68301 0.00299302 +GFLOW: 0.25 0.159769 0.202814 2.95113 2.91938 2.86353 2.79618 0.00561591 +GFLOW: 0.3125 0.115768 0.147563 2.95941 2.93881 2.90407 2.85931 0.00591576 +GFLOW: 0.375 0.0879875 0.111402 2.95451 2.9378 2.92774 2.89631 0.00552133 +GFLOW: 0.4375 0.0692117 0.0866591 2.93101 2.9115 2.94176 2.91791 0.00528771 +GFLOW: 0.5 0.0558469 0.0692581 2.87832 2.84812 2.94913 2.92891 0.00537534 +GFLOW: 0.5625 0.0462001 0.0573727 2.79569 2.75125 2.9515 2.93233 0.00570866 +GFLOW: 0.625 0.0396954 0.0503209 2.71346 2.667 2.95116 2.93238 0.00593055 +GFLOW: 0.6875 0.0358127 0.0470029 2.66268 2.63215 2.95028 2.93255 0.00592383 +GFLOW: 0.75 0.0336817 0.0458472 2.63599 2.62522 2.94914 2.93276 0.00582365 +GFLOW: 0.8125 0.0326966 0.0459802 2.62062 2.62356 2.94755 2.93224 0.00575778 +GFLOW: 0.875 0.0325555 0.0470688 2.61284 2.62184 2.94566 2.93089 0.00575045 +GFLOW: 0.9375 0.0330521 0.0488943 2.61067 2.61941 2.94361 2.92881 0.00576839 +GFLOW: 1 0.0340194 0.0512615 2.61202 2.61611 2.94153 2.92611 0.00576525 Number of steps = 16 -Time to complete flow = 3.963470e-01 seconds +Time to complete flow = 4.003251e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 3.973830e-01 seconds -exit: Fri Oct 28 18:23:02 2022 +Time = 4.013669e-01 seconds +exit: Mon Oct 31 16:41:03 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.errtol index f687f7888..482fd2d72 100644 --- a/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.errtol +++ b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.errtol @@ -1,7 +1,7 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.sample-out index 02578da22..51582556b 100644 --- a/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3_a.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:23:02 2022 +start: Mon Oct 31 16:41:03 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.100468e-04 +Time to reload gauge configuration = 2.229214e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.779961e-04 +Time to check unitarity = 2.799034e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.6835964225873505 0.689286618530199 2.493615815143509 2.66866524114337 2.019823710776547 2.215838902238242 -0.0002864649851840247 -GFLOW: 0.125 0.380589072622208 0.4385369722827665 2.761982485851977 2.865385103291513 2.466462513648429 2.630248041546825 -0.007380352803362101 -GFLOW: 0.1875 0.2355427103322129 0.2913267570727659 2.871181381213382 2.926549670806812 2.683007665190065 2.788514179707816 0.002993016393615404 -GFLOW: 0.25 0.1597692636987576 0.2028135739454147 2.919376952034276 2.951134347540585 2.796180910124587 2.863533458244091 0.005615914092512197 -GFLOW: 0.3125 0.115767517049043 0.1475627234733328 2.938812882748804 2.959412239867698 2.859314439446274 2.904065143509843 0.005915769020745505 -GFLOW: 0.375 0.08798754244838027 0.1114016990089054 2.937799476899776 2.954511451405994 2.896307557335168 2.927736281333363 0.005521330225341299 -GFLOW: 0.4375 0.06921167186772535 0.08665907285163887 2.91149981963683 2.931007198428132 2.917914238826738 2.941758083185088 0.005287713587076678 -GFLOW: 0.5 0.05584685858393352 0.06925811366230437 2.84811885835162 2.878318735726454 2.928911255999255 2.949129492994823 0.005375337170303815 -GFLOW: 0.5625 0.04620012570306987 0.0573727253841512 2.751248390319031 2.795685560879962 2.932332506138215 2.951504197510669 0.005708655378545305 -GFLOW: 0.625 0.0396953866539317 0.05032088401942179 2.666999676225281 2.713458819855358 2.932382169112086 2.951162549100555 0.005930543312850314 -GFLOW: 0.6875 0.03581268935199921 0.04700291639767441 2.632147111565882 2.662679171408572 2.932547347521231 2.950279813550159 0.005923835143241613 -GFLOW: 0.75 0.03368167524709735 0.04584724635650018 2.625215237324007 2.635994153884031 2.932764284734722 2.949142140006398 0.005823655636913814 -GFLOW: 0.8125 0.0326966103827727 0.04598024455576522 2.623564426009857 2.620621225393016 2.932242869454921 2.947553947499202 0.005757789852089357 -GFLOW: 0.875 0.03255545618685056 0.04706884643192256 2.621841859605768 2.612843115070791 2.9308929213027 2.945655617886934 0.005750451318963461 -GFLOW: 0.9375 0.03305214740293687 0.04889429434398371 2.61941302923453 2.610673653295389 2.928812261087174 2.94361245799095 0.00576838885615973 -GFLOW: 1 0.03401938011060365 0.05126153901588022 2.616106321836107 2.612018857763462 2.926107543646373 2.941533720464648 0.005765256445412413 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.6835964225873505 0.689286618530199 2.66866524114337 2.493615815143509 2.215838902238242 2.019823710776547 -0.0002864649851840247 +GFLOW: 0.125 0.380589072622208 0.4385369722827665 2.865385103291513 2.761982485851977 2.630248041546825 2.466462513648429 -0.007380352803362101 +GFLOW: 0.1875 0.2355427103322129 0.2913267570727659 2.926549670806812 2.871181381213382 2.788514179707816 2.683007665190065 0.002993016393615404 +GFLOW: 0.25 0.1597692636987576 0.2028135739454147 2.951134347540585 2.919376952034276 2.863533458244091 2.796180910124587 0.005615914092512197 +GFLOW: 0.3125 0.115767517049043 0.1475627234733328 2.959412239867698 2.938812882748804 2.904065143509843 2.859314439446274 0.005915769020745505 +GFLOW: 0.375 0.08798754244838027 0.1114016990089054 2.954511451405994 2.937799476899776 2.927736281333363 2.896307557335168 0.005521330225341299 +GFLOW: 0.4375 0.06921167186772535 0.08665907285163887 2.931007198428132 2.91149981963683 2.941758083185088 2.917914238826738 0.005287713587076678 +GFLOW: 0.5 0.05584685858393352 0.06925811366230437 2.878318735726454 2.84811885835162 2.949129492994823 2.928911255999255 0.005375337170303815 +GFLOW: 0.5625 0.04620012570306987 0.0573727253841512 2.795685560879962 2.751248390319031 2.951504197510669 2.932332506138215 0.005708655378545305 +GFLOW: 0.625 0.0396953866539317 0.05032088401942179 2.713458819855358 2.666999676225281 2.951162549100555 2.932382169112086 0.005930543312850314 +GFLOW: 0.6875 0.03581268935199921 0.04700291639767441 2.662679171408572 2.632147111565882 2.950279813550159 2.932547347521231 0.005923835143241613 +GFLOW: 0.75 0.03368167524709735 0.04584724635650018 2.635994153884031 2.625215237324007 2.949142140006398 2.932764284734722 0.005823655636913814 +GFLOW: 0.8125 0.0326966103827727 0.04598024455576522 2.620621225393016 2.623564426009857 2.947553947499202 2.932242869454921 0.005757789852089357 +GFLOW: 0.875 0.03255545618685056 0.04706884643192256 2.612843115070791 2.621841859605768 2.945655617886934 2.9308929213027 0.005750451318963461 +GFLOW: 0.9375 0.03305214740293687 0.04889429434398371 2.610673653295389 2.61941302923453 2.94361245799095 2.928812261087174 0.00576838885615973 +GFLOW: 1 0.03401938011060365 0.05126153901588022 2.612018857763462 2.616106321836107 2.941533720464648 2.926107543646373 0.005765256445412413 Number of steps = 16 -Time to complete flow = 4.470880e-01 seconds +Time to complete flow = 4.526851e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 4.486158e-01 seconds -exit: Fri Oct 28 18:23:02 2022 +Time = 4.542799e-01 seconds +exit: Mon Oct 31 16:41:03 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.errtol index 63a791fb2..fd9554641 100644 --- a/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.errtol +++ b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.errtol @@ -1,8 +1,8 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0005 0.0005 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.sample-out index 53d2f64e4..44c0f3274 100644 --- a/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:23:01 2022 +start: Mon Oct 31 16:41:02 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.009869e-04 +Time to reload gauge configuration = 1.990795e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.914139e-05 +Time to check unitarity = 7.009506e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.771013 0.762609 2.35235 2.51803 1.83004 1.99213 0.00916212 -GFLOW: 0.125 0.477829 0.527284 2.65082 2.79743 2.28999 2.48534 -0.0142292 -GFLOW: 0.1875 0.303811 0.367901 2.79996 2.89503 2.55227 2.70426 -0.0089234 -GFLOW: 0.25 0.205772 0.262853 2.87886 2.93738 2.70583 2.81221 -0.00221353 -GFLOW: 0.3125 0.14755 0.19302 2.92247 2.95898 2.79846 2.87157 0.00141546 -GFLOW: 0.375 0.110761 0.145654 2.94773 2.97127 2.85632 2.90706 0.00298696 -GFLOW: 0.4375 0.0862059 0.112673 2.9631 2.97882 2.89389 2.92972 0.00348014 -GFLOW: 0.5 0.0690485 0.0890598 2.97292 2.98376 2.91922 2.94499 0.00343015 -GFLOW: 0.5625 0.0565972 0.0717043 2.97948 2.98714 2.93694 2.95574 0.00312438 -GFLOW: 0.625 0.0472714 0.0586483 2.98404 2.98957 2.94973 2.96358 0.00271839 -GFLOW: 0.6875 0.0400986 0.048628 2.98732 2.99136 2.95921 2.96949 0.00229453 -GFLOW: 0.75 0.034456 0.0408043 2.98974 2.99272 2.96641 2.97406 0.00189449 -GFLOW: 0.8125 0.0299313 0.0346043 2.99157 2.99378 2.97198 2.97767 0.00153757 -GFLOW: 0.875 0.0262433 0.0296267 2.99299 2.99463 2.97636 2.98057 0.00123066 -GFLOW: 0.9375 0.0231948 0.0255837 2.9941 2.99532 2.97986 2.98295 0.000973762 -GFLOW: 1 0.0206445 0.022265 2.99499 2.99588 2.98269 2.98491 0.000763127 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.771013 0.762609 2.51803 2.35235 1.99213 1.83004 0.00916212 +GFLOW: 0.125 0.477829 0.527284 2.79743 2.65082 2.48534 2.28999 -0.0142292 +GFLOW: 0.1875 0.303811 0.367901 2.89503 2.79996 2.70426 2.55227 -0.0089234 +GFLOW: 0.25 0.205772 0.262853 2.93738 2.87886 2.81221 2.70583 -0.00221353 +GFLOW: 0.3125 0.14755 0.19302 2.95898 2.92247 2.87157 2.79846 0.00141546 +GFLOW: 0.375 0.110761 0.145654 2.97127 2.94773 2.90706 2.85632 0.00298696 +GFLOW: 0.4375 0.0862059 0.112673 2.97882 2.9631 2.92972 2.89389 0.00348014 +GFLOW: 0.5 0.0690485 0.0890598 2.98376 2.97292 2.94499 2.91922 0.00343015 +GFLOW: 0.5625 0.0565972 0.0717043 2.98714 2.97948 2.95574 2.93694 0.00312438 +GFLOW: 0.625 0.0472714 0.0586483 2.98957 2.98404 2.96358 2.94973 0.00271839 +GFLOW: 0.6875 0.0400986 0.048628 2.99136 2.98732 2.96949 2.95921 0.00229453 +GFLOW: 0.75 0.034456 0.0408043 2.99272 2.98974 2.97406 2.96641 0.00189449 +GFLOW: 0.8125 0.0299313 0.0346043 2.99378 2.99157 2.97767 2.97198 0.00153757 +GFLOW: 0.875 0.0262433 0.0296267 2.99463 2.99299 2.98057 2.97636 0.00123066 +GFLOW: 0.9375 0.0231948 0.0255837 2.99532 2.9941 2.98295 2.97986 0.000973762 +GFLOW: 1 0.0206445 0.022265 2.99588 2.99499 2.98491 2.98269 0.000763127 Number of steps = 16 -Time to complete flow = 1.470511e-01 seconds +Time to complete flow = 1.468449e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.480770e-01 seconds -exit: Fri Oct 28 18:23:01 2022 +Time = 1.478829e-01 seconds +exit: Mon Oct 31 16:41:02 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.errtol index 8e6cbfe2d..861cd8cc6 100644 --- a/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.errtol +++ b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.errtol @@ -1,8 +1,8 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 5e-08 5e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.sample-out index 5437fa8b6..226d441ce 100644 --- a/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk3_a.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:23:01 2022 +start: Mon Oct 31 16:41:02 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.088547e-04 +Time to reload gauge configuration = 2.050400e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.789497e-04 +Time to check unitarity = 2.760887e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.7710131731574482 0.7626088229355815 2.352352162560256 2.518030482716568 1.830041058060231 1.992134797207159 0.009162119049090731 -GFLOW: 0.125 0.4778292713381375 0.5272835057087748 2.650815346421709 2.797425779426087 2.289993985490047 2.485342692840141 -0.01422921115068727 -GFLOW: 0.1875 0.303811123505411 0.3679007984249834 2.799956034574233 2.89503215312974 2.552273508145709 2.70425611095005 -0.008923417157006445 -GFLOW: 0.25 0.2057722039333715 0.2628534915973386 2.878860652572409 2.937377074121526 2.705830893941072 2.812214861661173 -0.002213537138543137 -GFLOW: 0.3125 0.1475501174689784 0.1930197904627323 2.922470106903227 2.958983452327181 2.798461744413336 2.87157075895373 0.001415449911931952 -GFLOW: 0.375 0.1107609237705229 0.1456539599696259 2.947730650675489 2.971267620807366 2.856324452342779 2.90705840177608 0.002986968408263854 -GFLOW: 0.4375 0.08620587583255035 0.1126729410588295 2.963104458386104 2.978820542867613 2.893885474063883 2.929721650326103 0.003480138063144191 -GFLOW: 0.5 0.06904853316387094 0.08905983214925033 2.972924688388387 2.983755883168672 2.919224281749196 2.944988711831256 0.003430158774593098 -GFLOW: 0.5625 0.05659722796303657 0.07170433025642811 2.97948356963812 2.987143452154546 2.936940805450989 2.955735442316506 0.003124376881138622 -GFLOW: 0.625 0.04727144353006999 0.05864830342069191 2.984040540816759 2.989565211766096 2.949727152166032 2.96358238667448 0.0027183878717233 -GFLOW: 0.6875 0.04009858947607062 0.04862796282292008 2.987315820679197 2.991356593396539 2.959210619062153 2.969491175241012 0.002294531473165537 -GFLOW: 0.75 0.03445599157808468 0.04080425559839087 2.9897380714176 2.992720365838084 2.966408879520211 2.974057829421809 0.001894491787194411 -GFLOW: 0.8125 0.02993131316585013 0.03460429342358487 2.991572565510229 2.993784146492072 2.971980187046911 2.977665801429402 0.001537570332436355 -GFLOW: 0.875 0.02624328171675649 0.02962667880256372 2.992989694901286 2.994631137760239 2.976364205255557 2.980570027831539 0.001230661412795127 -GFLOW: 0.9375 0.02319482790702301 0.02558367825370402 2.994102769573283 2.995317330850922 2.979863381684063 2.98294510086421 0.0009737558903427751 -GFLOW: 1 0.0206444759490759 0.02226495693069587 2.99498953135431 2.99588150627508 2.982691286524783 2.984913859497751 0.0007631313790103263 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.7710131731574482 0.7626088229355815 2.518030482716568 2.352352162560256 1.992134797207159 1.830041058060231 0.009162119049090731 +GFLOW: 0.125 0.4778292713381375 0.5272835057087748 2.797425779426087 2.650815346421709 2.485342692840141 2.289993985490047 -0.01422921115068727 +GFLOW: 0.1875 0.303811123505411 0.3679007984249834 2.89503215312974 2.799956034574233 2.70425611095005 2.552273508145709 -0.008923417157006445 +GFLOW: 0.25 0.2057722039333715 0.2628534915973386 2.937377074121526 2.878860652572409 2.812214861661173 2.705830893941072 -0.002213537138543137 +GFLOW: 0.3125 0.1475501174689784 0.1930197904627323 2.958983452327181 2.922470106903227 2.87157075895373 2.798461744413336 0.001415449911931952 +GFLOW: 0.375 0.1107609237705229 0.1456539599696259 2.971267620807366 2.947730650675489 2.90705840177608 2.856324452342779 0.002986968408263854 +GFLOW: 0.4375 0.08620587583255035 0.1126729410588295 2.978820542867613 2.963104458386104 2.929721650326103 2.893885474063883 0.003480138063144191 +GFLOW: 0.5 0.06904853316387094 0.08905983214925033 2.983755883168672 2.972924688388387 2.944988711831256 2.919224281749196 0.003430158774593098 +GFLOW: 0.5625 0.05659722796303657 0.07170433025642811 2.987143452154546 2.97948356963812 2.955735442316506 2.936940805450989 0.003124376881138622 +GFLOW: 0.625 0.04727144353006999 0.05864830342069191 2.989565211766096 2.984040540816759 2.96358238667448 2.949727152166032 0.0027183878717233 +GFLOW: 0.6875 0.04009858947607062 0.04862796282292008 2.991356593396539 2.987315820679197 2.969491175241012 2.959210619062153 0.002294531473165537 +GFLOW: 0.75 0.03445599157808468 0.04080425559839087 2.992720365838084 2.9897380714176 2.974057829421809 2.966408879520211 0.001894491787194411 +GFLOW: 0.8125 0.02993131316585013 0.03460429342358487 2.993784146492072 2.991572565510229 2.977665801429402 2.971980187046911 0.001537570332436355 +GFLOW: 0.875 0.02624328171675649 0.02962667880256372 2.994631137760239 2.992989694901286 2.980570027831539 2.976364205255557 0.001230661412795127 +GFLOW: 0.9375 0.02319482790702301 0.02558367825370402 2.995317330850922 2.994102769573283 2.98294510086421 2.979863381684063 0.0009737558903427751 +GFLOW: 1 0.0206444759490759 0.02226495693069587 2.99588150627508 2.99498953135431 2.984913859497751 2.982691286524783 0.0007631313790103263 Number of steps = 16 -Time to complete flow = 1.657190e-01 seconds +Time to complete flow = 1.656771e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.672649e-01 seconds -exit: Fri Oct 28 18:23:02 2022 +Time = 1.672459e-01 seconds +exit: Mon Oct 31 16:41:02 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk4.symanzik.1.sample-out index d5cda1c04..00f1c25c6 100644 --- a/wilson_flow/test/wilson_flow_rkmk4.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:31:58 2022 +start: Mon Oct 31 16:48:20 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.909733e-04 +Time to reload gauge configuration = 1.919270e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.853742 0.828662 2.37481 2.36149 1.80236 1.77547 0.0466932 -GFLOW: 0.125 0.607095 0.583396 2.68404 2.67917 2.28935 2.27247 0.0229433 -GFLOW: 0.1875 0.424434 0.398836 2.82838 2.82449 2.56787 2.55149 0.0151397 -GFLOW: 0.25 0.305614 0.278058 2.89883 2.89442 2.72329 2.70543 0.0123549 -GFLOW: 0.3125 0.229011 0.200913 2.93554 2.9307 2.81246 2.7937 0.0101139 -GFLOW: 0.375 0.178065 0.150592 2.95609 2.9511 2.86615 2.84733 0.00788733 -GFLOW: 0.4375 0.142792 0.116594 2.96841 2.96349 2.90021 2.88194 0.00591885 -GFLOW: 0.5 0.117424 0.0927794 2.97627 2.97155 2.92291 2.90551 0.00433604 -GFLOW: 0.5625 0.0985768 0.0755453 2.98154 2.97708 2.93871 2.92232 0.00312859 -GFLOW: 0.625 0.0841925 0.0627211 2.98525 2.98106 2.9501 2.93475 0.00223075 -GFLOW: 0.6875 0.0729684 0.0529519 2.98793 2.98402 2.95856 2.94422 0.00156962 -GFLOW: 0.75 0.0640462 0.0453611 2.98995 2.98629 2.96501 2.9516 0.00108313 -GFLOW: 0.8125 0.0568401 0.0393623 2.99149 2.98807 2.97002 2.95747 0.000723675 -GFLOW: 0.875 0.0509385 0.0345514 2.99269 2.98949 2.97398 2.96222 0.000456476 -GFLOW: 0.9375 0.0460445 0.0306424 2.99364 2.99065 2.97716 2.96611 0.000256642 -GFLOW: 1 0.0419396 0.0274286 2.99441 2.9916 2.97974 2.96934 0.000106471 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.853742 0.828662 2.36149 2.37481 1.77547 1.80236 0.0466932 +GFLOW: 0.125 0.607095 0.583396 2.67917 2.68404 2.27247 2.28935 0.0229433 +GFLOW: 0.1875 0.424434 0.398836 2.82449 2.82838 2.55149 2.56787 0.0151397 +GFLOW: 0.25 0.305614 0.278058 2.89442 2.89883 2.70543 2.72329 0.0123549 +GFLOW: 0.3125 0.229011 0.200913 2.9307 2.93554 2.7937 2.81246 0.0101139 +GFLOW: 0.375 0.178065 0.150592 2.9511 2.95609 2.84733 2.86615 0.00788733 +GFLOW: 0.4375 0.142792 0.116594 2.96349 2.96841 2.88194 2.90021 0.00591885 +GFLOW: 0.5 0.117424 0.0927794 2.97155 2.97627 2.90551 2.92291 0.00433604 +GFLOW: 0.5625 0.0985768 0.0755453 2.97708 2.98154 2.92232 2.93871 0.00312859 +GFLOW: 0.625 0.0841925 0.0627211 2.98106 2.98525 2.93475 2.9501 0.00223075 +GFLOW: 0.6875 0.0729684 0.0529519 2.98402 2.98793 2.94422 2.95856 0.00156962 +GFLOW: 0.75 0.0640462 0.0453611 2.98629 2.98995 2.9516 2.96501 0.00108313 +GFLOW: 0.8125 0.0568401 0.0393623 2.98807 2.99149 2.95747 2.97002 0.000723675 +GFLOW: 0.875 0.0509385 0.0345514 2.98949 2.99269 2.96222 2.97398 0.000456476 +GFLOW: 0.9375 0.0460445 0.0306424 2.99065 2.99364 2.96611 2.97716 0.000256642 +GFLOW: 1 0.0419396 0.0274286 2.9916 2.99441 2.96934 2.97974 0.000106471 Number of steps = 16 -Time to complete flow = 5.258031e-01 seconds +Time to complete flow = 5.258360e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.268540e-01 seconds -exit: Fri Oct 28 18:31:59 2022 +Time = 5.268939e-01 seconds +exit: Mon Oct 31 16:48:21 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk4.symanzik.2.sample-out index a12ab487c..98cf1d0cc 100644 --- a/wilson_flow/test/wilson_flow_rkmk4.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:31:59 2022 +start: Mon Oct 31 16:48:21 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.350807e-04 +Time to reload gauge configuration = 2.379417e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.770424e-04 +Time to check unitarity = 2.760887e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.8537424331834639 0.8286621639253783 2.374811455559379 2.361490389791526 1.802363517742788 1.775472646584519 0.04669314950067512 -GFLOW: 0.125 0.607095406452029 0.5833964703789585 2.684040345423609 2.679173123298073 2.289353595297895 2.272470339809181 0.02294330415942155 -GFLOW: 0.1875 0.4244341508780969 0.3988355096726819 2.828379337961957 2.824491148252754 2.567873304239035 2.551494309360159 0.01513973098536381 -GFLOW: 0.25 0.3056142261630559 0.2780576917863043 2.898833237525702 2.894416431325691 2.723288754623325 2.705431505710521 0.01235488887698554 -GFLOW: 0.3125 0.2290113898703955 0.2009134519010488 2.935544872672288 2.930696504566168 2.812460098818237 2.793702752447929 0.01011392875988417 -GFLOW: 0.375 0.1780650084747431 0.1505918378934362 2.956092753359009 2.951101624320284 2.866145803716643 2.847334419842865 0.007887331365311862 -GFLOW: 0.4375 0.142792038748734 0.1165941868732739 2.968412696255884 2.963494174601542 2.900209061531216 2.881939973892079 0.00591885039278133 -GFLOW: 0.5 0.1174241252772288 0.09277935885456737 2.976267229762504 2.971546454232524 2.922912389287964 2.905514442149159 0.0043360500528877 -GFLOW: 0.5625 0.09857676460961018 0.0755452820095442 2.98154371936193 2.977080513270302 2.938707713353151 2.922321124454312 0.003128585516213964 -GFLOW: 0.625 0.08419249453870488 0.06272109221183562 2.985245063371144 2.981058866203971 2.950099983153516 2.934751055774993 0.002230748657737632 -GFLOW: 0.6875 0.0729683994239001 0.05295186425606254 2.987934653389146 2.984022336362197 2.958564549890422 2.944217964407333 0.001569620343527843 -GFLOW: 0.75 0.06404615941017526 0.04536106729790627 2.989945835916386 2.98629292919022 2.965009789032655 2.951600981962631 0.001083126753879869 -GFLOW: 0.8125 0.05684011173203531 0.03936231379265932 2.991485375701539 2.988072620461631 2.970018432091345 2.957472153245391 0.0007236714702164986 -GFLOW: 0.875 0.05093848754452047 0.03455140853168873 2.992687019673214 2.989493954019485 2.973978284529705 2.962218526124903 0.0004564725917767287 -GFLOW: 0.9375 0.04604446051004991 0.03064242261772962 2.993640503634818 2.990647288438182 2.977155813582668 2.966110685375747 0.0002566402784533462 -GFLOW: 1 0.04193959215924965 0.02742856224906824 2.994407947271924 2.991596198187827 2.979739185206611 2.96934296921576 0.0001064666822761098 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.8537424331834639 0.8286621639253783 2.361490389791526 2.374811455559379 1.775472646584519 1.802363517742788 0.04669314950067512 +GFLOW: 0.125 0.607095406452029 0.5833964703789585 2.679173123298073 2.684040345423609 2.272470339809181 2.289353595297895 0.02294330415942155 +GFLOW: 0.1875 0.4244341508780969 0.3988355096726819 2.824491148252754 2.828379337961957 2.551494309360159 2.567873304239035 0.01513973098536381 +GFLOW: 0.25 0.3056142261630559 0.2780576917863043 2.894416431325691 2.898833237525702 2.705431505710521 2.723288754623325 0.01235488887698554 +GFLOW: 0.3125 0.2290113898703955 0.2009134519010488 2.930696504566168 2.935544872672288 2.793702752447929 2.812460098818237 0.01011392875988417 +GFLOW: 0.375 0.1780650084747431 0.1505918378934362 2.951101624320284 2.956092753359009 2.847334419842865 2.866145803716643 0.007887331365311862 +GFLOW: 0.4375 0.142792038748734 0.1165941868732739 2.963494174601542 2.968412696255884 2.881939973892079 2.900209061531216 0.00591885039278133 +GFLOW: 0.5 0.1174241252772288 0.09277935885456737 2.971546454232524 2.976267229762504 2.905514442149159 2.922912389287964 0.0043360500528877 +GFLOW: 0.5625 0.09857676460961018 0.0755452820095442 2.977080513270302 2.98154371936193 2.922321124454312 2.938707713353151 0.003128585516213964 +GFLOW: 0.625 0.08419249453870488 0.06272109221183562 2.981058866203971 2.985245063371144 2.934751055774993 2.950099983153516 0.002230748657737632 +GFLOW: 0.6875 0.0729683994239001 0.05295186425606254 2.984022336362197 2.987934653389146 2.944217964407333 2.958564549890422 0.001569620343527843 +GFLOW: 0.75 0.06404615941017526 0.04536106729790627 2.98629292919022 2.989945835916386 2.951600981962631 2.965009789032655 0.001083126753879869 +GFLOW: 0.8125 0.05684011173203531 0.03936231379265932 2.988072620461631 2.991485375701539 2.957472153245391 2.970018432091345 0.0007236714702164986 +GFLOW: 0.875 0.05093848754452047 0.03455140853168873 2.989493954019485 2.992687019673214 2.962218526124903 2.973978284529705 0.0004564725917767287 +GFLOW: 0.9375 0.04604446051004991 0.03064242261772962 2.990647288438182 2.993640503634818 2.966110685375747 2.977155813582668 0.0002566402784533462 +GFLOW: 1 0.04193959215924965 0.02742856224906824 2.991596198187827 2.994407947271924 2.96934296921576 2.979739185206611 0.0001064666822761098 Number of steps = 16 -Time to complete flow = 5.786040e-01 seconds +Time to complete flow = 5.785589e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.801799e-01 seconds -exit: Fri Oct 28 18:32:00 2022 +Time = 5.801361e-01 seconds +exit: Mon Oct 31 16:48:21 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk4.wilson.1.sample-out index 22611e7a2..1362c4853 100644 --- a/wilson_flow/test/wilson_flow_rkmk4.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:31:58 2022 +start: Mon Oct 31 16:48:20 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.009869e-04 +Time to reload gauge configuration = 2.050400e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.985664e-05 +Time to check unitarity = 7.009506e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.905703 0.879571 2.21643 2.19715 1.61667 1.58359 0.0556743 -GFLOW: 0.125 0.711532 0.687053 2.53038 2.52135 2.05953 2.03782 0.0303233 -GFLOW: 0.1875 0.536252 0.511748 2.71681 2.71177 2.37227 2.35485 0.0177874 -GFLOW: 0.25 0.401525 0.375469 2.82498 2.82063 2.57815 2.56076 0.0125112 -GFLOW: 0.3125 0.304757 0.277239 2.88788 2.88324 2.7101 2.69168 0.0101703 -GFLOW: 0.375 0.236448 0.208364 2.92515 2.92019 2.79473 2.77559 0.00857856 -GFLOW: 0.4375 0.187832 0.160075 2.9479 2.94278 2.84993 2.83068 0.00709552 -GFLOW: 0.5 0.152559 0.125742 2.96229 2.9572 2.88688 2.86801 0.00569323 -GFLOW: 0.5625 0.12638 0.100845 2.97173 2.96679 2.91232 2.89418 0.00445127 -GFLOW: 0.625 0.10651 0.0824075 2.97816 2.97344 2.93037 2.91312 0.0034129 -GFLOW: 0.6875 0.0911183 0.0684751 2.98269 2.97822 2.94351 2.92723 0.00257758 -GFLOW: 0.75 0.0789786 0.0577519 2.98597 2.98177 2.95332 2.93802 0.00192101 -GFLOW: 0.8125 0.0692513 0.0493617 2.98841 2.98448 2.9608 2.94644 0.00141131 -GFLOW: 0.875 0.0613478 0.0426998 2.99027 2.98658 2.9666 2.95314 0.00101778 -GFLOW: 0.9375 0.0548461 0.0373404 2.99171 2.98826 2.97119 2.95855 0.000714291 -GFLOW: 1 0.0494375 0.0329776 2.99285 2.98961 2.97487 2.96299 0.000480007 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.905703 0.879571 2.19715 2.21643 1.58359 1.61667 0.0556743 +GFLOW: 0.125 0.711532 0.687053 2.52135 2.53038 2.03782 2.05953 0.0303233 +GFLOW: 0.1875 0.536252 0.511748 2.71177 2.71681 2.35485 2.37227 0.0177874 +GFLOW: 0.25 0.401525 0.375469 2.82063 2.82498 2.56076 2.57815 0.0125112 +GFLOW: 0.3125 0.304757 0.277239 2.88324 2.88788 2.69168 2.7101 0.0101703 +GFLOW: 0.375 0.236448 0.208364 2.92019 2.92515 2.77559 2.79473 0.00857856 +GFLOW: 0.4375 0.187832 0.160075 2.94278 2.9479 2.83068 2.84993 0.00709552 +GFLOW: 0.5 0.152559 0.125742 2.9572 2.96229 2.86801 2.88688 0.00569323 +GFLOW: 0.5625 0.12638 0.100845 2.96679 2.97173 2.89418 2.91232 0.00445127 +GFLOW: 0.625 0.10651 0.0824075 2.97344 2.97816 2.91312 2.93037 0.0034129 +GFLOW: 0.6875 0.0911183 0.0684751 2.97822 2.98269 2.92723 2.94351 0.00257758 +GFLOW: 0.75 0.0789786 0.0577519 2.98177 2.98597 2.93802 2.95332 0.00192101 +GFLOW: 0.8125 0.0692513 0.0493617 2.98448 2.98841 2.94644 2.9608 0.00141131 +GFLOW: 0.875 0.0613478 0.0426998 2.98658 2.99027 2.95314 2.9666 0.00101778 +GFLOW: 0.9375 0.0548461 0.0373404 2.98826 2.99171 2.95855 2.97119 0.000714291 +GFLOW: 1 0.0494375 0.0329776 2.98961 2.99285 2.96299 2.97487 0.000480007 Number of steps = 16 -Time to complete flow = 1.893249e-01 seconds +Time to complete flow = 1.869550e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.904080e-01 seconds -exit: Fri Oct 28 18:31:58 2022 +Time = 1.880341e-01 seconds +exit: Mon Oct 31 16:48:20 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk4.wilson.2.sample-out index 9d83ae5f7..ab88fe1ba 100644 --- a/wilson_flow/test/wilson_flow_rkmk4.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:31:58 2022 +start: Mon Oct 31 16:48:20 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.319813e-04 +Time to reload gauge configuration = 2.307892e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.760887e-04 +Time to check unitarity = 2.758503e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.9057031831608294 0.8795711436032624 2.216427462049307 2.197147988025131 1.616674189327134 1.583585295494178 0.05567430814614981 -GFLOW: 0.125 0.7115315097721592 0.6870529578658089 2.530382151491625 2.521346090112459 2.059529059863248 2.037818203347293 0.03032332381638751 -GFLOW: 0.1875 0.5362516954580807 0.5117475954751443 2.716806780038685 2.711765539897951 2.372272062494609 2.354850501930544 0.01778745115995515 -GFLOW: 0.25 0.4015245284577075 0.3754687741206338 2.82498119760611 2.820625896427014 2.578146642288866 2.560756432644165 0.01251120788761609 -GFLOW: 0.3125 0.3047573899877496 0.2772386280704487 2.88788186392349 2.883244654133323 2.710103848614104 2.691681324873731 0.01017033172581446 -GFLOW: 0.375 0.2364475104884237 0.2083643385991644 2.925151059587407 2.920185375074516 2.794731610440619 2.77559308743205 0.00857855556482435 -GFLOW: 0.4375 0.187831796481538 0.1600752498868001 2.94789934410893 2.942783581245404 2.849934784736223 2.830682482149395 0.007095519152639254 -GFLOW: 0.5 0.1525591878192909 0.1257423328114387 2.962286468719321 2.957196759900102 2.886877406054046 2.868013958168984 0.00569323719524353 -GFLOW: 0.5625 0.1263797040981757 0.1008453754960914 2.971731327778059 2.966790829367915 2.912324559696704 2.894178712554512 0.004451280399877092 -GFLOW: 0.625 0.1065099403118551 0.08240746504483271 2.97816050253488 2.973441340881219 2.930366727082344 2.913117899926735 0.003412899273150492 -GFLOW: 0.6875 0.09111831151110811 0.06847514475625506 2.982685813074557 2.978222606684135 2.94350875616732 2.9272307179632 0.002577585922309572 -GFLOW: 0.75 0.07897861800774829 0.05775194862852936 2.985967603459335 2.981770505703109 2.953316886360767 2.938016076454803 0.001921014669169278 -GFLOW: 0.8125 0.06925129599496832 0.04936167357594575 2.988410460747245 2.984474967010265 2.960795233518316 2.946438732281042 0.001411315381868171 -GFLOW: 0.875 0.06134778341502817 0.0426997853211387 2.990270236012725 2.98658381277202 2.966604783736956 2.953138967747658 0.001017779504313533 -GFLOW: 0.9375 0.054846099742266 0.03734041874314368 2.99171379346905 2.988260074949406 2.97119219381856 2.95855444611783 0.0007142962930980275 -GFLOW: 1 0.04943748561527679 0.03297760211092378 2.992853183680449 2.989614492842532 2.974866883827142 2.96299256481089 0.0004800148085506874 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.9057031831608294 0.8795711436032624 2.197147988025131 2.216427462049307 1.583585295494178 1.616674189327134 0.05567430814614981 +GFLOW: 0.125 0.7115315097721592 0.6870529578658089 2.521346090112459 2.530382151491625 2.037818203347293 2.059529059863248 0.03032332381638751 +GFLOW: 0.1875 0.5362516954580807 0.5117475954751443 2.711765539897951 2.716806780038685 2.354850501930544 2.372272062494609 0.01778745115995515 +GFLOW: 0.25 0.4015245284577075 0.3754687741206338 2.820625896427014 2.82498119760611 2.560756432644165 2.578146642288866 0.01251120788761609 +GFLOW: 0.3125 0.3047573899877496 0.2772386280704487 2.883244654133323 2.88788186392349 2.691681324873731 2.710103848614104 0.01017033172581446 +GFLOW: 0.375 0.2364475104884237 0.2083643385991644 2.920185375074516 2.925151059587407 2.77559308743205 2.794731610440619 0.00857855556482435 +GFLOW: 0.4375 0.187831796481538 0.1600752498868001 2.942783581245404 2.94789934410893 2.830682482149395 2.849934784736223 0.007095519152639254 +GFLOW: 0.5 0.1525591878192909 0.1257423328114387 2.957196759900102 2.962286468719321 2.868013958168984 2.886877406054046 0.00569323719524353 +GFLOW: 0.5625 0.1263797040981757 0.1008453754960914 2.966790829367915 2.971731327778059 2.894178712554512 2.912324559696704 0.004451280399877092 +GFLOW: 0.625 0.1065099403118551 0.08240746504483271 2.973441340881219 2.97816050253488 2.913117899926735 2.930366727082344 0.003412899273150492 +GFLOW: 0.6875 0.09111831151110811 0.06847514475625506 2.978222606684135 2.982685813074557 2.9272307179632 2.94350875616732 0.002577585922309572 +GFLOW: 0.75 0.07897861800774829 0.05775194862852936 2.981770505703109 2.985967603459335 2.938016076454803 2.953316886360767 0.001921014669169278 +GFLOW: 0.8125 0.06925129599496832 0.04936167357594575 2.984474967010265 2.988410460747245 2.946438732281042 2.960795233518316 0.001411315381868171 +GFLOW: 0.875 0.06134778341502817 0.0426997853211387 2.98658381277202 2.990270236012725 2.953138967747658 2.966604783736956 0.001017779504313533 +GFLOW: 0.9375 0.054846099742266 0.03734041874314368 2.988260074949406 2.99171379346905 2.95855444611783 2.97119219381856 0.0007142962930980275 +GFLOW: 1 0.04943748561527679 0.03297760211092378 2.989614492842532 2.992853183680449 2.96299256481089 2.974866883827142 0.0004800148085506874 Number of steps = 16 -Time to complete flow = 2.031140e-01 seconds +Time to complete flow = 2.028792e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.047291e-01 seconds -exit: Fri Oct 28 18:31:58 2022 +Time = 2.044880e-01 seconds +exit: Mon Oct 31 16:48:20 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.errtol index 867204b69..c913c1677 100644 --- a/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.errtol @@ -1,7 +1,7 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.sample-out index abded5596..96cc9595e 100644 --- a/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:32:00 2022 +start: Mon Oct 31 16:48:22 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 1.971722e-04 +Time to reload gauge configuration = 1.931190e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 7.009506e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.682395 0.692092 2.49002 2.64995 2.01267 2.19808 -0.00640099 -GFLOW: 0.125 0.383646 0.441255 2.76162 2.86243 2.46298 2.62275 -0.00640413 -GFLOW: 0.1875 0.237338 0.292619 2.8737 2.92891 2.68217 2.78661 0.00243519 -GFLOW: 0.25 0.160749 0.203643 2.92534 2.95683 2.79653 2.86338 0.00531473 -GFLOW: 0.3125 0.116436 0.148194 2.95175 2.97095 2.86081 2.90485 0.00556329 -GFLOW: 0.375 0.088597 0.111963 2.96658 2.97903 2.8996 2.92964 0.00503438 -GFLOW: 0.4375 0.0699494 0.0871808 2.97559 2.98405 2.92453 2.94562 0.0043217 -GFLOW: 0.5 0.0568133 0.0695396 2.98142 2.98738 2.94143 2.95655 0.00360938 -GFLOW: 0.5625 0.0471793 0.0565615 2.98539 2.98971 2.9534 2.96438 0.00295643 -GFLOW: 0.625 0.0398787 0.0467569 2.98819 2.99139 2.96217 2.97021 0.00238209 -GFLOW: 0.6875 0.0341959 0.039189 2.99022 2.99264 2.96879 2.97467 0.00189138 -GFLOW: 0.75 0.0296738 0.0332435 2.9917 2.99358 2.97389 2.97818 0.00148232 -GFLOW: 0.8125 0.0260091 0.0285023 2.99279 2.9943 2.97789 2.981 0.00114866 -GFLOW: 0.875 0.0229936 0.0246722 2.99356 2.99483 2.98107 2.9833 0.000881605 -GFLOW: 0.9375 0.0204808 0.0215423 2.99408 2.99522 2.98364 2.98519 0.000671251 -GFLOW: 1 0.0183645 0.018958 2.99439 2.99548 2.98572 2.98678 0.000507754 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.682395 0.692092 2.64995 2.49002 2.19808 2.01267 -0.00640099 +GFLOW: 0.125 0.383646 0.441255 2.86243 2.76162 2.62275 2.46298 -0.00640413 +GFLOW: 0.1875 0.237338 0.292619 2.92891 2.8737 2.78661 2.68217 0.00243519 +GFLOW: 0.25 0.160749 0.203643 2.95683 2.92534 2.86338 2.79653 0.00531473 +GFLOW: 0.3125 0.116436 0.148194 2.97095 2.95175 2.90485 2.86081 0.00556329 +GFLOW: 0.375 0.088597 0.111963 2.97903 2.96658 2.92964 2.8996 0.00503438 +GFLOW: 0.4375 0.0699494 0.0871808 2.98405 2.97559 2.94562 2.92453 0.0043217 +GFLOW: 0.5 0.0568133 0.0695396 2.98738 2.98142 2.95655 2.94143 0.00360938 +GFLOW: 0.5625 0.0471793 0.0565615 2.98971 2.98539 2.96438 2.9534 0.00295643 +GFLOW: 0.625 0.0398787 0.0467569 2.99139 2.98819 2.97021 2.96217 0.00238209 +GFLOW: 0.6875 0.0341959 0.039189 2.99264 2.99022 2.97467 2.96879 0.00189138 +GFLOW: 0.75 0.0296738 0.0332435 2.99358 2.9917 2.97818 2.97389 0.00148232 +GFLOW: 0.8125 0.0260091 0.0285023 2.9943 2.99279 2.981 2.97789 0.00114866 +GFLOW: 0.875 0.0229936 0.0246722 2.99483 2.99356 2.9833 2.98107 0.000881605 +GFLOW: 0.9375 0.0204808 0.0215423 2.99522 2.99408 2.98519 2.98364 0.000671251 +GFLOW: 1 0.0183645 0.018958 2.99548 2.99439 2.98678 2.98572 0.000507754 Number of steps = 16 -Time to complete flow = 5.256810e-01 seconds +Time to complete flow = 5.259330e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.267129e-01 seconds -exit: Fri Oct 28 18:32:00 2022 +Time = 5.269921e-01 seconds +exit: Mon Oct 31 16:48:22 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.errtol index efbf1dccc..e1e9d1b7d 100644 --- a/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.errtol +++ b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.errtol @@ -1,7 +1,7 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.sample-out index edfd9e672..3652a0f5e 100644 --- a/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4_a.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:32:00 2022 +start: Mon Oct 31 16:48:22 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.470016e-04 +Time to reload gauge configuration = 2.360344e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.739429e-04 +Time to check unitarity = 2.741814e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.6823946201659636 0.6920917136354631 2.490020026245956 2.649953699489648 2.012674262552984 2.198078215949578 -0.006400991034190496 -GFLOW: 0.125 0.383646204061168 0.4412549143852796 2.761623595103952 2.862429442475008 2.46298145710075 2.622754340007693 -0.00640411708013829 -GFLOW: 0.1875 0.2373381051341793 0.2926190882981353 2.873701998570031 2.928907423718769 2.682169926329637 2.786612303669262 0.002435205974237255 -GFLOW: 0.25 0.1607485244071688 0.203643007903592 2.925338763825491 2.956826206865897 2.796529471881464 2.863378984788052 0.005314737942440207 -GFLOW: 0.3125 0.1164356129485527 0.1481935738997746 2.951754630930276 2.970953922225724 2.860813476495558 2.904847027073958 0.005563297962576277 -GFLOW: 0.375 0.08859696277162969 0.1119629918593535 2.96658472818602 2.979025054170245 2.899600375149829 2.929636305705419 0.005034379026749453 -GFLOW: 0.4375 0.069949359214414 0.08718082984832819 2.975590887414977 2.984049326423378 2.924527098325761 2.9456207888863 0.004321696628119241 -GFLOW: 0.5 0.05681327332204765 0.06953959546427461 2.981421672578181 2.987384298491378 2.941426767584079 2.956551170663019 0.003609378453947195 -GFLOW: 0.5625 0.04717928289457903 0.05656147551566652 2.985390222637238 2.989709100849252 2.953396126654277 2.964382166054122 0.002956424338679133 -GFLOW: 0.625 0.03987865721065979 0.04675685082139958 2.988192567688513 2.991390665428121 2.962174148889083 2.970207061817726 0.002382095632493013 -GFLOW: 0.6875 0.03419592500252536 0.03918897441945158 2.990220033121112 2.992639362220768 2.968791338907368 2.974673456288407 0.001891378368038197 -GFLOW: 0.75 0.02967383526694925 0.03324347416992086 2.991704080417216 2.993581477709597 2.973889856912576 2.978183927487873 0.00148231773479137 -GFLOW: 0.8125 0.02600905037146957 0.02850230585606145 2.992787275760168 2.99429545386954 2.97788836522831 2.980999409502962 0.00114866348050121 -GFLOW: 0.875 0.02299362546727285 0.02467218979604128 2.99355993847521 2.994831102675102 2.981070608429286 2.983295319892182 0.000881607541859927 -GFLOW: 0.9375 0.02048084249783873 0.02154227295739387 2.994080254122519 2.995220387057091 2.983635133858775 2.985193411609623 0.0006712538264066448 -GFLOW: 1 0.01836454355924732 0.01895798990065688 2.99438631449226 2.995483907278615 2.985724492422461 2.986780574435416 0.0005077537693918494 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.6823946201659636 0.6920917136354631 2.649953699489648 2.490020026245956 2.198078215949578 2.012674262552984 -0.006400991034190496 +GFLOW: 0.125 0.383646204061168 0.4412549143852796 2.862429442475008 2.761623595103952 2.622754340007693 2.46298145710075 -0.00640411708013829 +GFLOW: 0.1875 0.2373381051341793 0.2926190882981353 2.928907423718769 2.873701998570031 2.786612303669262 2.682169926329637 0.002435205974237255 +GFLOW: 0.25 0.1607485244071688 0.203643007903592 2.956826206865897 2.925338763825491 2.863378984788052 2.796529471881464 0.005314737942440207 +GFLOW: 0.3125 0.1164356129485527 0.1481935738997746 2.970953922225724 2.951754630930276 2.904847027073958 2.860813476495558 0.005563297962576277 +GFLOW: 0.375 0.08859696277162969 0.1119629918593535 2.979025054170245 2.96658472818602 2.929636305705419 2.899600375149829 0.005034379026749453 +GFLOW: 0.4375 0.069949359214414 0.08718082984832819 2.984049326423378 2.975590887414977 2.9456207888863 2.924527098325761 0.004321696628119241 +GFLOW: 0.5 0.05681327332204765 0.06953959546427461 2.987384298491378 2.981421672578181 2.956551170663019 2.941426767584079 0.003609378453947195 +GFLOW: 0.5625 0.04717928289457903 0.05656147551566652 2.989709100849252 2.985390222637238 2.964382166054122 2.953396126654277 0.002956424338679133 +GFLOW: 0.625 0.03987865721065979 0.04675685082139958 2.991390665428121 2.988192567688513 2.970207061817726 2.962174148889083 0.002382095632493013 +GFLOW: 0.6875 0.03419592500252536 0.03918897441945158 2.992639362220768 2.990220033121112 2.974673456288407 2.968791338907368 0.001891378368038197 +GFLOW: 0.75 0.02967383526694925 0.03324347416992086 2.993581477709597 2.991704080417216 2.978183927487873 2.973889856912576 0.00148231773479137 +GFLOW: 0.8125 0.02600905037146957 0.02850230585606145 2.99429545386954 2.992787275760168 2.980999409502962 2.97788836522831 0.00114866348050121 +GFLOW: 0.875 0.02299362546727285 0.02467218979604128 2.994831102675102 2.99355993847521 2.983295319892182 2.981070608429286 0.000881607541859927 +GFLOW: 0.9375 0.02048084249783873 0.02154227295739387 2.995220387057091 2.994080254122519 2.985193411609623 2.983635133858775 0.0006712538264066448 +GFLOW: 1 0.01836454355924732 0.01895798990065688 2.995483907278615 2.99438631449226 2.986780574435416 2.985724492422461 0.0005077537693918494 Number of steps = 16 -Time to complete flow = 5.791352e-01 seconds +Time to complete flow = 5.780461e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.807450e-01 seconds -exit: Fri Oct 28 18:32:01 2022 +Time = 5.796549e-01 seconds +exit: Mon Oct 31 16:48:23 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.errtol index 63a791fb2..fd9554641 100644 --- a/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.errtol +++ b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.errtol @@ -1,8 +1,8 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0005 0.0005 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.sample-out index 7c392e9fb..e909d99ba 100644 --- a/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:32:00 2022 +start: Mon Oct 31 16:48:21 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.000332e-04 +Time to reload gauge configuration = 1.959801e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.794930e-05 +Time to check unitarity = 8.082390e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.769534 0.763513 2.34719 2.50921 1.82495 1.98626 0.0083358 -GFLOW: 0.125 0.478527 0.528676 2.64833 2.79271 2.28668 2.48021 -0.0140627 -GFLOW: 0.1875 0.304601 0.368601 2.79914 2.89358 2.55103 2.70214 -0.00878386 -GFLOW: 0.25 0.206224 0.263173 2.87853 2.93692 2.7053 2.8114 -0.00222786 -GFLOW: 0.3125 0.147788 0.193191 2.92231 2.95882 2.79819 2.87122 0.00138065 -GFLOW: 0.375 0.110891 0.14576 2.94764 2.9712 2.85616 2.90689 0.00296947 -GFLOW: 0.4375 0.0862805 0.112744 2.96305 2.97879 2.89379 2.92963 0.00347614 -GFLOW: 0.5 0.069094 0.0891093 2.97289 2.98374 2.91916 2.94494 0.00343201 -GFLOW: 0.5625 0.0566265 0.0717396 2.97946 2.98713 2.9369 2.95571 0.0031278 -GFLOW: 0.625 0.0472913 0.058674 2.98403 2.98956 2.9497 2.96356 0.00272169 -GFLOW: 0.6875 0.0401128 0.0486472 2.98731 2.99135 2.95919 2.96948 0.00229722 -GFLOW: 0.75 0.0344667 0.040819 2.98973 2.99272 2.96639 2.97405 0.00189655 -GFLOW: 0.8125 0.0299397 0.0346159 2.99157 2.99378 2.97197 2.97766 0.00153911 -GFLOW: 0.875 0.0262502 0.0296359 2.99299 2.99463 2.97636 2.98056 0.00123181 -GFLOW: 0.9375 0.0232006 0.0255912 2.9941 2.99532 2.97986 2.98294 0.000974622 -GFLOW: 1 0.0206494 0.0222712 2.99499 2.99588 2.98269 2.98491 0.000763777 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.769534 0.763513 2.50921 2.34719 1.98626 1.82495 0.0083358 +GFLOW: 0.125 0.478527 0.528676 2.79271 2.64833 2.48021 2.28668 -0.0140627 +GFLOW: 0.1875 0.304601 0.368601 2.89358 2.79914 2.70214 2.55103 -0.00878386 +GFLOW: 0.25 0.206224 0.263173 2.93692 2.87853 2.8114 2.7053 -0.00222786 +GFLOW: 0.3125 0.147788 0.193191 2.95882 2.92231 2.87122 2.79819 0.00138065 +GFLOW: 0.375 0.110891 0.14576 2.9712 2.94764 2.90689 2.85616 0.00296947 +GFLOW: 0.4375 0.0862805 0.112744 2.97879 2.96305 2.92963 2.89379 0.00347614 +GFLOW: 0.5 0.069094 0.0891093 2.98374 2.97289 2.94494 2.91916 0.00343201 +GFLOW: 0.5625 0.0566265 0.0717396 2.98713 2.97946 2.95571 2.9369 0.0031278 +GFLOW: 0.625 0.0472913 0.058674 2.98956 2.98403 2.96356 2.9497 0.00272169 +GFLOW: 0.6875 0.0401128 0.0486472 2.99135 2.98731 2.96948 2.95919 0.00229722 +GFLOW: 0.75 0.0344667 0.040819 2.99272 2.98973 2.97405 2.96639 0.00189655 +GFLOW: 0.8125 0.0299397 0.0346159 2.99378 2.99157 2.97766 2.97197 0.00153911 +GFLOW: 0.875 0.0262502 0.0296359 2.99463 2.99299 2.98056 2.97636 0.00123181 +GFLOW: 0.9375 0.0232006 0.0255912 2.99532 2.9941 2.98294 2.97986 0.000974622 +GFLOW: 1 0.0206494 0.0222712 2.99588 2.99499 2.98491 2.98269 0.000763777 Number of steps = 16 -Time to complete flow = 1.861870e-01 seconds +Time to complete flow = 1.878271e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.872559e-01 seconds -exit: Fri Oct 28 18:32:00 2022 +Time = 1.888890e-01 seconds +exit: Mon Oct 31 16:48:21 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.errtol index 8e6cbfe2d..861cd8cc6 100644 --- a/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.errtol +++ b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.errtol @@ -1,8 +1,8 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 5e-08 5e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.sample-out index 3c5ba5231..dc618f8f6 100644 --- a/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk4_a.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:32:00 2022 +start: Mon Oct 31 16:48:21 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.288818e-04 +Time to reload gauge configuration = 2.381802e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.739429e-04 +Time to check unitarity = 2.770424e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.7695344475361042 0.7635128575041581 2.34718832356269 2.509213492391763 1.824954477043811 1.986264240444615 0.008335795943452493 -GFLOW: 0.125 0.4785274648425539 0.5286759299629523 2.64832738135988 2.792708687394452 2.286683126457346 2.480208692108663 -0.01406270291690513 -GFLOW: 0.1875 0.3046011081592124 0.3686014627062565 2.799139688728641 2.893576364981898 2.551027102113085 2.70213754217427 -0.008783858542779188 -GFLOW: 0.25 0.2062237642119134 0.2631734610213494 2.878530691542991 2.936922045686315 2.705304572014108 2.811395762547916 -0.002227875999238292 -GFLOW: 0.3125 0.1477884252838138 0.1931912760417359 2.922305072006303 2.958817009500491 2.798187149927617 2.871221508518504 0.001380637283318118 -GFLOW: 0.375 0.1108907502915133 0.1457604676187817 2.947639773366115 2.971196018189363 2.856162823371561 2.906891465690364 0.002969472476409682 -GFLOW: 0.4375 0.08628051869362084 0.1127442523976524 2.963052291825976 2.978785584728886 2.893785150077659 2.929633922952222 0.003476137707998143 -GFLOW: 0.5 0.06909395468581349 0.0891093450133523 2.972893835527323 2.98373711434468 2.919160066663202 2.944938931598246 0.003432009553717 -GFLOW: 0.5625 0.05662646708705945 0.07173959555793422 2.979464728784931 2.987132582222296 2.936898523778117 2.955705269132549 0.003127804385406519 -GFLOW: 0.625 0.04729132785488909 0.05867404577933181 2.984028605380757 2.989558492945915 2.949698435799196 2.963562966784864 0.002721686385897142 -GFLOW: 0.6875 0.04011284098456652 0.04864723079079197 2.987307948962604 2.991352187698478 2.959190454274139 2.969477953562199 0.002297218381188385 -GFLOW: 0.75 0.03446671504599602 0.04081903415160494 2.989732658943902 2.992717313817578 2.966394233965442 2.974048340882511 0.001896548313538798 -GFLOW: 0.8125 0.02993973871544986 0.03461588512593165 2.991568690078201 2.993781922018884 2.971969204786266 2.977658655635302 0.001539110632597007 -GFLOW: 0.875 0.02625015025266585 0.02963594875648565 2.992986815299941 2.994629440530897 2.976355732183185 2.980564412606067 0.001231810801853838 -GFLOW: 0.9375 0.02320059879253444 0.02559121107296509 2.994100560510657 2.995315983490872 2.979856685519148 2.982940526686201 0.0009746159357432641 -GFLOW: 1 0.02064944259540563 0.0222711566211438 2.99498779187415 2.995880400661651 2.982685891060598 2.984910022250389 0.0007637764800629292 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.7695344475361042 0.7635128575041581 2.509213492391763 2.34718832356269 1.986264240444615 1.824954477043811 0.008335795943452493 +GFLOW: 0.125 0.4785274648425539 0.5286759299629523 2.792708687394452 2.64832738135988 2.480208692108663 2.286683126457346 -0.01406270291690513 +GFLOW: 0.1875 0.3046011081592124 0.3686014627062565 2.893576364981898 2.799139688728641 2.70213754217427 2.551027102113085 -0.008783858542779188 +GFLOW: 0.25 0.2062237642119134 0.2631734610213494 2.936922045686315 2.878530691542991 2.811395762547916 2.705304572014108 -0.002227875999238292 +GFLOW: 0.3125 0.1477884252838138 0.1931912760417359 2.958817009500491 2.922305072006303 2.871221508518504 2.798187149927617 0.001380637283318118 +GFLOW: 0.375 0.1108907502915133 0.1457604676187817 2.971196018189363 2.947639773366115 2.906891465690364 2.856162823371561 0.002969472476409682 +GFLOW: 0.4375 0.08628051869362084 0.1127442523976524 2.978785584728886 2.963052291825976 2.929633922952222 2.893785150077659 0.003476137707998143 +GFLOW: 0.5 0.06909395468581349 0.0891093450133523 2.98373711434468 2.972893835527323 2.944938931598246 2.919160066663202 0.003432009553717 +GFLOW: 0.5625 0.05662646708705945 0.07173959555793422 2.987132582222296 2.979464728784931 2.955705269132549 2.936898523778117 0.003127804385406519 +GFLOW: 0.625 0.04729132785488909 0.05867404577933181 2.989558492945915 2.984028605380757 2.963562966784864 2.949698435799196 0.002721686385897142 +GFLOW: 0.6875 0.04011284098456652 0.04864723079079197 2.991352187698478 2.987307948962604 2.969477953562199 2.959190454274139 0.002297218381188385 +GFLOW: 0.75 0.03446671504599602 0.04081903415160494 2.992717313817578 2.989732658943902 2.974048340882511 2.966394233965442 0.001896548313538798 +GFLOW: 0.8125 0.02993973871544986 0.03461588512593165 2.993781922018884 2.991568690078201 2.977658655635302 2.971969204786266 0.001539110632597007 +GFLOW: 0.875 0.02625015025266585 0.02963594875648565 2.994629440530897 2.992986815299941 2.980564412606067 2.976355732183185 0.001231810801853838 +GFLOW: 0.9375 0.02320059879253444 0.02559121107296509 2.995315983490872 2.994100560510657 2.982940526686201 2.979856685519148 0.0009746159357432641 +GFLOW: 1 0.02064944259540563 0.0222711566211438 2.995880400661651 2.99498779187415 2.984910022250389 2.982685891060598 0.0007637764800629292 Number of steps = 16 -Time to complete flow = 2.031450e-01 seconds +Time to complete flow = 2.024789e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.047181e-01 seconds -exit: Fri Oct 28 18:32:00 2022 +Time = 2.040980e-01 seconds +exit: Mon Oct 31 16:48:22 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk5.symanzik.1.sample-out index 8333d2e12..0340ab974 100644 --- a/wilson_flow/test/wilson_flow_rkmk5.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:41:03 2022 +start: Mon Oct 31 17:27:18 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.081394e-04 +Time to reload gauge configuration = 2.071857e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 Time to check unitarity = 6.890297e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.853792 0.828736 2.37561 2.36225 1.80284 1.77595 0.0467987 -GFLOW: 0.125 0.606998 0.583313 2.68456 2.67969 2.28984 2.27298 0.0229986 -GFLOW: 0.1875 0.424319 0.398728 2.8286 2.82472 2.56816 2.55179 0.0151548 -GFLOW: 0.25 0.305529 0.277977 2.89893 2.89451 2.72344 2.70559 0.012355 -GFLOW: 0.3125 0.228954 0.20086 2.93559 2.93074 2.81254 2.79379 0.0101119 -GFLOW: 0.375 0.178027 0.150556 2.95611 2.95112 2.86619 2.84738 0.0078857 -GFLOW: 0.4375 0.142766 0.11657 2.96842 2.96351 2.90024 2.88197 0.00591764 -GFLOW: 0.5 0.117405 0.0927624 2.97627 2.97155 2.92293 2.90553 0.00433513 -GFLOW: 0.5625 0.0985628 0.0755328 2.98155 2.97709 2.93872 2.92233 0.00312792 -GFLOW: 0.625 0.0841818 0.0627116 2.98525 2.98106 2.95011 2.93476 0.00223026 -GFLOW: 0.6875 0.07296 0.0529445 2.98794 2.98402 2.95857 2.94423 0.00156928 -GFLOW: 0.75 0.0640395 0.0453551 2.98995 2.98629 2.96501 2.95161 0.00108289 -GFLOW: 0.8125 0.0568347 0.0393575 2.99149 2.98807 2.97002 2.95748 0.000723504 -GFLOW: 0.875 0.050934 0.0345474 2.99269 2.9895 2.97398 2.96222 0.000456365 -GFLOW: 0.9375 0.0460408 0.030639 2.99364 2.99065 2.97716 2.96611 0.000256579 -GFLOW: 1 0.0419365 0.0274257 2.99441 2.9916 2.97974 2.96935 0.000106438 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.853792 0.828736 2.36225 2.37561 1.77595 1.80284 0.0467987 +GFLOW: 0.125 0.606998 0.583313 2.67969 2.68456 2.27298 2.28984 0.0229986 +GFLOW: 0.1875 0.424319 0.398728 2.82472 2.8286 2.55179 2.56816 0.0151548 +GFLOW: 0.25 0.305529 0.277977 2.89451 2.89893 2.70559 2.72344 0.012355 +GFLOW: 0.3125 0.228954 0.20086 2.93074 2.93559 2.79379 2.81254 0.0101119 +GFLOW: 0.375 0.178027 0.150556 2.95112 2.95611 2.84738 2.86619 0.0078857 +GFLOW: 0.4375 0.142766 0.11657 2.96351 2.96842 2.88197 2.90024 0.00591764 +GFLOW: 0.5 0.117405 0.0927624 2.97155 2.97627 2.90553 2.92293 0.00433513 +GFLOW: 0.5625 0.0985628 0.0755328 2.97709 2.98155 2.92233 2.93872 0.00312792 +GFLOW: 0.625 0.0841818 0.0627116 2.98106 2.98525 2.93476 2.95011 0.00223026 +GFLOW: 0.6875 0.07296 0.0529445 2.98402 2.98794 2.94423 2.95857 0.00156928 +GFLOW: 0.75 0.0640395 0.0453551 2.98629 2.98995 2.95161 2.96501 0.00108289 +GFLOW: 0.8125 0.0568347 0.0393575 2.98807 2.99149 2.95748 2.97002 0.000723504 +GFLOW: 0.875 0.050934 0.0345474 2.9895 2.99269 2.96222 2.97398 0.000456365 +GFLOW: 0.9375 0.0460408 0.030639 2.99065 2.99364 2.96611 2.97716 0.000256579 +GFLOW: 1 0.0419365 0.0274257 2.9916 2.99441 2.96935 2.97974 0.000106438 Number of steps = 16 -Time to complete flow = 7.855151e-01 seconds +Time to complete flow = 7.742600e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 7.866490e-01 seconds -exit: Fri Oct 28 18:41:04 2022 +Time = 7.753940e-01 seconds +exit: Mon Oct 31 17:27:19 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk5.symanzik.2.sample-out index c259751f4..022966d17 100644 --- a/wilson_flow/test/wilson_flow_rkmk5.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:41:04 2022 +start: Mon Oct 31 17:27:19 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 3.008842e-04 +Time to reload gauge configuration = 2.980232e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 Time to check unitarity = 2.748966e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.8537916210261531 0.8287360294796184 2.375609707049246 2.362249970407575 1.802838126616738 1.775953989958998 0.04679868483046359 -GFLOW: 0.125 0.6069975003488538 0.5833129347561989 2.684555722304247 2.679691098669111 2.289835420265009 2.272978587895644 0.02299858816438644 -GFLOW: 0.1875 0.4243186928883013 0.3987277103502393 2.828602023081572 2.824719206466712 2.56815647882411 2.551792595033697 0.01515474966245571 -GFLOW: 0.25 0.3055288164020661 0.2779766278507202 2.89892714667574 2.89451264638898 2.723438515487157 2.705587837183007 0.01235494296477359 -GFLOW: 0.3125 0.228954262592706 0.200859620460009 2.93558695878786 2.930739651675889 2.812539942871007 2.793786151345161 0.01011194542581436 -GFLOW: 0.375 0.1780268421526196 0.1505564453699778 2.956113304903022 2.951122863411313 2.866190586194819 2.847381675982506 0.007885699528428066 -GFLOW: 0.4375 0.1427657259368479 0.1165701951809684 2.968423718807073 2.963505744723024 2.900235924923968 2.881968762890764 0.00591762728794626 -GFLOW: 0.5 0.1174052731983962 0.09276241155963771 2.976273709326364 2.971553391092313 2.922929654097965 2.905533252834541 0.004335132706865454 -GFLOW: 0.5625 0.0985627708457073 0.07553282644720626 2.981547854929433 2.977085028078746 2.93871952215411 2.922334177904675 0.003127908694947902 -GFLOW: 0.625 0.08418179636349796 0.0627116196677009 2.98524789101671 2.981062003367621 2.950108492095959 2.934760561047291 0.002230260778853239 -GFLOW: 0.6875 0.07296002422257034 0.05294445339231196 2.987936695942852 2.984024627896954 2.958570943025793 2.944225148125849 0.001569276105943358 -GFLOW: 0.75 0.06403947566299394 0.04535513227799536 2.989947375887601 2.98629466702366 2.965014754336341 2.951606568177768 0.001082888755920617 -GFLOW: 0.8125 0.05683469244507984 0.03935746683886642 2.991486576052576 2.988073976332386 2.970022391746292 2.957476594790334 0.0007235109305985677 -GFLOW: 0.875 0.05093403375201892 0.034547383492764 2.992687980195416 2.989495035411175 2.973981510810245 2.96222212099132 0.0004563683222142706 -GFLOW: 0.9375 0.04604075682943066 0.0306390310636108 2.993641288724249 2.990648166237202 2.97715848982014 2.966113638147803 0.0002565770102453649 -GFLOW: 1 0.04193647984013806 0.02742566727590413 2.994408600370921 2.991596921180119 2.979741439396236 2.969345425216337 0.0001064334786541582 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.8537916210261531 0.8287360294796184 2.362249970407575 2.375609707049246 1.775953989958998 1.802838126616738 0.04679868483046359 +GFLOW: 0.125 0.6069975003488538 0.5833129347561989 2.679691098669111 2.684555722304247 2.272978587895644 2.289835420265009 0.02299858816438644 +GFLOW: 0.1875 0.4243186928883013 0.3987277103502393 2.824719206466712 2.828602023081572 2.551792595033697 2.56815647882411 0.01515474966245571 +GFLOW: 0.25 0.3055288164020661 0.2779766278507202 2.89451264638898 2.89892714667574 2.705587837183007 2.723438515487157 0.01235494296477359 +GFLOW: 0.3125 0.228954262592706 0.200859620460009 2.930739651675889 2.93558695878786 2.793786151345161 2.812539942871007 0.01011194542581436 +GFLOW: 0.375 0.1780268421526196 0.1505564453699778 2.951122863411313 2.956113304903022 2.847381675982506 2.866190586194819 0.007885699528428066 +GFLOW: 0.4375 0.1427657259368479 0.1165701951809684 2.963505744723024 2.968423718807073 2.881968762890764 2.900235924923968 0.00591762728794626 +GFLOW: 0.5 0.1174052731983962 0.09276241155963771 2.971553391092313 2.976273709326364 2.905533252834541 2.922929654097965 0.004335132706865454 +GFLOW: 0.5625 0.0985627708457073 0.07553282644720626 2.977085028078746 2.981547854929433 2.922334177904675 2.93871952215411 0.003127908694947902 +GFLOW: 0.625 0.08418179636349796 0.0627116196677009 2.981062003367621 2.98524789101671 2.934760561047291 2.950108492095959 0.002230260778853239 +GFLOW: 0.6875 0.07296002422257034 0.05294445339231196 2.984024627896954 2.987936695942852 2.944225148125849 2.958570943025793 0.001569276105943358 +GFLOW: 0.75 0.06403947566299394 0.04535513227799536 2.98629466702366 2.989947375887601 2.951606568177768 2.965014754336341 0.001082888755920617 +GFLOW: 0.8125 0.05683469244507984 0.03935746683886642 2.988073976332386 2.991486576052576 2.957476594790334 2.970022391746292 0.0007235109305985677 +GFLOW: 0.875 0.05093403375201892 0.034547383492764 2.989495035411175 2.992687980195416 2.96222212099132 2.973981510810245 0.0004563683222142706 +GFLOW: 0.9375 0.04604075682943066 0.0306390310636108 2.990648166237202 2.993641288724249 2.966113638147803 2.97715848982014 0.0002565770102453649 +GFLOW: 1 0.04193647984013806 0.02742566727590413 2.991596921180119 2.994408600370921 2.969345425216337 2.979741439396236 0.0001064334786541582 Number of steps = 16 -Time to complete flow = 8.493240e-01 seconds +Time to complete flow = 8.474610e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 8.509991e-01 seconds -exit: Fri Oct 28 18:41:05 2022 +Time = 8.491240e-01 seconds +exit: Mon Oct 31 17:27:20 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk5.wilson.1.sample-out index 948bed374..53ee0c00f 100644 --- a/wilson_flow/test/wilson_flow_rkmk5.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:41:03 2022 +start: Mon Oct 31 17:27:18 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.100468e-04 +Time to reload gauge configuration = 7.729530e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 Time to check unitarity = 7.009506e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.905713 0.879583 2.21652 2.19724 1.61673 1.58364 0.0556855 -GFLOW: 0.125 0.711523 0.687047 2.5305 2.52146 2.05963 2.03792 0.0303343 -GFLOW: 0.1875 0.536229 0.511727 2.71689 2.71185 2.37236 2.35495 0.0177953 -GFLOW: 0.25 0.4015 0.375446 2.82503 2.82068 2.57821 2.56083 0.0125152 -GFLOW: 0.3125 0.304737 0.277219 2.88791 2.88328 2.71015 2.69173 0.0101718 -GFLOW: 0.375 0.236432 0.20835 2.92517 2.9202 2.79476 2.77562 0.00857901 -GFLOW: 0.4375 0.187821 0.160065 2.94791 2.94279 2.84995 2.8307 0.00709565 -GFLOW: 0.5 0.152552 0.125735 2.96229 2.9572 2.88689 2.86802 0.00569325 -GFLOW: 0.5625 0.126374 0.100841 2.97173 2.96679 2.91233 2.89419 0.00445123 -GFLOW: 0.625 0.106506 0.082404 2.97816 2.97344 2.93037 2.91312 0.00341284 -GFLOW: 0.6875 0.0911155 0.0684727 2.98269 2.97822 2.94351 2.92723 0.00257752 -GFLOW: 0.75 0.0789765 0.0577501 2.98597 2.98177 2.95332 2.93802 0.00192096 -GFLOW: 0.8125 0.0692497 0.0493603 2.98841 2.98448 2.9608 2.94644 0.00141128 -GFLOW: 0.875 0.0613465 0.0426987 2.99027 2.98658 2.96661 2.95314 0.00101775 -GFLOW: 0.9375 0.0548451 0.0373396 2.99171 2.98826 2.97119 2.95856 0.000714267 -GFLOW: 1 0.0494367 0.0329769 2.99285 2.98961 2.97487 2.96299 0.000479999 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.905713 0.879583 2.19724 2.21652 1.58364 1.61673 0.0556855 +GFLOW: 0.125 0.711523 0.687047 2.52146 2.5305 2.03792 2.05963 0.0303343 +GFLOW: 0.1875 0.536229 0.511727 2.71185 2.71689 2.35495 2.37236 0.0177953 +GFLOW: 0.25 0.4015 0.375446 2.82068 2.82503 2.56083 2.57821 0.0125152 +GFLOW: 0.3125 0.304737 0.277219 2.88328 2.88791 2.69173 2.71015 0.0101718 +GFLOW: 0.375 0.236432 0.20835 2.9202 2.92517 2.77562 2.79476 0.00857901 +GFLOW: 0.4375 0.187821 0.160065 2.94279 2.94791 2.8307 2.84995 0.00709565 +GFLOW: 0.5 0.152552 0.125735 2.9572 2.96229 2.86802 2.88689 0.00569325 +GFLOW: 0.5625 0.126374 0.100841 2.96679 2.97173 2.89419 2.91233 0.00445123 +GFLOW: 0.625 0.106506 0.082404 2.97344 2.97816 2.91312 2.93037 0.00341284 +GFLOW: 0.6875 0.0911155 0.0684727 2.97822 2.98269 2.92723 2.94351 0.00257752 +GFLOW: 0.75 0.0789765 0.0577501 2.98177 2.98597 2.93802 2.95332 0.00192096 +GFLOW: 0.8125 0.0692497 0.0493603 2.98448 2.98841 2.94644 2.9608 0.00141128 +GFLOW: 0.875 0.0613465 0.0426987 2.98658 2.99027 2.95314 2.96661 0.00101775 +GFLOW: 0.9375 0.0548451 0.0373396 2.98826 2.99171 2.95856 2.97119 0.000714267 +GFLOW: 1 0.0494367 0.0329769 2.98961 2.99285 2.96299 2.97487 0.000479999 Number of steps = 16 -Time to complete flow = 2.661700e-01 seconds +Time to complete flow = 2.628610e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.673049e-01 seconds -exit: Fri Oct 28 18:41:03 2022 +Time = 2.665510e-01 seconds +exit: Mon Oct 31 17:27:18 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk5.wilson.2.sample-out index ee7705678..86a6553c6 100644 --- a/wilson_flow/test/wilson_flow_rkmk5.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:41:03 2022 +start: Mon Oct 31 17:27:18 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 3.011227e-04 +Time to reload gauge configuration = 2.911091e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.741814e-04 +Time to check unitarity = 2.789497e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.9057125954469835 0.8795832297394959 2.216521950718044 2.197236731900541 1.616728448310817 1.583639082900349 0.05568554956644499 -GFLOW: 0.125 0.7115229621840339 0.6870467289896537 2.530497519968401 2.521459729974289 2.059625004427158 2.037917771484897 0.03033430230879192 -GFLOW: 0.1875 0.5362288620097826 0.5117268346650318 2.716891515418079 2.711851959540317 2.372361550296195 2.354945631924065 0.01779532043847782 -GFLOW: 0.25 0.4014997787274237 0.3754456151210679 2.825032888418928 2.820679282372748 2.578211790836439 2.560825668555872 0.01251519114884686 -GFLOW: 0.3125 0.3047369693171377 0.2772192082920859 2.887911315321631 2.883275048908093 2.710146483711562 2.691726181561876 0.0101718048838647 -GFLOW: 0.375 0.2364324710587787 0.2083499446367632 2.925167493314724 2.920202253979415 2.794758266206804 2.77562087586427 0.008579015461814377 -GFLOW: 0.4375 0.1878212030726906 0.1600651399612365 2.947908538037628 2.942792987468566 2.849951226973165 2.830699551758741 0.007095643911093991 -GFLOW: 0.5 0.1525517933681338 0.1257353473268012 2.962291700492028 2.957202109517323 2.886887610750093 2.868024572129173 0.005693243785488076 -GFLOW: 0.5625 0.1263744902339323 0.1008405265833488 2.971734385675839 2.96679396941486 2.912331012790919 2.894185477755167 0.004451239134461936 -GFLOW: 0.625 0.1065061901825175 0.08240404508937657 2.978162350520073 2.973443257237951 2.930370917528549 2.913122352609577 0.003412840751855471 -GFLOW: 0.6875 0.09111554905006225 0.068472680505204 2.982686972420023 2.978223827632336 2.943511562371628 2.927233754304263 0.002577526282997485 -GFLOW: 0.75 0.07897653302875543 0.05775013133259661 2.98596835974138 2.981771318498607 2.953318827161642 2.938018222047655 0.00192096182879209 -GFLOW: 0.8125 0.06924968605653675 0.04936030233792189 2.988410973537787 2.984475531364147 2.960796618954728 2.946440300171393 0.001411272164822152 -GFLOW: 0.875 0.06134651460744035 0.04269872817078881 2.990270596682987 2.98658421997895 2.966605802529219 2.953140148586122 0.001017745952219291 -GFLOW: 0.9375 0.05484508170978916 0.03733958757568642 2.99171405580515 2.98826037886574 2.971192963493969 2.95855535915969 0.0007142712182310926 -GFLOW: 1 0.04943665598553126 0.03297693695049054 2.992853380295785 2.989614726329019 2.974867479455541 2.962993286862163 0.0004799966761454965 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.9057125954469835 0.8795832297394959 2.197236731900541 2.216521950718044 1.583639082900349 1.616728448310817 0.05568554956644499 +GFLOW: 0.125 0.7115229621840339 0.6870467289896537 2.521459729974289 2.530497519968401 2.037917771484897 2.059625004427158 0.03033430230879192 +GFLOW: 0.1875 0.5362288620097826 0.5117268346650318 2.711851959540317 2.716891515418079 2.354945631924065 2.372361550296195 0.01779532043847782 +GFLOW: 0.25 0.4014997787274237 0.3754456151210679 2.820679282372748 2.825032888418928 2.560825668555872 2.578211790836439 0.01251519114884686 +GFLOW: 0.3125 0.3047369693171377 0.2772192082920859 2.883275048908093 2.887911315321631 2.691726181561876 2.710146483711562 0.0101718048838647 +GFLOW: 0.375 0.2364324710587787 0.2083499446367632 2.920202253979415 2.925167493314724 2.77562087586427 2.794758266206804 0.008579015461814377 +GFLOW: 0.4375 0.1878212030726906 0.1600651399612365 2.942792987468566 2.947908538037628 2.830699551758741 2.849951226973165 0.007095643911093991 +GFLOW: 0.5 0.1525517933681338 0.1257353473268012 2.957202109517323 2.962291700492028 2.868024572129173 2.886887610750093 0.005693243785488076 +GFLOW: 0.5625 0.1263744902339323 0.1008405265833488 2.96679396941486 2.971734385675839 2.894185477755167 2.912331012790919 0.004451239134461936 +GFLOW: 0.625 0.1065061901825175 0.08240404508937657 2.973443257237951 2.978162350520073 2.913122352609577 2.930370917528549 0.003412840751855471 +GFLOW: 0.6875 0.09111554905006225 0.068472680505204 2.978223827632336 2.982686972420023 2.927233754304263 2.943511562371628 0.002577526282997485 +GFLOW: 0.75 0.07897653302875543 0.05775013133259661 2.981771318498607 2.98596835974138 2.938018222047655 2.953318827161642 0.00192096182879209 +GFLOW: 0.8125 0.06924968605653675 0.04936030233792189 2.984475531364147 2.988410973537787 2.946440300171393 2.960796618954728 0.001411272164822152 +GFLOW: 0.875 0.06134651460744035 0.04269872817078881 2.98658421997895 2.990270596682987 2.953140148586122 2.966605802529219 0.001017745952219291 +GFLOW: 0.9375 0.05484508170978916 0.03733958757568642 2.98826037886574 2.99171405580515 2.95855535915969 2.971192963493969 0.0007142712182310926 +GFLOW: 1 0.04943665598553126 0.03297693695049054 2.989614726329019 2.992853380295785 2.962993286862163 2.974867479455541 0.0004799966761454965 Number of steps = 16 -Time to complete flow = 2.837920e-01 seconds +Time to complete flow = 2.953579e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.855041e-01 seconds -exit: Fri Oct 28 18:41:03 2022 +Time = 2.970312e-01 seconds +exit: Mon Oct 31 17:27:18 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.errtol index 867204b69..c913c1677 100644 --- a/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.errtol @@ -1,7 +1,7 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.sample-out index 2546cff73..43cfba903 100644 --- a/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:41:05 2022 +start: Mon Oct 31 17:27:20 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.021790e-04 +Time to reload gauge configuration = 2.069473e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.914139e-05 +Time to check unitarity = 6.890297e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.681253 0.690555 2.4957 2.65877 2.01844 2.20497 -0.00363664 -GFLOW: 0.125 0.381516 0.439208 2.76499 2.86646 2.46725 2.62727 -0.00555571 -GFLOW: 0.1875 0.235939 0.291239 2.87526 2.93033 2.68435 2.78851 0.00300833 -GFLOW: 0.25 0.159903 0.202725 2.92621 2.9575 2.79776 2.86431 0.00567665 -GFLOW: 0.3125 0.115897 0.147553 2.95235 2.97138 2.86159 2.90539 0.00577588 -GFLOW: 0.375 0.0882337 0.111495 2.96707 2.97936 2.90013 2.92998 0.00515631 -GFLOW: 0.4375 0.0696919 0.0868224 2.97603 2.98434 2.92491 2.94586 0.00439008 -GFLOW: 0.5 0.0566222 0.0692522 2.98186 2.98767 2.94173 2.95673 0.00364597 -GFLOW: 0.5625 0.0470309 0.0563207 2.98586 2.99001 2.95364 2.96452 0.00297397 -GFLOW: 0.625 0.0397579 0.0465465 2.98872 2.99173 2.96239 2.97032 0.00238817 -GFLOW: 0.6875 0.0340928 0.038998 2.99084 2.99303 2.96899 2.97477 0.00189056 -GFLOW: 0.75 0.0295812 0.0330638 2.99244 2.99404 2.97408 2.97827 0.0014774 -GFLOW: 0.8125 0.0259213 0.0283276 2.99368 2.99484 2.97807 2.98109 0.00114134 -GFLOW: 0.875 0.0229062 0.0244971 2.99466 2.99549 2.98126 2.98338 0.000872919 -GFLOW: 0.9375 0.0203894 0.021362 2.99544 2.99603 2.98384 2.98529 0.000661833 -GFLOW: 1 0.0182649 0.018768 2.99607 2.99647 2.98594 2.98688 0.000497996 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.681253 0.690555 2.65877 2.4957 2.20497 2.01844 -0.00363664 +GFLOW: 0.125 0.381516 0.439208 2.86646 2.76499 2.62727 2.46725 -0.00555571 +GFLOW: 0.1875 0.235939 0.291239 2.93033 2.87526 2.78851 2.68435 0.00300833 +GFLOW: 0.25 0.159903 0.202725 2.9575 2.92621 2.86431 2.79776 0.00567665 +GFLOW: 0.3125 0.115897 0.147553 2.97138 2.95235 2.90539 2.86159 0.00577588 +GFLOW: 0.375 0.0882337 0.111495 2.97936 2.96707 2.92998 2.90013 0.00515631 +GFLOW: 0.4375 0.0696919 0.0868224 2.98434 2.97603 2.94586 2.92491 0.00439008 +GFLOW: 0.5 0.0566222 0.0692522 2.98767 2.98186 2.95673 2.94173 0.00364597 +GFLOW: 0.5625 0.0470309 0.0563207 2.99001 2.98586 2.96452 2.95364 0.00297397 +GFLOW: 0.625 0.0397579 0.0465465 2.99173 2.98872 2.97032 2.96239 0.00238817 +GFLOW: 0.6875 0.0340928 0.038998 2.99303 2.99084 2.97477 2.96899 0.00189056 +GFLOW: 0.75 0.0295812 0.0330638 2.99404 2.99244 2.97827 2.97408 0.0014774 +GFLOW: 0.8125 0.0259213 0.0283276 2.99484 2.99368 2.98109 2.97807 0.00114134 +GFLOW: 0.875 0.0229062 0.0244971 2.99549 2.99466 2.98338 2.98126 0.000872919 +GFLOW: 0.9375 0.0203894 0.021362 2.99603 2.99544 2.98529 2.98384 0.000661833 +GFLOW: 1 0.0182649 0.018768 2.99647 2.99607 2.98688 2.98594 0.000497996 Number of steps = 16 -Time to complete flow = 7.859840e-01 seconds +Time to complete flow = 7.764461e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 7.870929e-01 seconds -exit: Fri Oct 28 18:41:06 2022 +Time = 7.775249e-01 seconds +exit: Mon Oct 31 17:27:21 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.errtol index efbf1dccc..e1e9d1b7d 100644 --- a/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.errtol +++ b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.errtol @@ -1,7 +1,7 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.sample-out index 92e5e02fb..caa23d27d 100644 --- a/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5_a.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:41:06 2022 +start: Mon Oct 31 17:27:21 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 3.118515e-04 +Time to reload gauge configuration = 3.080368e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 Time to check unitarity = 2.770424e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.6812527301363549 0.6905552748723999 2.495698739073275 2.658766238316276 2.018442270126926 2.204974840882857 -0.003636599144172505 -GFLOW: 0.125 0.3815159992803073 0.4392077367195605 2.764990876772406 2.866462858807857 2.467252430459942 2.627268113789401 -0.005555682586924652 -GFLOW: 0.1875 0.235939170232154 0.291239154356263 2.875255329795385 2.930331118173843 2.684345115669181 2.788510995032171 0.003008351099639986 -GFLOW: 0.25 0.1599025225788066 0.2027253388508985 2.926209066568654 2.957501141843396 2.79775920304968 2.864313996093538 0.005676645772222622 -GFLOW: 0.3125 0.1158968754263262 0.147553491168111 2.952351176457264 2.971381872031845 2.8615861505292 2.90538752949853 0.00577589554924041 -GFLOW: 0.375 0.08823374303070818 0.1114949559182181 2.967065116737312 2.979356529994876 2.900126426508155 2.929983133869833 0.005156300125512996 -GFLOW: 0.4375 0.06969192014332108 0.08682236114330186 2.976029317890532 2.984344180845062 2.924910893894139 2.945860536281215 0.004390076270418332 -GFLOW: 0.5 0.05662220721422906 0.06925219149341244 2.981861206814484 2.987673759093802 2.941725262832214 2.956727459886176 0.003645971875421036 -GFLOW: 0.5625 0.04703090141850982 0.05632066718140636 2.985861859430437 2.990013980312041 2.953642507850837 2.964519385996863 0.002973967055081691 -GFLOW: 0.625 0.03975794124173342 0.0465465336496952 2.988723672131308 2.991728216702044 2.962388890744062 2.970319947218389 0.002388168027234785 -GFLOW: 0.6875 0.03409282314492537 0.03899804865634199 2.990838867478246 2.993026542901097 2.968987881528745 2.97477155499704 0.001890560376365905 -GFLOW: 0.75 0.02958117752046342 0.03306382759319404 2.992442763288281 2.994036897651103 2.974077688113774 2.978273907767063 0.001477397525373055 -GFLOW: 0.8125 0.025921310361938 0.02832759253500683 2.993684035748635 2.994840783263437 2.978074752540646 2.981086340432498 0.001141340598935955 -GFLOW: 0.875 0.02290615567978586 0.02449707964957822 2.994660920433495 2.995492204099566 2.981261592739429 2.983383419944006 0.000872917638957085 -GFLOW: 0.9375 0.02038938365696562 0.02136198032000602 2.995440777621027 2.996028197164418 2.983836099751037 2.985286502934693 0.000661831751909048 -GFLOW: 1 0.01826490036510634 0.01876797305344752 2.996071189292538 2.996474935931299 2.985940476473617 2.986882362045059 0.0004979980974827798 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.6812527301363549 0.6905552748723999 2.658766238316276 2.495698739073275 2.204974840882857 2.018442270126926 -0.003636599144172505 +GFLOW: 0.125 0.3815159992803073 0.4392077367195605 2.866462858807857 2.764990876772406 2.627268113789401 2.467252430459942 -0.005555682586924652 +GFLOW: 0.1875 0.235939170232154 0.291239154356263 2.930331118173843 2.875255329795385 2.788510995032171 2.684345115669181 0.003008351099639986 +GFLOW: 0.25 0.1599025225788066 0.2027253388508985 2.957501141843396 2.926209066568654 2.864313996093538 2.79775920304968 0.005676645772222622 +GFLOW: 0.3125 0.1158968754263262 0.147553491168111 2.971381872031845 2.952351176457264 2.90538752949853 2.8615861505292 0.00577589554924041 +GFLOW: 0.375 0.08823374303070818 0.1114949559182181 2.979356529994876 2.967065116737312 2.929983133869833 2.900126426508155 0.005156300125512996 +GFLOW: 0.4375 0.06969192014332108 0.08682236114330186 2.984344180845062 2.976029317890532 2.945860536281215 2.924910893894139 0.004390076270418332 +GFLOW: 0.5 0.05662220721422906 0.06925219149341244 2.987673759093802 2.981861206814484 2.956727459886176 2.941725262832214 0.003645971875421036 +GFLOW: 0.5625 0.04703090141850982 0.05632066718140636 2.990013980312041 2.985861859430437 2.964519385996863 2.953642507850837 0.002973967055081691 +GFLOW: 0.625 0.03975794124173342 0.0465465336496952 2.991728216702044 2.988723672131308 2.970319947218389 2.962388890744062 0.002388168027234785 +GFLOW: 0.6875 0.03409282314492537 0.03899804865634199 2.993026542901097 2.990838867478246 2.97477155499704 2.968987881528745 0.001890560376365905 +GFLOW: 0.75 0.02958117752046342 0.03306382759319404 2.994036897651103 2.992442763288281 2.978273907767063 2.974077688113774 0.001477397525373055 +GFLOW: 0.8125 0.025921310361938 0.02832759253500683 2.994840783263437 2.993684035748635 2.981086340432498 2.978074752540646 0.001141340598935955 +GFLOW: 0.875 0.02290615567978586 0.02449707964957822 2.995492204099566 2.994660920433495 2.983383419944006 2.981261592739429 0.000872917638957085 +GFLOW: 0.9375 0.02038938365696562 0.02136198032000602 2.996028197164418 2.995440777621027 2.985286502934693 2.983836099751037 0.000661831751909048 +GFLOW: 1 0.01826490036510634 0.01876797305344752 2.996474935931299 2.996071189292538 2.986882362045059 2.985940476473617 0.0004979980974827798 Number of steps = 16 -Time to complete flow = 8.675370e-01 seconds +Time to complete flow = 8.496549e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 8.692689e-01 seconds -exit: Fri Oct 28 18:41:07 2022 +Time = 8.513939e-01 seconds +exit: Mon Oct 31 17:27:22 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.errtol index 63a791fb2..fd9554641 100644 --- a/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.errtol +++ b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.errtol @@ -1,8 +1,8 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0005 0.0005 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.sample-out index 0db0ec2b4..5cc0978dc 100644 --- a/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:41:05 2022 +start: Mon Oct 31 17:27:20 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.040863e-04 +Time to reload gauge configuration = 2.110004e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.985664e-05 +Time to check unitarity = 6.794930e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.76965 0.763296 2.34828 2.51099 1.82604 1.98753 0.0085606 -GFLOW: 0.125 0.478209 0.528252 2.64906 2.79383 2.28768 2.48148 -0.0140521 -GFLOW: 0.1875 0.304327 0.368328 2.79944 2.89394 2.55151 2.7027 -0.00877322 -GFLOW: 0.25 0.206062 0.263014 2.87866 2.93704 2.70555 2.81163 -0.00220254 -GFLOW: 0.3125 0.147694 0.193091 2.92237 2.95886 2.79833 2.87133 0.00140124 -GFLOW: 0.375 0.110833 0.145693 2.94768 2.97122 2.85625 2.90695 0.00298225 -GFLOW: 0.4375 0.0862428 0.112697 2.96308 2.9788 2.89384 2.92967 0.00348338 -GFLOW: 0.5 0.0690681 0.0890748 2.97291 2.98375 2.9192 2.94496 0.00343603 -GFLOW: 0.5625 0.056608 0.0717139 2.97947 2.98714 2.93693 2.95572 0.00313004 -GFLOW: 0.625 0.0472777 0.0586546 2.98404 2.98956 2.94972 2.96357 0.00272291 -GFLOW: 0.6875 0.0401025 0.0486322 2.98731 2.99135 2.9592 2.96949 0.00229787 -GFLOW: 0.75 0.0344587 0.0408073 2.98974 2.99272 2.96641 2.97406 0.00189687 -GFLOW: 0.8125 0.0299334 0.0346066 2.99157 2.99378 2.97198 2.97766 0.00153924 -GFLOW: 0.875 0.026245 0.0296285 2.99299 2.99463 2.97636 2.98057 0.00123184 -GFLOW: 0.9375 0.0231964 0.0255852 2.9941 2.99532 2.97986 2.98294 0.000974591 -GFLOW: 1 0.020646 0.0222662 2.99499 2.99588 2.98269 2.98491 0.000763732 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.76965 0.763296 2.51099 2.34828 1.98753 1.82604 0.0085606 +GFLOW: 0.125 0.478209 0.528252 2.79383 2.64906 2.48148 2.28768 -0.0140521 +GFLOW: 0.1875 0.304327 0.368328 2.89394 2.79944 2.7027 2.55151 -0.00877322 +GFLOW: 0.25 0.206062 0.263014 2.93704 2.87866 2.81163 2.70555 -0.00220254 +GFLOW: 0.3125 0.147694 0.193091 2.95886 2.92237 2.87133 2.79833 0.00140124 +GFLOW: 0.375 0.110833 0.145693 2.97122 2.94768 2.90695 2.85625 0.00298225 +GFLOW: 0.4375 0.0862428 0.112697 2.9788 2.96308 2.92967 2.89384 0.00348338 +GFLOW: 0.5 0.0690681 0.0890748 2.98375 2.97291 2.94496 2.9192 0.00343603 +GFLOW: 0.5625 0.056608 0.0717139 2.98714 2.97947 2.95572 2.93693 0.00313004 +GFLOW: 0.625 0.0472777 0.0586546 2.98956 2.98404 2.96357 2.94972 0.00272291 +GFLOW: 0.6875 0.0401025 0.0486322 2.99135 2.98731 2.96949 2.9592 0.00229787 +GFLOW: 0.75 0.0344587 0.0408073 2.99272 2.98974 2.97406 2.96641 0.00189687 +GFLOW: 0.8125 0.0299334 0.0346066 2.99378 2.99157 2.97766 2.97198 0.00153924 +GFLOW: 0.875 0.026245 0.0296285 2.99463 2.99299 2.98057 2.97636 0.00123184 +GFLOW: 0.9375 0.0231964 0.0255852 2.99532 2.9941 2.98294 2.97986 0.000974591 +GFLOW: 1 0.020646 0.0222662 2.99588 2.99499 2.98491 2.98269 0.000763732 Number of steps = 16 -Time to complete flow = 2.658291e-01 seconds +Time to complete flow = 2.625790e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.669339e-01 seconds -exit: Fri Oct 28 18:41:05 2022 +Time = 2.637050e-01 seconds +exit: Mon Oct 31 17:27:20 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.errtol index 8e6cbfe2d..861cd8cc6 100644 --- a/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.errtol +++ b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.errtol @@ -1,8 +1,8 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 5e-08 5e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.sample-out index 3bf6b406f..a35312e2b 100644 --- a/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk5_a.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:41:05 2022 +start: Mon Oct 31 17:27:20 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 3.030300e-04 +Time to reload gauge configuration = 2.968311e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.779961e-04 +Time to check unitarity = 2.770424e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.7696498222965087 0.7632962094654938 2.348277997999302 2.510988313889286 1.826041643730268 1.987532742061868 0.008560598649514315 -GFLOW: 0.125 0.4782092841439667 0.5282522935204401 2.649059017942774 2.793827936899695 2.287677894184408 2.4814799588627 -0.01405213889816473 -GFLOW: 0.1875 0.3043266900885464 0.3683279524434595 2.799437227420395 2.893942965847433 2.551510652027916 2.702698892137771 -0.008773216015135 -GFLOW: 0.25 0.2060617077488849 0.2630137159796955 2.878662950835097 2.937041777901789 2.705547188568577 2.811630894696371 -0.002202523234971572 -GFLOW: 0.3125 0.1476943414048016 0.1930908382695495 2.922373609897809 2.958864495572666 2.798325194391081 2.871333474173029 0.001401274379518233 -GFLOW: 0.375 0.1108329883776561 0.14569284413077 2.947678906286158 2.971219084017211 2.856248331670318 2.90695254560913 0.002982256344701431 -GFLOW: 0.4375 0.08624284754812779 0.1126966724150687 2.963076066153751 2.978798556341077 2.893841010726403 2.92967083835039 0.003483403017681107 -GFLOW: 0.5 0.06906810404619253 0.08907482994541209 2.972909007123953 2.983745157293936 2.919198044061245 2.944962943011002 0.003436053412591545 -GFLOW: 0.5625 0.05660798772015979 0.07171394960255582 2.979474838725844 2.987137918778922 2.936925228469951 2.955721759436198 0.003130048052233369 -GFLOW: 0.625 0.0472776753554925 0.05865460310515573 2.984035606400913 2.989562215586691 2.949717773026382 2.963574776331379 0.002722919149449935 -GFLOW: 0.6875 0.04010247889493337 0.0486322363475879 2.987312961991064 2.991354887354028 2.959204815987091 2.969486697793622 0.002297874271903699 -GFLOW: 0.75 0.03445867233927147 0.04080729943326626 2.989736352024149 2.992719333401329 2.966405133103483 2.974054993488672 0.001896872355822466 -GFLOW: 0.8125 0.02993337799988302 0.03460658479556295 2.991571476198021 2.993783471589571 2.97197762825874 2.977663831387829 0.001539245686419546 -GFLOW: 0.875 0.02624503940823876 0.02962849636547601 2.992988959015394 2.994630654520105 2.976362343110778 2.980568514922677 0.00123184197328208 -GFLOW: 0.9375 0.02319643646465528 0.02558518121058089 2.994102237121271 2.995316951170325 2.979861942024433 2.982943829224013 0.0009745941073566883 -GFLOW: 1 0.02064601327111625 0.02226623502192059 2.994989121221476 2.995881183253729 2.982690117764371 2.984912716147716 0.0007637315772545068 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.7696498222965087 0.7632962094654938 2.510988313889286 2.348277997999302 1.987532742061868 1.826041643730268 0.008560598649514315 +GFLOW: 0.125 0.4782092841439667 0.5282522935204401 2.793827936899695 2.649059017942774 2.4814799588627 2.287677894184408 -0.01405213889816473 +GFLOW: 0.1875 0.3043266900885464 0.3683279524434595 2.893942965847433 2.799437227420395 2.702698892137771 2.551510652027916 -0.008773216015135 +GFLOW: 0.25 0.2060617077488849 0.2630137159796955 2.937041777901789 2.878662950835097 2.811630894696371 2.705547188568577 -0.002202523234971572 +GFLOW: 0.3125 0.1476943414048016 0.1930908382695495 2.958864495572666 2.922373609897809 2.871333474173029 2.798325194391081 0.001401274379518233 +GFLOW: 0.375 0.1108329883776561 0.14569284413077 2.971219084017211 2.947678906286158 2.90695254560913 2.856248331670318 0.002982256344701431 +GFLOW: 0.4375 0.08624284754812779 0.1126966724150687 2.978798556341077 2.963076066153751 2.92967083835039 2.893841010726403 0.003483403017681107 +GFLOW: 0.5 0.06906810404619253 0.08907482994541209 2.983745157293936 2.972909007123953 2.944962943011002 2.919198044061245 0.003436053412591545 +GFLOW: 0.5625 0.05660798772015979 0.07171394960255582 2.987137918778922 2.979474838725844 2.955721759436198 2.936925228469951 0.003130048052233369 +GFLOW: 0.625 0.0472776753554925 0.05865460310515573 2.989562215586691 2.984035606400913 2.963574776331379 2.949717773026382 0.002722919149449935 +GFLOW: 0.6875 0.04010247889493337 0.0486322363475879 2.991354887354028 2.987312961991064 2.969486697793622 2.959204815987091 0.002297874271903699 +GFLOW: 0.75 0.03445867233927147 0.04080729943326626 2.992719333401329 2.989736352024149 2.974054993488672 2.966405133103483 0.001896872355822466 +GFLOW: 0.8125 0.02993337799988302 0.03460658479556295 2.993783471589571 2.991571476198021 2.977663831387829 2.97197762825874 0.001539245686419546 +GFLOW: 0.875 0.02624503940823876 0.02962849636547601 2.994630654520105 2.992988959015394 2.980568514922677 2.976362343110778 0.00123184197328208 +GFLOW: 0.9375 0.02319643646465528 0.02558518121058089 2.995316951170325 2.994102237121271 2.982943829224013 2.979861942024433 0.0009745941073566883 +GFLOW: 1 0.02064601327111625 0.02226623502192059 2.995881183253729 2.994989121221476 2.984912716147716 2.982690117764371 0.0007637315772545068 Number of steps = 16 -Time to complete flow = 2.896969e-01 seconds +Time to complete flow = 2.832580e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 2.913930e-01 seconds -exit: Fri Oct 28 18:41:05 2022 +Time = 2.849109e-01 seconds +exit: Mon Oct 31 17:27:20 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk8.symanzik.1.sample-out index 9a6ada288..0debc2714 100644 --- a/wilson_flow/test/wilson_flow_rkmk8.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:49:05 2022 +start: Mon Oct 31 18:30:53 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.021790e-04 +Time to reload gauge configuration = 2.059937e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 Time to check unitarity = 6.914139e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.853797 0.828744 2.37571 2.36235 1.8029 1.77602 0.0468073 -GFLOW: 0.125 0.606989 0.583306 2.6846 2.67974 2.28988 2.27302 0.0230033 -GFLOW: 0.1875 0.424311 0.39872 2.82862 2.82474 2.56818 2.55181 0.0151563 -GFLOW: 0.25 0.305524 0.277972 2.89893 2.89452 2.72345 2.7056 0.0123553 -GFLOW: 0.3125 0.228951 0.200857 2.93559 2.93074 2.81254 2.79379 0.010112 -GFLOW: 0.375 0.178025 0.150554 2.95611 2.95112 2.86619 2.84738 0.00788571 -GFLOW: 0.4375 0.142764 0.116569 2.96842 2.96351 2.90024 2.88197 0.00591761 -GFLOW: 0.5 0.117404 0.0927615 2.97627 2.97155 2.92293 2.90553 0.00433511 -GFLOW: 0.5625 0.0985621 0.0755322 2.98155 2.97709 2.93872 2.92233 0.0031279 -GFLOW: 0.625 0.0841813 0.0627111 2.98525 2.98106 2.95011 2.93476 0.00223025 -GFLOW: 0.6875 0.0729596 0.0529441 2.98794 2.98402 2.95857 2.94423 0.00156928 -GFLOW: 0.75 0.0640391 0.0453548 2.98995 2.98629 2.96501 2.95161 0.00108289 -GFLOW: 0.8125 0.0568344 0.0393572 2.99149 2.98807 2.97002 2.95748 0.000723513 -GFLOW: 0.875 0.0509338 0.0345472 2.99269 2.9895 2.97398 2.96222 0.000456368 -GFLOW: 0.9375 0.0460406 0.0306389 2.99364 2.99065 2.97716 2.96611 0.000256579 -GFLOW: 1 0.0419363 0.0274255 2.99441 2.9916 2.97974 2.96935 0.00010644 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.853797 0.828744 2.36235 2.37571 1.77602 1.8029 0.0468073 +GFLOW: 0.125 0.606989 0.583306 2.67974 2.6846 2.27302 2.28988 0.0230033 +GFLOW: 0.1875 0.424311 0.39872 2.82474 2.82862 2.55181 2.56818 0.0151563 +GFLOW: 0.25 0.305524 0.277972 2.89452 2.89893 2.7056 2.72345 0.0123553 +GFLOW: 0.3125 0.228951 0.200857 2.93074 2.93559 2.79379 2.81254 0.010112 +GFLOW: 0.375 0.178025 0.150554 2.95112 2.95611 2.84738 2.86619 0.00788571 +GFLOW: 0.4375 0.142764 0.116569 2.96351 2.96842 2.88197 2.90024 0.00591761 +GFLOW: 0.5 0.117404 0.0927615 2.97155 2.97627 2.90553 2.92293 0.00433511 +GFLOW: 0.5625 0.0985621 0.0755322 2.97709 2.98155 2.92233 2.93872 0.0031279 +GFLOW: 0.625 0.0841813 0.0627111 2.98106 2.98525 2.93476 2.95011 0.00223025 +GFLOW: 0.6875 0.0729596 0.0529441 2.98402 2.98794 2.94423 2.95857 0.00156928 +GFLOW: 0.75 0.0640391 0.0453548 2.98629 2.98995 2.95161 2.96501 0.00108289 +GFLOW: 0.8125 0.0568344 0.0393572 2.98807 2.99149 2.95748 2.97002 0.000723513 +GFLOW: 0.875 0.0509338 0.0345472 2.9895 2.99269 2.96222 2.97398 0.000456368 +GFLOW: 0.9375 0.0460406 0.0306389 2.99065 2.99364 2.96611 2.97716 0.000256579 +GFLOW: 1 0.0419363 0.0274255 2.9916 2.99441 2.96935 2.97974 0.00010644 Number of steps = 16 -Time to complete flow = 1.718070e+00 seconds +Time to complete flow = 1.719896e+00 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.719296e+00 seconds -exit: Fri Oct 28 18:49:06 2022 +Time = 1.721169e+00 seconds +exit: Mon Oct 31 18:30:55 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk8.symanzik.2.sample-out index 6a8c6748a..356db675c 100644 --- a/wilson_flow/test/wilson_flow_rkmk8.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:49:06 2022 +start: Mon Oct 31 18:30:55 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.980232e-04 +Time to reload gauge configuration = 3.008842e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.770424e-04 +Time to check unitarity = 2.748966e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.853796999827394 0.8287444679533847 2.375709522214786 2.362348694211784 1.802901098815517 1.77602092305045 0.04680726497697795 -GFLOW: 0.125 0.6069888962650868 0.5833057322839406 2.684601294627539 2.679737523720718 2.289877556098617 2.273023736778522 0.02300329963238665 -GFLOW: 0.1875 0.4243107533833489 0.3987200556000119 2.828617612953886 2.824735195015362 2.568175956391743 2.55181303940499 0.01515633771712692 -GFLOW: 0.25 0.3055237525004791 0.2779715682969031 2.898932661152782 2.894518280546384 2.723447316767817 2.705596881856714 0.01235529905096865 -GFLOW: 0.3125 0.2289511454565062 0.2008565082408588 2.935589163852361 2.930741891788172 2.812544231889101 2.793790514012743 0.01011199956148291 -GFLOW: 0.375 0.1780248428619353 0.1505544791692303 2.956114323136664 2.951123895811921 2.866192899145444 2.847384030579508 0.007885695637481996 -GFLOW: 0.4375 0.1427643705420746 0.1165688879159506 2.968424258022132 2.963506294256174 2.90023730070049 2.881970176135757 0.005917615435180966 -GFLOW: 0.5 0.1174043069100627 0.09276149833814265 2.976274029728277 2.971553721539491 2.922930542623864 2.905534178640497 0.004335123108577569 -GFLOW: 0.5625 0.09856205352719248 0.07553216193439112 2.981548062999505 2.977085246189545 2.938720133834645 2.922334826172756 0.003127903089931048 -GFLOW: 0.625 0.08418124695725722 0.06271112032015738 2.985248035251629 2.981062157342711 2.950108933835364 2.934761037725421 0.002230258626268044 -GFLOW: 0.6875 0.0729595930870562 0.05294406846392192 2.987936800774248 2.98402474191419 2.958571273688764 2.944225511413619 0.00156927634798273 -GFLOW: 0.75 0.06403913072054176 0.04535482931113968 2.98994745478499 2.986294754415244 2.965015008763467 2.951606852582657 0.001082890444691601 -GFLOW: 0.8125 0.05683441199933089 0.03935722414439235 2.991486637033567 2.988074045066574 2.970022591859314 2.957476822143788 0.0007235133900910622 -GFLOW: 0.875 0.05093380257879877 0.03454718605595396 2.992688028340035 2.989495090572436 2.973981671103275 2.962222305850366 0.0004563711263503719 -GFLOW: 0.9375 0.04604056393294855 0.03063886819544278 2.993641327413877 2.990648211241214 2.977158620258511 2.966113790627775 0.0002565799129663199 -GFLOW: 1 0.04193631709634497 0.02742553119646989 2.99440863194398 2.991596958414653 2.979741547043779 2.969345552574713 0.0001064363488566213 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.853796999827394 0.8287444679533847 2.362348694211784 2.375709522214786 1.77602092305045 1.802901098815517 0.04680726497697795 +GFLOW: 0.125 0.6069888962650868 0.5833057322839406 2.679737523720718 2.684601294627539 2.273023736778522 2.289877556098617 0.02300329963238665 +GFLOW: 0.1875 0.4243107533833489 0.3987200556000119 2.824735195015362 2.828617612953886 2.55181303940499 2.568175956391743 0.01515633771712692 +GFLOW: 0.25 0.3055237525004791 0.2779715682969031 2.894518280546384 2.898932661152782 2.705596881856714 2.723447316767817 0.01235529905096865 +GFLOW: 0.3125 0.2289511454565062 0.2008565082408588 2.930741891788172 2.935589163852361 2.793790514012743 2.812544231889101 0.01011199956148291 +GFLOW: 0.375 0.1780248428619353 0.1505544791692303 2.951123895811921 2.956114323136664 2.847384030579508 2.866192899145444 0.007885695637481996 +GFLOW: 0.4375 0.1427643705420746 0.1165688879159506 2.963506294256174 2.968424258022132 2.881970176135757 2.90023730070049 0.005917615435180966 +GFLOW: 0.5 0.1174043069100627 0.09276149833814265 2.971553721539491 2.976274029728277 2.905534178640497 2.922930542623864 0.004335123108577569 +GFLOW: 0.5625 0.09856205352719248 0.07553216193439112 2.977085246189545 2.981548062999505 2.922334826172756 2.938720133834645 0.003127903089931048 +GFLOW: 0.625 0.08418124695725722 0.06271112032015738 2.981062157342711 2.985248035251629 2.934761037725421 2.950108933835364 0.002230258626268044 +GFLOW: 0.6875 0.0729595930870562 0.05294406846392192 2.98402474191419 2.987936800774248 2.944225511413619 2.958571273688764 0.00156927634798273 +GFLOW: 0.75 0.06403913072054176 0.04535482931113968 2.986294754415244 2.98994745478499 2.951606852582657 2.965015008763467 0.001082890444691601 +GFLOW: 0.8125 0.05683441199933089 0.03935722414439235 2.988074045066574 2.991486637033567 2.957476822143788 2.970022591859314 0.0007235133900910622 +GFLOW: 0.875 0.05093380257879877 0.03454718605595396 2.989495090572436 2.992688028340035 2.962222305850366 2.973981671103275 0.0004563711263503719 +GFLOW: 0.9375 0.04604056393294855 0.03063886819544278 2.990648211241214 2.993641327413877 2.966113790627775 2.977158620258511 0.0002565799129663199 +GFLOW: 1 0.04193631709634497 0.02742553119646989 2.991596958414653 2.99440863194398 2.969345552574713 2.979741547043779 0.0001064363488566213 Number of steps = 16 -Time to complete flow = 1.803812e+00 seconds +Time to complete flow = 1.802070e+00 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.805495e+00 seconds -exit: Fri Oct 28 18:49:08 2022 +Time = 1.803754e+00 seconds +exit: Mon Oct 31 18:30:57 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk8.wilson.1.sample-out index 7e492fca2..5d721c719 100644 --- a/wilson_flow/test/wilson_flow_rkmk8.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:49:04 2022 +start: Mon Oct 31 18:30:52 2022 Options selected... Generic single precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.100468e-04 +Time to reload gauge configuration = 2.498627e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 -Time to check unitarity = 6.914139e-05 +Time to check unitarity = 6.890297e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.905713 0.879584 2.21653 2.19724 1.61673 1.58365 0.055686 -GFLOW: 0.125 0.711522 0.687046 2.53051 2.52147 2.05963 2.03793 0.0303347 -GFLOW: 0.1875 0.536227 0.511725 2.7169 2.71186 2.37237 2.35495 0.0177956 -GFLOW: 0.25 0.401499 0.375444 2.82504 2.82068 2.57821 2.56083 0.0125153 -GFLOW: 0.3125 0.304736 0.277218 2.88791 2.88328 2.71015 2.69173 0.0101718 -GFLOW: 0.375 0.236432 0.208349 2.92517 2.9202 2.79476 2.77562 0.00857903 -GFLOW: 0.4375 0.187821 0.160065 2.94791 2.94279 2.84995 2.8307 0.00709564 -GFLOW: 0.5 0.152552 0.125735 2.96229 2.9572 2.88689 2.86802 0.00569324 -GFLOW: 0.5625 0.126374 0.10084 2.97173 2.96679 2.91233 2.89419 0.00445124 -GFLOW: 0.625 0.106506 0.0824039 2.97816 2.97344 2.93037 2.91312 0.00341284 -GFLOW: 0.6875 0.0911154 0.0684726 2.98269 2.97822 2.94351 2.92723 0.00257752 -GFLOW: 0.75 0.0789765 0.0577501 2.98597 2.98177 2.95332 2.93802 0.00192096 -GFLOW: 0.8125 0.0692496 0.0493602 2.98841 2.98448 2.9608 2.94644 0.00141127 -GFLOW: 0.875 0.0613465 0.0426987 2.99027 2.98658 2.96661 2.95314 0.00101775 -GFLOW: 0.9375 0.054845 0.0373396 2.99171 2.98826 2.97119 2.95856 0.000714269 -GFLOW: 1 0.0494366 0.0329769 2.99285 2.98961 2.97487 2.96299 0.000479994 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.905713 0.879584 2.19724 2.21653 1.58365 1.61673 0.055686 +GFLOW: 0.125 0.711522 0.687046 2.52147 2.53051 2.03793 2.05963 0.0303347 +GFLOW: 0.1875 0.536227 0.511725 2.71186 2.7169 2.35495 2.37237 0.0177956 +GFLOW: 0.25 0.401499 0.375444 2.82068 2.82504 2.56083 2.57821 0.0125153 +GFLOW: 0.3125 0.304736 0.277218 2.88328 2.88791 2.69173 2.71015 0.0101718 +GFLOW: 0.375 0.236432 0.208349 2.9202 2.92517 2.77562 2.79476 0.00857903 +GFLOW: 0.4375 0.187821 0.160065 2.94279 2.94791 2.8307 2.84995 0.00709564 +GFLOW: 0.5 0.152552 0.125735 2.9572 2.96229 2.86802 2.88689 0.00569324 +GFLOW: 0.5625 0.126374 0.10084 2.96679 2.97173 2.89419 2.91233 0.00445124 +GFLOW: 0.625 0.106506 0.0824039 2.97344 2.97816 2.91312 2.93037 0.00341284 +GFLOW: 0.6875 0.0911154 0.0684726 2.97822 2.98269 2.92723 2.94351 0.00257752 +GFLOW: 0.75 0.0789765 0.0577501 2.98177 2.98597 2.93802 2.95332 0.00192096 +GFLOW: 0.8125 0.0692496 0.0493602 2.98448 2.98841 2.94644 2.9608 0.00141127 +GFLOW: 0.875 0.0613465 0.0426987 2.98658 2.99027 2.95314 2.96661 0.00101775 +GFLOW: 0.9375 0.054845 0.0373396 2.98826 2.99171 2.95856 2.97119 0.000714269 +GFLOW: 1 0.0494366 0.0329769 2.98961 2.99285 2.96299 2.97487 0.000479994 Number of steps = 16 -Time to complete flow = 5.512750e-01 seconds +Time to complete flow = 5.667729e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.525560e-01 seconds -exit: Fri Oct 28 18:49:04 2022 +Time = 5.681500e-01 seconds +exit: Mon Oct 31 18:30:52 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8.wilson.2.errtol b/wilson_flow/test/wilson_flow_rkmk8.wilson.2.errtol index 7ea772603..e359d93a7 100644 --- a/wilson_flow/test/wilson_flow_rkmk8.wilson.2.errtol +++ b/wilson_flow/test/wilson_flow_rkmk8.wilson.2.errtol @@ -1,17 +1,17 @@ -GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 4e-08 4e-08 3e-08 3e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 -GFLOW: 0 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 +GFLOW: 0 2 2 3 3 2 2 2 +GFLOW: 2 2 2 4 4 3 3 2 +GFLOW: 2 2 2 5 5 4 4 2 +GFLOW: 2 2 2 5 5 5 5 2 +GFLOW: 2 2 2 6 6 5 5 2 +GFLOW: 2 2 2 6 6 5 5 2 +GFLOW: 2 2 2 6 6 6 6 2 +GFLOW: 2 2 2 6 6 6 6 2 +GFLOW: 2 2 2 6 6 6 6 2 +GFLOW: 2 2 2 6 6 6 6 2 +GFLOW: 2 2 2 6 6 6 6 2 +GFLOW: 2 2 2 6 6 6 6 2 +GFLOW: 2 2 2 6 6 6 6 2 +GFLOW: 2 2 2 6 6 6 6 2 +GFLOW: 2 2 2 6 6 6 6 2 +GFLOW: 2 2 2 6 6 6 6 2 +GFLOW: 0 2 2 6 6 6 6 2 diff --git a/wilson_flow/test/wilson_flow_rkmk8.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk8.wilson.2.sample-out index ec534abc2..e0b0296c8 100644 --- a/wilson_flow/test/wilson_flow_rkmk8.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:49:04 2022 +start: Mon Oct 31 18:30:52 2022 Options selected... Generic double precision @@ -32,35 +32,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.958775e-04 +Time to reload gauge configuration = 3.128052e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.760887e-04 +Time to check unitarity = 2.770424e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.9057128352538293 0.8795836111703303 2.216530220464609 2.197244845077935 1.616734190614243 1.583644992779119 0.05568598814331142 -GFLOW: 0.125 0.711521894758657 0.6870457837563346 2.530505094011376 2.521467417788137 2.059631910083767 2.037925084058573 0.03033472858607204 -GFLOW: 0.1875 0.5362273410428585 0.5117253986379271 2.716896099957139 2.711856681260857 2.372366649633271 2.354951046856983 0.01779563785597331 -GFLOW: 0.25 0.4014984915250145 0.3754443656235628 2.825035289026436 2.820681754618063 2.578214919702627 2.560828951479388 0.01251535374799322 -GFLOW: 0.3125 0.3047360601118472 0.2772183106156761 2.887912516838041 2.883276279646335 2.710148274034449 2.691728033778716 0.0101718685020267 -GFLOW: 0.375 0.2364318664808364 0.2083493451103856 2.9251680957619 2.920202867709927 2.794759276666651 2.775621910959617 0.008579036884493175 -GFLOW: 0.4375 0.1878208030601108 0.1600647459364674 2.947908848670723 2.942793302837236 2.84995180728266 2.830700144053372 0.007095649762703612 -GFLOW: 0.5 0.1525515229586747 0.1257350848947223 2.96229186783927 2.957202279442587 2.886887955900975 2.868024925539171 0.005693244055470396 -GFLOW: 0.5625 0.12637430138986 0.1008403470358065 2.971734480746603 2.966794066463905 2.912331227280111 2.894185699591912 0.004451237524901423 -GFLOW: 0.625 0.1065060536215111 0.08240391836500167 2.978162407692996 2.97344331627458 2.930371057146472 2.913122499370612 0.00341283871258007 -GFLOW: 0.6875 0.09111544703128831 0.06847258830665925 2.982687008784231 2.978223865847871 2.943511657386681 2.927233856314007 0.002577524382882309 -GFLOW: 0.75 0.07897645462913325 0.05775006239408356 2.985968384095719 2.981771344676441 2.953318894459795 2.93801829609229 0.001920960256046899 -GFLOW: 0.8125 0.06924962436089922 0.04936024955388266 2.988410990601787 2.984475550186308 2.960796668290897 2.946440355903997 0.001411270941251535 -GFLOW: 0.875 0.06134646509096026 0.04269868692576386 2.990270609102761 2.986584234061343 2.966605839759952 2.953140191796606 0.001017745035037159 -GFLOW: 0.9375 0.05484504130986963 0.03733955477913426 2.991714065133391 2.98826038974343 2.971192992276282 2.958555393474064 0.0007142705479596382 -GFLOW: 1 0.04943662256222567 0.03297691047243369 2.99285338748525 2.989614734947725 2.974867502161272 2.962993314648029 0.0004799961967829997 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.9057128352538293 0.8795836111703303 2.197244845077935 2.216530220464609 1.583644992779119 1.616734190614243 0.05568598814331142 +GFLOW: 0.125 0.711521894758657 0.6870457837563346 2.521467417788137 2.530505094011376 2.037925084058573 2.059631910083767 0.03033472858607204 +GFLOW: 0.1875 0.5362273410428585 0.5117253986379271 2.711856681260857 2.716896099957139 2.354951046856983 2.372366649633271 0.01779563785597331 +GFLOW: 0.25 0.4014984915250145 0.3754443656235628 2.820681754618063 2.825035289026436 2.560828951479388 2.578214919702627 0.01251535374799322 +GFLOW: 0.3125 0.3047360601118472 0.2772183106156761 2.883276279646335 2.887912516838041 2.691728033778716 2.710148274034449 0.0101718685020267 +GFLOW: 0.375 0.2364318664808364 0.2083493451103856 2.920202867709927 2.9251680957619 2.775621910959617 2.794759276666651 0.008579036884493175 +GFLOW: 0.4375 0.1878208030601108 0.1600647459364674 2.942793302837236 2.947908848670723 2.830700144053372 2.84995180728266 0.007095649762703612 +GFLOW: 0.5 0.1525515229586747 0.1257350848947223 2.957202279442587 2.96229186783927 2.868024925539171 2.886887955900975 0.005693244055470396 +GFLOW: 0.5625 0.12637430138986 0.1008403470358065 2.966794066463905 2.971734480746603 2.894185699591912 2.912331227280111 0.004451237524901423 +GFLOW: 0.625 0.1065060536215111 0.08240391836500167 2.97344331627458 2.978162407692996 2.913122499370612 2.930371057146472 0.00341283871258007 +GFLOW: 0.6875 0.09111544703128831 0.06847258830665925 2.978223865847871 2.982687008784231 2.927233856314007 2.943511657386681 0.002577524382882309 +GFLOW: 0.75 0.07897645462913325 0.05775006239408356 2.981771344676441 2.985968384095719 2.93801829609229 2.953318894459795 0.001920960256046899 +GFLOW: 0.8125 0.06924962436089922 0.04936024955388266 2.984475550186308 2.988410990601787 2.946440355903997 2.960796668290897 0.001411270941251535 +GFLOW: 0.875 0.06134646509096026 0.04269868692576386 2.986584234061343 2.990270609102761 2.953140191796606 2.966605839759952 0.001017745035037159 +GFLOW: 0.9375 0.05484504130986963 0.03733955477913426 2.98826038974343 2.991714065133391 2.958555393474064 2.971192992276282 0.0007142705479596382 +GFLOW: 1 0.04943662256222567 0.03297691047243369 2.989614734947725 2.99285338748525 2.962993314648029 2.974867502161272 0.0004799961967829997 Number of steps = 16 -Time to complete flow = 5.865788e-01 seconds +Time to complete flow = 5.976830e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.882661e-01 seconds -exit: Fri Oct 28 18:49:05 2022 +Time = 5.993841e-01 seconds +exit: Mon Oct 31 18:30:53 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.errtol index 867204b69..c913c1677 100644 --- a/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.errtol @@ -1,7 +1,7 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.sample-out b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.sample-out index 1db2b9e9b..97f60ea42 100644 --- a/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:49:09 2022 +start: Mon Oct 31 18:30:58 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.048016e-04 +Time to reload gauge configuration = 1.988411e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 Time to check unitarity = 6.890297e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.681242 0.690266 2.49734 2.66172 2.02001 2.20716 -0.00336156 -GFLOW: 0.125 0.381264 0.438992 2.76529 2.86689 2.46768 2.62781 -0.00550292 -GFLOW: 0.1875 0.235807 0.29112 2.87534 2.93041 2.68451 2.78867 0.0030545 -GFLOW: 0.25 0.159831 0.202654 2.92625 2.95753 2.79785 2.86439 0.0057049 -GFLOW: 0.3125 0.115853 0.147507 2.95237 2.9714 2.86164 2.90543 0.00579171 -GFLOW: 0.375 0.0882055 0.111464 2.96708 2.97936 2.90016 2.93001 0.00516524 -GFLOW: 0.4375 0.0696725 0.0868008 2.97604 2.98435 2.92493 2.94588 0.00439525 -GFLOW: 0.5 0.0566083 0.0692367 2.98187 2.98768 2.94174 2.95674 0.003649 -GFLOW: 0.5625 0.0470206 0.0563093 2.98587 2.99002 2.95365 2.96453 0.00297575 -GFLOW: 0.625 0.0397501 0.046538 2.98873 2.99173 2.9624 2.97033 0.00238921 -GFLOW: 0.6875 0.0340866 0.0389915 2.99084 2.99303 2.96899 2.97478 0.00189117 -GFLOW: 0.75 0.0295762 0.0330588 2.99244 2.99404 2.97408 2.97828 0.00147775 -GFLOW: 0.8125 0.0259173 0.0283237 2.99369 2.99484 2.97808 2.98109 0.00114154 -GFLOW: 0.875 0.0229028 0.024494 2.99466 2.99549 2.98126 2.98339 0.000873038 -GFLOW: 0.9375 0.0203866 0.0213595 2.99544 2.99603 2.98384 2.98529 0.000661906 -GFLOW: 1 0.0182625 0.018766 2.99607 2.99648 2.98594 2.98688 0.00049805 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.681242 0.690266 2.66172 2.49734 2.20716 2.02001 -0.00336156 +GFLOW: 0.125 0.381264 0.438992 2.86689 2.76529 2.62781 2.46768 -0.00550292 +GFLOW: 0.1875 0.235807 0.29112 2.93041 2.87534 2.78867 2.68451 0.0030545 +GFLOW: 0.25 0.159831 0.202654 2.95753 2.92625 2.86439 2.79785 0.0057049 +GFLOW: 0.3125 0.115853 0.147507 2.9714 2.95237 2.90543 2.86164 0.00579171 +GFLOW: 0.375 0.0882055 0.111464 2.97936 2.96708 2.93001 2.90016 0.00516524 +GFLOW: 0.4375 0.0696725 0.0868008 2.98435 2.97604 2.94588 2.92493 0.00439525 +GFLOW: 0.5 0.0566083 0.0692367 2.98768 2.98187 2.95674 2.94174 0.003649 +GFLOW: 0.5625 0.0470206 0.0563093 2.99002 2.98587 2.96453 2.95365 0.00297575 +GFLOW: 0.625 0.0397501 0.046538 2.99173 2.98873 2.97033 2.9624 0.00238921 +GFLOW: 0.6875 0.0340866 0.0389915 2.99303 2.99084 2.97478 2.96899 0.00189117 +GFLOW: 0.75 0.0295762 0.0330588 2.99404 2.99244 2.97828 2.97408 0.00147775 +GFLOW: 0.8125 0.0259173 0.0283237 2.99484 2.99369 2.98109 2.97808 0.00114154 +GFLOW: 0.875 0.0229028 0.024494 2.99549 2.99466 2.98339 2.98126 0.000873038 +GFLOW: 0.9375 0.0203866 0.0213595 2.99603 2.99544 2.98529 2.98384 0.000661906 +GFLOW: 1 0.0182625 0.018766 2.99648 2.99607 2.98688 2.98594 0.00049805 Number of steps = 16 -Time to complete flow = 1.696417e+00 seconds +Time to complete flow = 1.718179e+00 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.697658e+00 seconds -exit: Fri Oct 28 18:49:11 2022 +Time = 1.719392e+00 seconds +exit: Mon Oct 31 18:30:59 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.errtol b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.errtol index efbf1dccc..e1e9d1b7d 100644 --- a/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.errtol +++ b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.errtol @@ -1,7 +1,7 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.sample-out b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.sample-out index a9f6a634f..2b61436fa 100644 --- a/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8_a.symanzik.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:49:11 2022 +start: Mon Oct 31 18:30:59 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.911091e-04 +Time to reload gauge configuration = 3.039837e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.791882e-04 +Time to check unitarity = 2.768040e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.6812418021180373 0.6902660737443257 2.497344697303779 2.661715780682546 2.020007201180281 2.207163533522014 -0.003361552990312081 -GFLOW: 0.125 0.381264143255116 0.4389916971042655 2.765288574847927 2.866888147246001 2.467679955935933 2.627814548446188 -0.005502936787522791 -GFLOW: 0.1875 0.2358070436266678 0.2911202291316999 2.875337588138379 2.930407146674236 2.684508726613009 2.788672877056051 0.003054503845265477 -GFLOW: 0.25 0.1598305489577102 0.2026535930857463 2.926246329742821 2.957527773040706 2.797845747540329 2.864386435345956 0.005704905048488197 -GFLOW: 0.3125 0.1158534303234861 0.1475073356880028 2.952371439641945 2.971395387932889 2.861637528553617 2.905427769576104 0.005791699272981522 -GFLOW: 0.375 0.08820550008943771 0.1114639689806966 2.967077157679845 2.979364547768745 2.900158872620843 2.930008079771886 0.005165236740942918 -GFLOW: 0.4375 0.06967253480451087 0.0868008088062024 2.97603694222586 2.984349362874046 2.924932390223951 2.945877117398844 0.004395249857251024 -GFLOW: 0.5 0.05660831672824105 0.06923673574213102 2.981866287293514 2.987677313030112 2.941740090327575 2.956739064312231 0.003649009233858034 -GFLOW: 0.5625 0.04702058615859148 0.05630929633445293 2.985865388176594 2.990016531256584 2.953653083983708 2.964527847394579 0.002975754457206501 -GFLOW: 0.625 0.03975004658004681 0.04653799519624829 2.988726205301637 2.991730115583064 2.962396640547222 2.970326327143102 0.002389213619270704 -GFLOW: 0.6875 0.0340866257208642 0.03899153490773693 2.990840732858017 2.993027998652452 2.968993680524699 2.974776499975319 0.001891166226252946 -GFLOW: 0.75 0.02957620770192136 0.03305879819753455 2.992444163523293 2.994038040766289 2.974082097029708 2.978277828677546 0.001477745956373731 -GFLOW: 0.8125 0.02591725289754813 0.02832367295307065 2.993685101979086 2.994841698733259 2.978078145294244 2.981089508569573 0.001141541471345095 -GFLOW: 0.875 0.02290279218976056 0.02449400208348012 2.994661741141854 2.995492949400037 2.98126422799796 2.983386020805658 0.0008730362845388783 -GFLOW: 0.9375 0.02038655844068718 0.02135954844244257 2.9954414146746 2.996028812484237 2.983838162077932 2.985288667401218 0.0006619062106640302 -GFLOW: 1 0.01826249954510382 0.01876604019145745 2.996071687201424 2.996475450195106 2.985942100812565 2.986884185023936 0.0004980499037072802 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.6812418021180373 0.6902660737443257 2.661715780682546 2.497344697303779 2.207163533522014 2.020007201180281 -0.003361552990312081 +GFLOW: 0.125 0.381264143255116 0.4389916971042655 2.866888147246001 2.765288574847927 2.627814548446188 2.467679955935933 -0.005502936787522791 +GFLOW: 0.1875 0.2358070436266678 0.2911202291316999 2.930407146674236 2.875337588138379 2.788672877056051 2.684508726613009 0.003054503845265477 +GFLOW: 0.25 0.1598305489577102 0.2026535930857463 2.957527773040706 2.926246329742821 2.864386435345956 2.797845747540329 0.005704905048488197 +GFLOW: 0.3125 0.1158534303234861 0.1475073356880028 2.971395387932889 2.952371439641945 2.905427769576104 2.861637528553617 0.005791699272981522 +GFLOW: 0.375 0.08820550008943771 0.1114639689806966 2.979364547768745 2.967077157679845 2.930008079771886 2.900158872620843 0.005165236740942918 +GFLOW: 0.4375 0.06967253480451087 0.0868008088062024 2.984349362874046 2.97603694222586 2.945877117398844 2.924932390223951 0.004395249857251024 +GFLOW: 0.5 0.05660831672824105 0.06923673574213102 2.987677313030112 2.981866287293514 2.956739064312231 2.941740090327575 0.003649009233858034 +GFLOW: 0.5625 0.04702058615859148 0.05630929633445293 2.990016531256584 2.985865388176594 2.964527847394579 2.953653083983708 0.002975754457206501 +GFLOW: 0.625 0.03975004658004681 0.04653799519624829 2.991730115583064 2.988726205301637 2.970326327143102 2.962396640547222 0.002389213619270704 +GFLOW: 0.6875 0.0340866257208642 0.03899153490773693 2.993027998652452 2.990840732858017 2.974776499975319 2.968993680524699 0.001891166226252946 +GFLOW: 0.75 0.02957620770192136 0.03305879819753455 2.994038040766289 2.992444163523293 2.978277828677546 2.974082097029708 0.001477745956373731 +GFLOW: 0.8125 0.02591725289754813 0.02832367295307065 2.994841698733259 2.993685101979086 2.981089508569573 2.978078145294244 0.001141541471345095 +GFLOW: 0.875 0.02290279218976056 0.02449400208348012 2.995492949400037 2.994661741141854 2.983386020805658 2.98126422799796 0.0008730362845388783 +GFLOW: 0.9375 0.02038655844068718 0.02135954844244257 2.996028812484237 2.9954414146746 2.985288667401218 2.983838162077932 0.0006619062106640302 +GFLOW: 1 0.01826249954510382 0.01876604019145745 2.996475450195106 2.996071687201424 2.986884185023936 2.985942100812565 0.0004980499037072802 Number of steps = 16 -Time to complete flow = 1.809931e+00 seconds +Time to complete flow = 1.783960e+00 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 1.811605e+00 seconds -exit: Fri Oct 28 18:49:13 2022 +Time = 1.785632e+00 seconds +exit: Mon Oct 31 18:31:01 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.errtol b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.errtol index 63a791fb2..fd9554641 100644 --- a/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.errtol +++ b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.errtol @@ -1,8 +1,8 @@ GFLOW: 0 0.0002 0.0002 0.0003 0.0003 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0005 0.0004 0.0004 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0005 0.0006 0.0005 0.0005 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0005 0.0005 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0005 0.0002 -GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0005 0.0006 0.0002 +GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0005 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.sample-out b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.sample-out index 9660b1524..2cff4aa36 100644 --- a/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.1.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:49:08 2022 +start: Mon Oct 31 18:30:57 2022 Options selected... Generic single precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 2.069473e-04 +Time to reload gauge configuration = 2.040863e-04 CHECK PLAQ: 1.723748e+00 1.690586e+00 CHECK NERSC LINKTR: 6.921659e-02 CKSUM: b3be9b3b Unitarity checked. Max deviation 2.38e-07 Time to check unitarity = 6.914139e-05 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.05787 1.03094 1.72375 1.69059 1.0736 1.02757 0.0955429 -GFLOW: 0.0625 0.76966 0.763254 2.34847 2.51129 1.82623 1.98777 0.00857575 -GFLOW: 0.125 0.478183 0.528215 2.64913 2.79394 2.28777 2.4816 -0.0140554 -GFLOW: 0.1875 0.304309 0.36831 2.79946 2.89397 2.55154 2.70274 -0.00877368 -GFLOW: 0.25 0.206053 0.263005 2.87867 2.93705 2.70556 2.81164 -0.00220156 -GFLOW: 0.3125 0.14769 0.193086 2.92238 2.95887 2.79833 2.87134 0.00140211 -GFLOW: 0.375 0.11083 0.145689 2.94768 2.97122 2.85625 2.90696 0.00298274 -GFLOW: 0.4375 0.086241 0.112694 2.96308 2.9788 2.89384 2.92967 0.00348364 -GFLOW: 0.5 0.0690668 0.0890732 2.97291 2.98375 2.9192 2.94496 0.00343617 -GFLOW: 0.5625 0.0566071 0.0717128 2.97948 2.98714 2.93693 2.95572 0.0031301 -GFLOW: 0.625 0.047277 0.0586537 2.98404 2.98956 2.94972 2.96358 0.00272293 -GFLOW: 0.6875 0.040102 0.0486316 2.98731 2.99136 2.95921 2.96949 0.00229787 -GFLOW: 0.75 0.0344583 0.0408068 2.98974 2.99272 2.96641 2.97406 0.00189686 -GFLOW: 0.8125 0.0299331 0.0346062 2.99157 2.99378 2.97198 2.97766 0.00153923 -GFLOW: 0.875 0.0262448 0.0296282 2.99299 2.99463 2.97636 2.98057 0.00123183 -GFLOW: 0.9375 0.0231962 0.0255849 2.9941 2.99532 2.97986 2.98294 0.000974579 -GFLOW: 1 0.0206458 0.022266 2.99499 2.99588 2.98269 2.98491 0.000763722 +GFLOW: 0 1.05787 1.03094 1.69059 1.72375 1.02757 1.0736 0.0955429 +GFLOW: 0.0625 0.76966 0.763254 2.51129 2.34847 1.98777 1.82623 0.00857575 +GFLOW: 0.125 0.478183 0.528215 2.79394 2.64913 2.4816 2.28777 -0.0140554 +GFLOW: 0.1875 0.304309 0.36831 2.89397 2.79946 2.70274 2.55154 -0.00877368 +GFLOW: 0.25 0.206053 0.263005 2.93705 2.87867 2.81164 2.70556 -0.00220156 +GFLOW: 0.3125 0.14769 0.193086 2.95887 2.92238 2.87134 2.79833 0.00140211 +GFLOW: 0.375 0.11083 0.145689 2.97122 2.94768 2.90696 2.85625 0.00298274 +GFLOW: 0.4375 0.086241 0.112694 2.9788 2.96308 2.92967 2.89384 0.00348364 +GFLOW: 0.5 0.0690668 0.0890732 2.98375 2.97291 2.94496 2.9192 0.00343617 +GFLOW: 0.5625 0.0566071 0.0717128 2.98714 2.97948 2.95572 2.93693 0.0031301 +GFLOW: 0.625 0.047277 0.0586537 2.98956 2.98404 2.96358 2.94972 0.00272293 +GFLOW: 0.6875 0.040102 0.0486316 2.99136 2.98731 2.96949 2.95921 0.00229787 +GFLOW: 0.75 0.0344583 0.0408068 2.99272 2.98974 2.97406 2.96641 0.00189686 +GFLOW: 0.8125 0.0299331 0.0346062 2.99378 2.99157 2.97766 2.97198 0.00153923 +GFLOW: 0.875 0.0262448 0.0296282 2.99463 2.99299 2.98057 2.97636 0.00123183 +GFLOW: 0.9375 0.0231962 0.0255849 2.99532 2.9941 2.98294 2.97986 0.000974579 +GFLOW: 1 0.0206458 0.022266 2.99588 2.99499 2.98491 2.98269 0.000763722 Number of steps = 16 -Time to complete flow = 5.576661e-01 seconds +Time to complete flow = 5.573649e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.589211e-01 seconds -exit: Fri Oct 28 18:49:09 2022 +Time = 5.585890e-01 seconds +exit: Mon Oct 31 18:30:57 2022 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.errtol b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.errtol index 8e6cbfe2d..861cd8cc6 100644 --- a/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.errtol +++ b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.errtol @@ -1,8 +1,8 @@ GFLOW: 0 2e-08 2e-08 3e-08 3e-08 2e-08 2e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 5e-08 5e-08 4e-08 4e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 5e-08 6e-08 5e-08 5e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 5e-08 5e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 5e-08 2e-08 -GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 5e-08 6e-08 2e-08 +GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 5e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 GFLOW: 2e-08 2e-08 2e-08 6e-08 6e-08 6e-08 6e-08 2e-08 diff --git a/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.sample-out b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.sample-out index 8a2759378..4332b84fb 100644 --- a/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.sample-out +++ b/wilson_flow/test/wilson_flow_rkmk8_a.wilson.2.sample-out @@ -3,7 +3,7 @@ MIMD version 7 Machine = Scalar processor, with 1 nodes Host(0) = deviceab Username = bazavov -start: Fri Oct 28 18:49:09 2022 +start: Mon Oct 31 18:30:57 2022 Options selected... Generic double precision @@ -33,35 +33,35 @@ forget Restored binary gauge configuration serially from file ../../binary_samples/lat.sample.l4448 Time stamp Wed Oct 10 14:27:08 2001 Checksums 13f3b413 161f7dde OK -Time to reload gauge configuration = 3.180504e-04 +Time to reload gauge configuration = 3.061295e-04 CHECK PLAQ: 1.7237482807974562e+00 1.6905860654166089e+00 CHECK NERSC LINKTR: 6.9216590060585517e-02 CKSUM: b3be9b3b Reunitarized for double precision. Max deviation 2.26e-07 changed to 4.44e-16 -Time to check unitarity = 2.760887e-04 +Time to check unitarity = 2.779961e-04 #LABEL time Clover_t Clover_s Plaq_t Plaq_s Rect_t Rect_s charge -GFLOW: 0 1.0578659327458 1.030934998403563 1.723748273963273 1.690586048164112 1.073598789709706 1.027570247980367 0.09554287095824406 -GFLOW: 0.0625 0.7696603796116908 0.7632535021238461 2.348466063984455 2.511293190836414 1.826235001739149 1.987771962562682 0.008575744180029276 -GFLOW: 0.125 0.4781830471657377 0.528214962701708 2.649131102799696 2.79393768773594 2.287772176668018 2.481599895588671 -0.01405538776524827 -GFLOW: 0.1875 0.3043092980070642 0.3683099540457414 2.799458166710226 2.89396968385163 2.551543626567748 2.702737485447983 -0.008773674956162785 -GFLOW: 0.25 0.2060528038977533 0.2630046829841211 2.878670416710396 2.937048835074757 2.705560815320416 2.811644187335482 -0.002201534426932919 -GFLOW: 0.3125 0.1476895431827769 0.1930855805839861 2.922377054721099 2.958866930590238 2.798332232782071 2.871339146242797 0.001402123541499694 -GFLOW: 0.375 0.1108301378543739 0.1456894536555485 2.947680768573151 2.971220188891635 2.856252493148712 2.906955494605487 0.002982749363057385 -GFLOW: 0.4375 0.08624100921037388 0.1126943572937007 2.963077168564205 2.978799164110542 2.89384366051553 2.929672595029587 0.003483655330986881 -GFLOW: 0.5 0.06906684440371286 0.08907319222432916 2.972909701168987 2.983745533829143 2.919199814051508 2.94496408585759 0.003436173253542127 -GFLOW: 0.5625 0.05660708505850056 0.0717127610248762 2.979475296993226 2.98713817035162 2.936926454224134 2.955722548665954 0.003130098509721796 -GFLOW: 0.625 0.04727700578116394 0.05865372263087858 2.984035920941214 2.989562392654951 2.949718647070822 2.963575345530687 0.002722933665540839 -GFLOW: 0.6875 0.04010196818886419 0.04863157278989827 2.987313184877914 2.99135501692021 2.959205454567949 2.969487122332199 0.00229787052912496 -GFLOW: 0.75 0.03445827363506211 0.04080679188282949 2.989736514170669 2.992719431162442 2.966405609268193 2.974055318871121 0.001896859924414804 -GFLOW: 0.8125 0.02993306047946916 0.03460619147721075 2.991571596746747 2.993783547231056 2.971977989508156 2.977664086507707 0.001539229841573183 -GFLOW: 0.875 0.02624478213556808 0.02962818797598335 2.992989050275572 2.994630714295768 2.97636262128199 2.980568718864251 0.001231825606353026 -GFLOW: 0.9375 0.02319622482194006 0.02558493679604207 2.994102307277334 2.995316999268592 2.979862159031156 2.982943995007651 0.0009745787323062832 -GFLOW: 1 0.02064583680682874 0.02226603935201163 2.994989175875793 2.995881222566901 2.982690289040906 2.984912852904781 0.000763717897752422 +GFLOW: 0 1.0578659327458 1.030934998403563 1.690586048164112 1.723748273963273 1.027570247980367 1.073598789709706 0.09554287095824406 +GFLOW: 0.0625 0.7696603796116908 0.7632535021238461 2.511293190836414 2.348466063984455 1.987771962562682 1.826235001739149 0.008575744180029276 +GFLOW: 0.125 0.4781830471657377 0.528214962701708 2.79393768773594 2.649131102799696 2.481599895588671 2.287772176668018 -0.01405538776524827 +GFLOW: 0.1875 0.3043092980070642 0.3683099540457414 2.89396968385163 2.799458166710226 2.702737485447983 2.551543626567748 -0.008773674956162785 +GFLOW: 0.25 0.2060528038977533 0.2630046829841211 2.937048835074757 2.878670416710396 2.811644187335482 2.705560815320416 -0.002201534426932919 +GFLOW: 0.3125 0.1476895431827769 0.1930855805839861 2.958866930590238 2.922377054721099 2.871339146242797 2.798332232782071 0.001402123541499694 +GFLOW: 0.375 0.1108301378543739 0.1456894536555485 2.971220188891635 2.947680768573151 2.906955494605487 2.856252493148712 0.002982749363057385 +GFLOW: 0.4375 0.08624100921037388 0.1126943572937007 2.978799164110542 2.963077168564205 2.929672595029587 2.89384366051553 0.003483655330986881 +GFLOW: 0.5 0.06906684440371286 0.08907319222432916 2.983745533829143 2.972909701168987 2.94496408585759 2.919199814051508 0.003436173253542127 +GFLOW: 0.5625 0.05660708505850056 0.0717127610248762 2.98713817035162 2.979475296993226 2.955722548665954 2.936926454224134 0.003130098509721796 +GFLOW: 0.625 0.04727700578116394 0.05865372263087858 2.989562392654951 2.984035920941214 2.963575345530687 2.949718647070822 0.002722933665540839 +GFLOW: 0.6875 0.04010196818886419 0.04863157278989827 2.99135501692021 2.987313184877914 2.969487122332199 2.959205454567949 0.00229787052912496 +GFLOW: 0.75 0.03445827363506211 0.04080679188282949 2.992719431162442 2.989736514170669 2.974055318871121 2.966405609268193 0.001896859924414804 +GFLOW: 0.8125 0.02993306047946916 0.03460619147721075 2.993783547231056 2.991571596746747 2.977664086507707 2.971977989508156 0.001539229841573183 +GFLOW: 0.875 0.02624478213556808 0.02962818797598335 2.994630714295768 2.992989050275572 2.980568718864251 2.97636262128199 0.001231825606353026 +GFLOW: 0.9375 0.02319622482194006 0.02558493679604207 2.995316999268592 2.994102307277334 2.982943995007651 2.979862159031156 0.0009745787323062832 +GFLOW: 1 0.02064583680682874 0.02226603935201163 2.995881222566901 2.994989175875793 2.984912852904781 2.982690289040906 0.000763717897752422 Number of steps = 16 -Time to complete flow = 5.878210e-01 seconds +Time to complete flow = 5.889840e-01 seconds ask_starting_lattice(0): EOF on input. RUNNING COMPLETED -Time = 5.895090e-01 seconds -exit: Fri Oct 28 18:49:09 2022 +Time = 5.906630e-01 seconds +exit: Mon Oct 31 18:30:58 2022 From 50c01bcc791ee0bc17006b3bb6e23006cb342364 Mon Sep 17 00:00:00 2001 From: Alexei Bazavov Date: Tue, 1 Nov 2022 13:01:24 -0400 Subject: [PATCH 49/49] Relaxed error tolerances for some adaptive integrator tests --- wilson_flow/test/wilson_flow_adpt.symanzik.1.errtol | 2 +- .../test/wilson_flow_adpt_a.symanzik.1.errtol | 12 ++++++------ .../test/wilson_flow_adpt_bs_a.symanzik.1.errtol | 2 +- .../test/wilson_flow_adpt_cf3.symanzik.1.errtol | 2 +- .../test/wilson_flow_adpt_cf3_a.symanzik.1.errtol | 12 ++++++------ 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/wilson_flow/test/wilson_flow_adpt.symanzik.1.errtol b/wilson_flow/test/wilson_flow_adpt.symanzik.1.errtol index d8f0dd045..51f1fa176 100644 --- a/wilson_flow/test/wilson_flow_adpt.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_adpt.symanzik.1.errtol @@ -19,4 +19,4 @@ ADAPT: 0.0002 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0003 GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0 0.0002 0.0002 0.01 +ADAPT: 0 0.0002 0.0002 0.02 diff --git a/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.errtol index feba2d4b5..73acc4fd5 100644 --- a/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_adpt_a.symanzik.1.errtol @@ -19,18 +19,18 @@ ADAPT: 0.0002 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0.0002 0.0002 0.0002 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0007 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0.0002 0.0002 0.0002 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0007 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0.0002 0.0002 0.0002 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.001 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0.0002 0.0002 0.0002 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0008 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0.0002 0.0002 0.0002 0.0003 +ADAPT: 0.0002 0.0002 0.0002 0.001 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0.0002 0.0002 0.0002 0.0003 +ADAPT: 0.0002 0.0002 0.0002 0.002 GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 ADAPT: 0 0.0002 0.0002 0.0004 diff --git a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.errtol index 35a720b93..fe6aebe4c 100644 --- a/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_adpt_bs_a.symanzik.1.errtol @@ -35,4 +35,4 @@ ADAPT: 0.0002 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0002 GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0 0.0002 0.0002 0.4 +ADAPT: 0 0.0002 0.0002 1 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.errtol b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.errtol index d8f0dd045..51f1fa176 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_adpt_cf3.symanzik.1.errtol @@ -19,4 +19,4 @@ ADAPT: 0.0002 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0003 GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0 0.0002 0.0002 0.01 +ADAPT: 0 0.0002 0.0002 0.02 diff --git a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.errtol b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.errtol index feba2d4b5..73acc4fd5 100644 --- a/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.errtol +++ b/wilson_flow/test/wilson_flow_adpt_cf3_a.symanzik.1.errtol @@ -19,18 +19,18 @@ ADAPT: 0.0002 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0.0002 0.0002 0.0002 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0007 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0.0002 0.0002 0.0002 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0007 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 ADAPT: 0.0002 0.0002 0.0002 0.0002 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0.0002 0.0002 0.0002 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.001 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0.0002 0.0002 0.0002 0.0002 +ADAPT: 0.0002 0.0002 0.0002 0.0008 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0.0002 0.0002 0.0002 0.0003 +ADAPT: 0.0002 0.0002 0.0002 0.001 GFLOW: 0.0002 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 -ADAPT: 0.0002 0.0002 0.0002 0.0003 +ADAPT: 0.0002 0.0002 0.0002 0.002 GFLOW: 0 0.0002 0.0002 0.0006 0.0006 0.0006 0.0006 0.0002 ADAPT: 0 0.0002 0.0002 0.0004