PSCF v1.2
Mask.cu
1/*
2* PSCF - Polymer Self-Consistent Field Theory
3*
4* Copyright 2016 - 2022, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "Mask.tpp"
9#include <prdc/field/MaskTmpl.tpp> // needed for implementation
10
11namespace Pscf {
12
13namespace Prdc {
14
15 // Explicit instantiation
16 template class MaskTmpl< 1, Rpg::FieldIo<1>, Cuda::RField<1> >;
17 template class MaskTmpl< 2, Rpg::FieldIo<2>, Cuda::RField<2> >;
18 template class MaskTmpl< 3, Rpg::FieldIo<3>, Cuda::RField<3> >;
19
20} // namespace Prdc
21
22namespace Rpg {
23
24 template class Mask<1>;
25 template class Mask<2>;
26 template class Mask<3>;
27
28} // namespace Rpg
29
30} // namespace Pscf
PSCF package top-level namespace.
Definition param_pc.dox:1