Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ift
NIFTy
Commits
652b282d
Commit
652b282d
authored
Feb 04, 2018
by
Philipp Arras
Browse files
Fixups
parent
36f5e23e
Pipeline
#24363
failed with stage
in 4 minutes and 9 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
nifty4/extra/operator_tests.py
View file @
652b282d
...
...
@@ -5,26 +5,26 @@ from ..field import Field
__all__
=
[
'test_adjointness'
,
'test_inverse'
]
def
test_adjointness
(
self
,
domain_dtype
=
np
.
float64
,
target_dtype
=
np
.
float64
,
atol
=
0
,
rtol
=
1e-7
):
f1
=
Field
.
from_random
(
"normal"
,
domain
=
self
.
domain
,
dtype
=
domain_dtype
)
f2
=
Field
.
from_random
(
"normal"
,
domain
=
self
.
target
,
dtype
=
target_dtype
)
res1
=
f1
.
vdot
(
self
.
adjoint_times
(
f2
))
res2
=
self
.
times
(
f1
).
vdot
(
f2
)
def
test_adjointness
(
op
,
domain_dtype
=
np
.
float64
,
target_dtype
=
np
.
float64
,
atol
=
0
,
rtol
=
1e-7
):
f1
=
Field
.
from_random
(
"normal"
,
domain
=
op
.
domain
,
dtype
=
domain_dtype
)
f2
=
Field
.
from_random
(
"normal"
,
domain
=
op
.
target
,
dtype
=
target_dtype
)
res1
=
f1
.
vdot
(
op
.
adjoint_times
(
f2
))
res2
=
op
.
times
(
f1
).
vdot
(
f2
)
np
.
testing
.
assert_allclose
(
res1
,
res2
,
atol
=
atol
,
rtol
=
rtol
)
# Return relative error
return
(
res1
-
res2
)
/
(
res1
+
res2
)
*
2
def
test_inverse
(
self
,
dtype_domain
=
np
.
float64
,
dtype_target
=
np
.
float64
,
atol
=
0
,
rtol
=
1e-7
):
foo
=
Field
.
from_random
(
domain
=
self
.
target
,
random_type
=
'normal'
,
dtype
=
dtype_target
)
res
=
self
.
times
(
self
.
inverse_times
(
foo
)).
val
ones
=
Field
.
ones
(
self
.
domain
).
val
def
test_inverse
(
op
,
dtype_domain
=
np
.
float64
,
dtype_target
=
np
.
float64
,
atol
=
0
,
rtol
=
1e-7
):
foo
=
Field
.
from_random
(
domain
=
op
.
target
,
random_type
=
'normal'
,
dtype
=
dtype_target
)
res
=
op
(
op
.
inverse_times
(
foo
)).
val
ones
=
Field
.
ones
(
op
.
domain
).
val
np
.
testing
.
assert_allclose
(
res
,
ones
,
atol
=
atol
,
rtol
=
rtol
)
foo
=
Field
.
from_random
(
domain
=
self
.
domain
,
random_type
=
'normal'
,
dtype
=
dtype_domain
)
res
=
self
.
inverse_times
(
self
.
times
(
foo
)).
val
ones
=
Field
.
ones
(
self
.
target
).
val
foo
=
Field
.
from_random
(
domain
=
op
.
domain
,
random_type
=
'normal'
,
dtype
=
dtype_domain
)
res
=
op
.
inverse_times
(
op
(
foo
)).
val
ones
=
Field
.
ones
(
op
.
target
).
val
np
.
testing
.
assert_allclose
(
res
,
ones
,
atol
=
atol
,
rtol
=
rtol
)
# Return relative error
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment