[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 07/10: gr-fec: correcting function name in
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 07/10: gr-fec: correcting function name in GRC xml |
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 39eaf9d4a337dc00f2a91b0cd2fa4e0e9d7609b3
Author: tracierenea <address@hidden>
Date: Mon Mar 21 15:55:51 2016 -0500
gr-fec: correcting function name in GRC xml
I think that these lines were causing this error: AttributeError:
'ldpc_H_matrix_sptr' object has no attribute 'get_base_ptr'
so changing from get_base_ptr to get_base_sptr
---
gr-fec/grc/variable_ldpc_bit_flip_decoder.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gr-fec/grc/variable_ldpc_bit_flip_decoder.xml
b/gr-fec/grc/variable_ldpc_bit_flip_decoder.xml
index dd9dabb..d905ce2 100644
--- a/gr-fec/grc/variable_ldpc_bit_flip_decoder.xml
+++ b/gr-fec/grc/variable_ldpc_bit_flip_decoder.xml
@@ -10,11 +10,11 @@
<import>from gnuradio import fec</import>
<var_make>
#if int($ndim())==0 #
-self.$(id) = $(id) =
fec.ldpc_bit_flip_decoder.make(${matrix_object}.get_base_ptr(), $max_iterations)
+self.$(id) = $(id) =
fec.ldpc_bit_flip_decoder.make(${matrix_object}.get_base_sptr(),
$max_iterations)
#else if int($ndim())==1 #
-self.$(id) = $(id) = map((lambda a:
fec.ldpc_bit_flip_decoder.make(${matrix_object}.get_base_ptr(),
$max_iterations)), range(0,$dim1)) #slurp
+self.$(id) = $(id) = map((lambda a:
fec.ldpc_bit_flip_decoder.make(${matrix_object}.get_base_sptr(),
$max_iterations)), range(0,$dim1)) #slurp
#else
-self.$(id) = $(id) = map((lambda b: map((lambda a:
fec.ldpc_bit_flip_decoder.make(${matrix_object}.get_base_ptr(),
$max_iterations)), range(0,$dim2))), range(0,$dim1)) #slurp
+self.$(id) = $(id) = map((lambda b: map((lambda a:
fec.ldpc_bit_flip_decoder.make(${matrix_object}.get_base_sptr(),
$max_iterations)), range(0,$dim2))), range(0,$dim1)) #slurp
#end if</var_make>
<make></make>
- [Commit-gnuradio] [gnuradio] branch maint updated (0a1a76d -> 4ab650a), git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 03/10: ctrlport: gr-perf-monitorx: add small offset to avoid log(0) calls., git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 01/10: ctrlport: Some version issues for running gr-perf-monitorx, git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 04/10: pmt::is_dict() and is_pair() both return true for both dictionaries and pairs. This causes issues as one may believe they have a dictionary pmt and attempt to reference it's keys (which will throw an exception for a pair). This simply serves to document this behavior, git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 07/10: gr-fec: correcting function name in GRC xml,
git <=
- [Commit-gnuradio] [gnuradio] 02/10: ctrlport: gr-perf-monitorx - don't stash the canvas, ask the figure., git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 06/10: gr-fec: update/add documentation for LDPC GRC blocks., git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 05/10: Merge remote-tracking branch 'jgilbert/pmt_doc_update' into maint, git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 10/10: gr-fec: Address make error when parallelism = 1 or 2., git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 09/10: gr-fec: Adding doc in BER Curve Gen. block re: parallelism., git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 08/10: gr-fec: Address missing block error in example GRC file., git, 2016/03/27