Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
NIFTy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
10
Issues
10
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ift
NIFTy
Commits
127e4a3e
Commit
127e4a3e
authored
Jun 12, 2018
by
Martin Reinecke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
re-introduce automatic creation of ScalingOperators
parent
13263d5f
Pipeline
#30663
passed with stages
in 1 minute and 22 seconds
Changes
4
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
38 additions
and
12 deletions
+38
-12
nifty4/library/nonlinear_power_energy.py
nifty4/library/nonlinear_power_energy.py
+3
-4
nifty4/operators/linear_operator.py
nifty4/operators/linear_operator.py
+33
-0
nifty4/operators/smoothness_operator.py
nifty4/operators/smoothness_operator.py
+1
-2
nifty4/sugar.py
nifty4/sugar.py
+1
-6
No files found.
nifty4/library/nonlinear_power_energy.py
View file @
127e4a3e
...
...
@@ -28,8 +28,8 @@ def _LinearizedPowerResponse(Instrument, nonlinearity, ht, Distributor, tau,
power
=
exp
(
0.5
*
tau
)
position
=
ht
(
Distributor
(
power
)
*
xi
)
linearization
=
makeOp
(
nonlinearity
.
derivative
(
position
))
return
(
makeOp
(
0.5
,
Instrument
.
target
)
*
Instrument
*
linearization
*
ht
*
makeOp
(
xi
)
*
Distributor
*
makeOp
(
power
))
return
(
0.5
*
Instrument
*
linearization
*
ht
*
makeOp
(
xi
)
*
Distributor
*
makeOp
(
power
))
class
NonlinearPowerEnergy
(
Energy
):
...
...
@@ -138,6 +138,5 @@ class NonlinearPowerEnergy(Energy):
self
.
position
,
xi_sample
)
op
=
LinearizedResponse
.
adjoint
*
self
.
N
.
inverse
*
LinearizedResponse
result
=
op
if
result
is
None
else
result
+
op
result
=
(
result
*
makeOp
(
1.
/
len
(
self
.
xi_sample_list
),
result
.
domain
)
+
self
.
T
)
result
=
result
*
(
1.
/
len
(
self
.
xi_sample_list
))
+
self
.
T
return
InversionEnabler
(
result
,
self
.
inverter
)
nifty4/operators/linear_operator.py
View file @
127e4a3e
...
...
@@ -116,18 +116,51 @@ class LinearOperator(NiftyMetaBase()):
the adjoint of this operator."""
return
self
.
_flip_modes
(
self
.
ADJOINT_BIT
)
@
staticmethod
def
_toOperator
(
thing
,
dom
):
from
.scaling_operator
import
ScalingOperator
if
isinstance
(
thing
,
LinearOperator
):
return
thing
if
np
.
isscalar
(
thing
):
return
ScalingOperator
(
thing
,
dom
)
return
NotImplemented
def
__mul__
(
self
,
other
):
from
.chain_operator
import
ChainOperator
if
np
.
isscalar
(
other
)
and
other
==
1.
:
return
self
other
=
self
.
_toOperator
(
other
,
self
.
domain
)
return
ChainOperator
.
make
([
self
,
other
])
def
__rmul__
(
self
,
other
):
from
.chain_operator
import
ChainOperator
if
np
.
isscalar
(
other
)
and
other
==
1.
:
return
self
other
=
self
.
_toOperator
(
other
,
self
.
target
)
return
ChainOperator
.
make
([
other
,
self
])
def
__add__
(
self
,
other
):
from
.sum_operator
import
SumOperator
if
np
.
isscalar
(
other
)
and
other
==
0.
:
return
self
other
=
self
.
_toOperator
(
other
,
self
.
domain
)
return
SumOperator
.
make
([
self
,
other
],
[
False
,
False
])
def
__radd__
(
self
,
other
):
return
self
.
__add__
(
other
)
def
__sub__
(
self
,
other
):
from
.sum_operator
import
SumOperator
if
np
.
isscalar
(
other
)
and
other
==
0.
:
return
self
other
=
self
.
_toOperator
(
other
,
self
.
domain
)
return
SumOperator
.
make
([
self
,
other
],
[
False
,
True
])
def
__rsub__
(
self
,
other
):
from
.sum_operator
import
SumOperator
other
=
self
.
_toOperator
(
other
,
self
.
domain
)
return
SumOperator
.
make
([
other
,
self
],
[
False
,
True
])
@
abc
.
abstractproperty
def
capability
(
self
):
"""int : the supported operation modes
...
...
nifty4/operators/smoothness_operator.py
View file @
127e4a3e
...
...
@@ -18,7 +18,6 @@
from
.scaling_operator
import
ScalingOperator
from
.laplace_operator
import
LaplaceOperator
from
..sugar
import
makeOp
def
SmoothnessOperator
(
domain
,
strength
=
1.
,
logarithmic
=
True
,
space
=
None
):
...
...
@@ -52,4 +51,4 @@ def SmoothnessOperator(domain, strength=1., logarithmic=True, space=None):
if
strength
==
0.
:
return
ScalingOperator
(
0.
,
domain
)
laplace
=
LaplaceOperator
(
domain
,
logarithmic
=
logarithmic
,
space
=
space
)
return
makeOp
(
strength
**
2
,
laplace
.
domain
)
*
laplace
.
adjoint
*
laplace
return
(
strength
**
2
)
*
laplace
.
adjoint
*
laplace
nifty4/sugar.py
View file @
127e4a3e
...
...
@@ -24,7 +24,6 @@ from .multi.multi_field import MultiField
from
.multi.block_diagonal_operator
import
BlockDiagonalOperator
from
.multi.multi_domain
import
MultiDomain
from
.operators.diagonal_operator
import
DiagonalOperator
from
.operators.scaling_operator
import
ScalingOperator
from
.operators.power_distributor
import
PowerDistributor
from
.domain_tuple
import
DomainTuple
from
.
import
dobj
,
utilities
...
...
@@ -234,16 +233,12 @@ def makeDomain(domain):
return
DomainTuple
.
make
(
domain
)
def
makeOp
(
input
,
domain
=
None
):
def
makeOp
(
input
):
if
isinstance
(
input
,
Field
):
return
DiagonalOperator
(
input
)
if
isinstance
(
input
,
MultiField
):
return
BlockDiagonalOperator
({
key
:
makeOp
(
val
)
for
key
,
val
in
input
.
items
()})
if
np
.
isscalar
(
input
):
if
domain
is
None
:
raise
ValueError
(
"domain needs to be set"
)
return
ScalingOperator
(
input
,
domain
)
raise
NotImplementedError
# Arithmetic functions working on Fields
...
...
Write
Preview
Markdown
is supported
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