mirror of
				https://github.com/paboyle/Grid.git
				synced 2025-11-03 05:24:32 +00:00 
			
		
		
		
	Cleaning up previous debug lines
This commit is contained in:
		@@ -234,17 +234,11 @@ namespace Grid {
 | 
			
		||||
      virtual  RealD MpcDag   (const Field &in, Field &out){
 | 
			
		||||
	Field tmp(in._grid);
 | 
			
		||||
 | 
			
		||||
        std::cout << "norm in :" << norm2(in) << std::endl;
 | 
			
		||||
	_Mat.MeooeDag(in,tmp);
 | 
			
		||||
        std::cout << "norm tmp :" << norm2(tmp) << std::endl;
 | 
			
		||||
        _Mat.MooeeInvDag(tmp,out);
 | 
			
		||||
        std::cout << "norm out :" << norm2(out) << std::endl;
 | 
			
		||||
	_Mat.MeooeDag(out,tmp);
 | 
			
		||||
        std::cout << "norm tmp :" << norm2(tmp) << std::endl;
 | 
			
		||||
        
 | 
			
		||||
 | 
			
		||||
	_Mat.MooeeDag(in,out);
 | 
			
		||||
        std::cout << "norm out :" << norm2(out) << std::endl;        
 | 
			
		||||
	return axpy_norm(out,-1.0,tmp,out);
 | 
			
		||||
      }
 | 
			
		||||
    };
 | 
			
		||||
 
 | 
			
		||||
@@ -214,9 +214,7 @@ void CayleyFermion5D<Impl>::MeooeDag5D    (const FermionField &psi, FermionField
 | 
			
		||||
  std::vector<Coeff_t> lower=cs;
 | 
			
		||||
  upper[Ls-1]=-mass*upper[Ls-1];
 | 
			
		||||
  lower[0]   =-mass*lower[0];
 | 
			
		||||
  std::cout << "MeooeDag5D:  psi: " << norm2(psi) << std::endl;
 | 
			
		||||
  M5Ddag(psi,psi,Din,lower,diag,upper);
 | 
			
		||||
  std::cout << "MeooeDag5D:  Din: " << norm2(Din) << std::endl;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
template<class Impl>
 | 
			
		||||
@@ -282,9 +280,7 @@ void CayleyFermion5D<Impl>::MeooeDag    (const FermionField &psi, FermionField &
 | 
			
		||||
  } else {
 | 
			
		||||
    this->DhopOE(psi,tmp,DaggerYes);
 | 
			
		||||
  }
 | 
			
		||||
  std::cout << "MeooeDag:  tmp: " << norm2(tmp) << std::endl;
 | 
			
		||||
  MeooeDag5D(tmp,chi); 
 | 
			
		||||
  std::cout << "MeooeDag:  chi: " << norm2(chi) << std::endl;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
template<class Impl>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user