Mentions légales du service

Skip to content
Snippets Groups Projects
Commit fcb998be authored by hhakim's avatar hhakim
Browse files

Simplify pyfaust.fact.palm4msa_py using functors from previous commits (no...

Simplify pyfaust.fact.palm4msa_py using functors from previous commits (no need of the dims argument anymore).
parent 6911d6b0
Branches
Tags
No related merge requests found
......@@ -312,7 +312,9 @@ def _check_fact_mat(funcname, M):
# experimental block start
def palm4msa_py(A, J, N, proxs, dims):
def palm4msa_py(A, J, N, proxs):
dims = [(prox.constraint._num_rows, prox.constraint._num_cols) for prox in
proxs ]
# start Faust, identity factors
S = Faust([np.eye(dims[i][0], dims[i][1]) for i in range(J)])
_lambda = 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment