commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] [gnuradio] 10/10: gr-fec: Address make error when para


From: git
Subject: [Commit-gnuradio] [gnuradio] 10/10: gr-fec: Address make error when parallelism = 1 or 2.
Date: Sun, 27 Mar 2016 13:57:57 +0000 (UTC)

This is an automated email from the git hooks/post-receive script.

jcorgan pushed a commit to branch maint
in repository gnuradio.

commit 4ab650a4414c6b8e91a2680c105e834b44d8a347
Author: tracierenea <address@hidden>
Date:   Wed Mar 23 16:09:13 2016 -0500

    gr-fec: Address make error when parallelism = 1 or 2.
    
    GRC was calling the wrong make function for the case when parallelism was 
set to 1 or 2. I think this is just a hold over oops from when we were renaming 
these classes prior to pull request #660.
---
 gr-fec/grc/variable_ldpc_encoder_G.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gr-fec/grc/variable_ldpc_encoder_G.xml 
b/gr-fec/grc/variable_ldpc_encoder_G.xml
index d138fa3..3b4dbee 100644
--- a/gr-fec/grc/variable_ldpc_encoder_G.xml
+++ b/gr-fec/grc/variable_ldpc_encoder_G.xml
@@ -13,9 +13,9 @@
 #if int($ndim())==0 #
 self.$(id) = $(id) = fec.ldpc_gen_mtrx_encoder_make($G)
 #else if int($ndim())==1 #
-self.$(id) = $(id) = map((lambda a: fec.ldpc_encoder_make($G)), 
range(0,$dim1)) #slurp
+self.$(id) = $(id) = map((lambda a: fec.ldpc_gen_mtrx_encoder_make($G)), 
range(0,$dim1)) #slurp
 #else
-self.$(id) = $(id) = map((lambda b: map((lambda a: fec.ldpc_encoder_make($G)), 
range(0,$dim2))), range(0,$dim1)) #slurp
+self.$(id) = $(id) = map((lambda b: map((lambda a: 
fec.ldpc_gen_mtrx_encoder_make($G)), range(0,$dim2))), range(0,$dim1)) #slurp
 #end if</var_make>
   <make></make>
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]