1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
##############################################################################
#
# Copyright (c) 2003-2018 by The University of Queensland
# http://www.uq.edu.au
#
# Primary Business: Queensland, Australia
# Licensed under the Apache License, version 2.0
# http://www.apache.org/licenses/LICENSE-2.0
#
# Development until 2012 by Earth Systems Science Computational Center (ESSCC)
# Development 2012-2013 by School of Earth Sciences
# Development from 2014 by Centre for Geoscience Computing (GeoComp)
#
##############################################################################
from __future__ import print_function, division
__copyright__="""Copyright (c) 2003-2018 by The University of Queensland
http://www.uq.edu.au
Primary Business: Queensland, Australia"""
__license__="""Licensed under the Apache License, version 2.0
http://www.apache.org/licenses/LICENSE-2.0"""
__url__="https://launchpad.net/escript-finley"
"""
Test suite for PDE solvers on ripley
"""
from test_simplesolve import SimpleSolveTestCase
import esys.escriptcore.utestselect as unittest
from esys.escriptcore.testing import *
from esys.escript import getMPISizeWorld, hasFeature, sqrt
from esys.ripley import Rectangle, Brick
from esys.escript.linearPDEs import SolverOptions
HAVE_PASO = hasFeature('paso')
# number of elements in the spatial directions
NE0=12
NE1=12
NE2=8
mpiSize=getMPISizeWorld()
for x in [int(sqrt(mpiSize)),2,3,5,7,1]:
NX=x
NY=mpiSize//x
if NX*NY == mpiSize:
break
for x in [(int(mpiSize**(1/3.)),int(mpiSize**(1/3.))),(2,3),(2,2),(1,2),(1,1)]:
NXb=x[0]
NYb=x[1]
NZb=mpiSize//(x[0]*x[1])
if NXb*NYb*NZb == mpiSize:
break
@unittest.skipIf(not HAVE_PASO, "PASO not available")
class SimpleSolveOnPaso(SimpleSolveTestCase):
pass
class Test_SimpleSolveRipley2D_Paso_Direct(SimpleSolveOnPaso):
def setUp(self):
self.domain = Rectangle(n0=NE0*NX-1, n1=NE1*NY-1, d0=NX, d1=NY)
self.package = SolverOptions.PASO
self.method = SolverOptions.DIRECT
def tearDown(self):
del self.domain
class Test_SimpleSolveRipley3D_Paso_Direct(SimpleSolveOnPaso):
def setUp(self):
self.domain = Brick(n0=NE0*NXb-1, n1=NE1*NYb-1, n2=NE2*NZb-1, d0=NXb, d1=NYb, d2=NZb)
self.package = SolverOptions.PASO
self.method = SolverOptions.DIRECT
class Test_SimpleSolveRipley2D_Paso_BICGSTAB_Jacobi(SimpleSolveOnPaso):
def setUp(self):
self.domain = Rectangle(n0=NE0*NX-1, n1=NE1*NY-1, d0=NX, d1=NY)
self.package = SolverOptions.PASO
self.method = SolverOptions.BICGSTAB
self.preconditioner = SolverOptions.JACOBI
def tearDown(self):
del self.domain
class Test_SimpleSolveRipley3D_Paso_BICGSTAB_Jacobi(SimpleSolveOnPaso):
def setUp(self):
self.domain = Brick(n0=NE0*NXb-1, n1=NE1*NYb-1, n2=NE2*NZb-1, d0=NXb, d1=NYb, d2=NZb)
self.package = SolverOptions.PASO
self.method = SolverOptions.BICGSTAB
self.preconditioner = SolverOptions.JACOBI
def tearDown(self):
del self.domain
class Test_SimpleSolveRipley2D_Paso_PCG_Jacobi(SimpleSolveOnPaso):
def setUp(self):
self.domain = Rectangle(n0=NE0*NX-1, n1=NE1*NY-1, d0=NX, d1=NY)
self.package = SolverOptions.PASO
self.method = SolverOptions.PCG
self.preconditioner = SolverOptions.JACOBI
def tearDown(self):
del self.domain
class Test_SimpleSolveRipley3D_Paso_PCG_Jacobi(SimpleSolveOnPaso):
def setUp(self):
self.domain = Brick(n0=NE0*NXb-1, n1=NE1*NYb-1, n2=NE2*NZb-1, d0=NXb, d1=NYb, d2=NZb)
self.package = SolverOptions.PASO
self.method = SolverOptions.PCG
self.preconditioner = SolverOptions.JACOBI
def tearDown(self):
del self.domain
class Test_SimpleSolveRipley2D_Paso_MINRES_Jacobi(SimpleSolveOnPaso):
def setUp(self):
self.domain = Rectangle(n0=NE0*NX-1, n1=NE1*NY-1, d0=NX, d1=NY)
self.package = SolverOptions.PASO
self.method = SolverOptions.MINRES
self.preconditioner = SolverOptions.JACOBI
def tearDown(self):
del self.domain
class Test_SimpleSolveRipley3D_Paso_MINRES_Jacobi(SimpleSolveOnPaso):
def setUp(self):
self.domain = Brick(n0=NE0*NXb-1, n1=NE1*NYb-1, n2=NE2*NZb-1, d0=NXb, d1=NYb, d2=NZb)
self.package = SolverOptions.PASO
self.method = SolverOptions.MINRES
self.preconditioner = SolverOptions.JACOBI
def tearDown(self):
del self.domain
class Test_SimpleSolveRipley2D_Paso_TFQMR_RILU(SimpleSolveOnPaso):
def setUp(self):
self.domain = Rectangle(n0=NE0*NX-1, n1=NE1*NY-1, d0=NX, d1=NY)
self.package = SolverOptions.PASO
self.method = SolverOptions.TFQMR
self.preconditioner = SolverOptions.RILU
def tearDown(self):
del self.domain
class Test_SimpleSolveRipley3D_Paso_TFQMR_RILU(SimpleSolveOnPaso):
def setUp(self):
self.domain = Brick(n0=NE0*NXb-1, n1=NE1*NYb-1, n2=NE2*NZb-1, d0=NXb, d1=NYb, d2=NZb)
self.package = SolverOptions.PASO
self.method = SolverOptions.TFQMR
self.preconditioner = SolverOptions.RILU
def tearDown(self):
del self.domain
if __name__ == '__main__':
run_tests(__name__, exit_on_failure=True)
|