-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphase_keys.py
49 lines (45 loc) · 1.03 KB
/
phase_keys.py
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
#import coinstac_node_ops.local as ops_local
#import coinstac_node_ops.remote as ops_remote
import coinstac_spatially_constrained_ica.local as scica_local
import coinstac_spatially_constrained_ica.remote as scica_remote
# Init
# Spatially Constrained ICA
SPATIALLY_CONSTRAINED_ICA_LOCAL = [
dict(
do=[
scica_local.scica_local_phases,
#ops_local.local_output_to_cache,
#ops_local.local_dump_cache_to_npy,
#ops_local.local_clear_cache
],
recv=[],
send='scica_local_XXXX',
args=[
[],
[],
[],
[]
],
kwargs=[
{},
{},
{},
{}
],
)
]
SPATIALLY_CONSTRAINED_ICA_REMOTE = [
dict(
do=[
scica_remote.scica_remote_phases,
],
recv=SPATIALLY_CONSTRAINED_ICA_LOCAL[0].get('send'),
send='scica_remote_XXXX',
args=[
[]
],
kwargs=[
{}
],
)
]