QUDA  v1.1.0
A library for QCD on GPUs
copy_color_spinor_mg_ss.cu
Go to the documentation of this file.
1 #include <copy_color_spinor_mg.cuh>
2 
3 namespace quda {
4 
5  void copyGenericColorSpinorMGSS(ColorSpinorField &dst, const ColorSpinorField &src,
6  QudaFieldLocation location, void *Dst, void *Src,
7  void *dstNorm, void *srcNorm) {
8 
9 #ifdef GPU_MULTIGRID
10  auto *dst_ptr = static_cast<float*>(Dst);
11  auto *src_ptr = static_cast<float*>(Src);
12 
13  INSTANTIATE_COLOR;
14 #else
15  errorQuda("Multigrid has not been enabled");
16 #endif
17  }
18 
19 } // namespace quda