Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91928042
sampling.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 15, 19:48
Size
2 KB
Mime Type
text/x-python
Expires
Sun, Nov 17, 19:48 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22348935
Attached To
R6746 RationalROMPy
sampling.py
View Options
# Copyright (C) 2018 by the RROMPy authors
#
# This file is part of RROMPy.
#
# RROMPy is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# RROMPy is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with RROMPy. If not, see <http://www.gnu.org/licenses/>.
#
import
numpy
as
np
import
scipy.sparse
as
sp
from
rrompy.hfengines.base
import
MatrixEngineBase
as
MEB
from
rrompy.sampling.linear_problem
import
(
SamplingEngineLinear
,
SamplingEngineLinearPOD
)
from
rrompy.parameter
import
parameterList
def
test_krylov
():
N
=
100
mu
=
10.
+
.
5j
solver
=
MEB
(
verbosity
=
0
)
solver
.
npar
=
1
solver
.
nAs
=
2
solver
.
As
=
[
sp
.
spdiags
([
np
.
arange
(
1
,
1
+
N
)],
[
0
],
N
,
N
),
-
sp
.
eye
(
N
)]
solver
.
nbs
=
1
solver
.
bs
=
[
np
.
exp
(
1.j
*
np
.
linspace
(
0
,
-
np
.
pi
,
N
))]
samplingEngine
=
SamplingEngineLinear
(
solver
,
verbosity
=
0
)
samples
=
samplingEngine
.
iterSample
([
mu
]
*
5
)
.
data
assert
samples
.
shape
==
(
100
,
5
)
assert
np
.
isclose
(
np
.
linalg
.
norm
(
samples
),
37.02294804524299
,
rtol
=
1e-5
)
def
test_distributed
():
N
=
100
mus
=
parameterList
(
np
.
linspace
(
5
,
15
,
11
)
+
.
5j
)
solver
=
MEB
(
verbosity
=
0
)
solver
.
npar
=
1
solver
.
nAs
=
2
solver
.
As
=
[
sp
.
spdiags
([
np
.
arange
(
1
,
1
+
N
)],
[
0
],
N
,
N
),
-
sp
.
eye
(
N
)]
solver
.
nbs
=
1
solver
.
bs
=
[
np
.
exp
(
1.j
*
np
.
linspace
(
0
,
-
np
.
pi
,
N
))]
samplingEngine
=
SamplingEngineLinear
(
solver
,
verbosity
=
0
)
samples
=
samplingEngine
.
iterSample
(
mus
)
.
data
assert
samples
.
shape
==
(
100
,
11
)
assert
np
.
isclose
(
np
.
linalg
.
norm
(
samples
),
8.59778606421386
,
rtol
=
1e-5
)
def
test_distributed_pod
():
N
=
100
mus
=
np
.
linspace
(
5
,
15
,
11
)
+
.
5j
solver
=
MEB
(
verbosity
=
0
)
solver
.
npar
=
1
solver
.
nAs
=
2
solver
.
As
=
[
sp
.
spdiags
([
np
.
arange
(
1
,
1
+
N
)],
[
0
],
N
,
N
),
-
sp
.
eye
(
N
)]
solver
.
nbs
=
1
solver
.
bs
=
[
np
.
exp
(
1.j
*
np
.
linspace
(
0
,
-
np
.
pi
,
N
))]
samplingEngine
=
SamplingEngineLinearPOD
(
solver
,
verbosity
=
0
)
samples
=
samplingEngine
.
iterSample
(
mus
)
.
data
assert
samples
.
shape
==
(
100
,
11
)
assert
np
.
isclose
(
np
.
linalg
.
norm
(
samples
),
3.3166247903553994
,
rtol
=
1e-5
)
assert
np
.
isclose
(
np
.
linalg
.
cond
(
samples
.
conj
()
.
T
.
dot
(
samples
)),
1.
,
rtol
=
1e-5
)
Event Timeline
Log In to Comment