mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-26 06:08:42 -05:00
Significantly more efficient and slightly more sensitive implementation of the ordered statistics decoder.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7677 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
f7e8c81357
commit
669aa55457
@ -1,18 +1,14 @@
|
|||||||
subroutine osd300(llr,norder,decoded,niterations,cw)
|
subroutine osd300(llr,norder,decoded,niterations,cw)
|
||||||
!
|
!
|
||||||
! An ordered-statistics decoder based on ideas from:
|
! An ordered-statistics decoder for the (300,60) code.
|
||||||
! "Soft-decision decoding of linear block codes based on ordered statistics,"
|
!
|
||||||
! by Marc P. C. Fossorier and Shu Lin,
|
|
||||||
! IEEE Trans Inf Theory, Vol 41, No 5, Sep 1995
|
|
||||||
!
|
|
||||||
|
|
||||||
include "ldpc_300_60_params.f90"
|
include "ldpc_300_60_params.f90"
|
||||||
|
|
||||||
integer*1 gen(K,N)
|
integer*1 gen(K,N)
|
||||||
integer*1 genmrb(K,N)
|
integer*1 genmrb(K,N),g2(N,K)
|
||||||
integer*1 temp(K),m0(K),me(0:K)
|
integer*1 temp(K),m0(K),me(K),mi(K)
|
||||||
integer indices(N)
|
integer indices(N),nxor(N)
|
||||||
integer*1 codeword(N),cw(N),hdec(N)
|
integer*1 cw(N),ce(N),c0(N),hdec(N)
|
||||||
integer*1 decoded(K)
|
integer*1 decoded(K)
|
||||||
integer indx(N)
|
integer indx(N)
|
||||||
real llr(N),rx(N),absrx(N)
|
real llr(N),rx(N),absrx(N)
|
||||||
@ -83,58 +79,100 @@ do id=1,K ! diagonal element indices
|
|||||||
enddo
|
enddo
|
||||||
enddo
|
enddo
|
||||||
|
|
||||||
|
g2=transpose(genmrb)
|
||||||
|
!do i=1,N
|
||||||
|
! g2(i,1:K)=genmrb(1:K,i)
|
||||||
|
!enddo
|
||||||
|
|
||||||
! The hard decisions for the K MRB bits define the order 0 message, m0.
|
! The hard decisions for the K MRB bits define the order 0 message, m0.
|
||||||
! Encode m0 using the modified generator matrix to find the "order 0" codeword.
|
! Encode m0 using the modified generator matrix to find the "order 0" codeword.
|
||||||
! Flip various combinations of bits in m0 and re-encode to generate a list of
|
! Flip various combinations of bits in m0 and re-encode to generate a list of
|
||||||
! codewords. Test all such codewords against the received word to decide which
|
! codewords. Test all such codewords against the received word to decide which
|
||||||
! codeword is most likely to be correct.
|
! codeword is most likely to be correct.
|
||||||
hdec=hdec(indices)
|
|
||||||
m0=hdec(1:K)
|
|
||||||
|
|
||||||
nhardmin=N
|
hdec=hdec(indices) ! hard decisions from received symbols
|
||||||
j0=0
|
m0=hdec(1:K) ! zero'th order message
|
||||||
j1=0
|
absrx=absrx(indices)
|
||||||
j2=0
|
rx=rx(indices)
|
||||||
j3=0
|
|
||||||
if( norder.ge.4 ) j0=K
|
|
||||||
if( norder.ge.3 ) j1=K
|
|
||||||
if( norder.ge.2 ) j2=K
|
|
||||||
if( norder.ge.1 ) j3=K
|
|
||||||
! me(0) is a dummy position --- only me(1:K) are actually used. This is done
|
|
||||||
! to avoid "if" statements within the inner loop.
|
|
||||||
do i1=0,j0
|
|
||||||
do i2=i1,j1
|
|
||||||
do i3=i2,j2
|
|
||||||
do i4=i3,j3
|
|
||||||
me(1:K)=m0
|
|
||||||
me(i1)=1-me(i1)
|
|
||||||
me(i2)=1-me(i2)
|
|
||||||
me(i3)=1-me(i3)
|
|
||||||
me(i4)=1-me(i4)
|
|
||||||
|
|
||||||
! me is the m0 + error pattern. encode this message using genmrb to
|
s1=sum(absrx(1:K))
|
||||||
! produce a codeword. test the codeword against the received vector
|
s2=sum(absrx(K+1:N))
|
||||||
! and save it if it's the best that we've seen so far.
|
xlam=5.0
|
||||||
do i=1,N
|
rho=s1/(s1+xlam*s2)
|
||||||
nsum=sum(iand(me(1:K),genmrb(1:K,i)))
|
call mrbencode(m0,c0,g2,N,K)
|
||||||
codeword(i)=mod(nsum,2)
|
nxor=ieor(c0,hdec)
|
||||||
enddo
|
nhardmin=sum(nxor)
|
||||||
nhard=count(codeword .ne. hdec)
|
dmin=sum(nxor*absrx)
|
||||||
if( nhard .lt. nhardmin ) then
|
thresh=rho*dmin
|
||||||
cw=codeword
|
|
||||||
nhardmin=nhard
|
cw=c0
|
||||||
i1min=i1
|
nt=0
|
||||||
i2min=i2
|
nrejected=0
|
||||||
i3min=i3
|
do iorder=1,norder
|
||||||
i4min=i4
|
mi(1:K-iorder)=0
|
||||||
endif
|
mi(K-iorder+1:K)=1
|
||||||
enddo
|
iflag=0
|
||||||
enddo
|
do while(iflag .ge. 0 )
|
||||||
enddo
|
dpat=sum(mi*absrx(1:K))
|
||||||
|
nt=nt+1
|
||||||
|
if( dpat .lt. thresh ) then ! reject unlikely error patterns
|
||||||
|
me=ieor(m0,mi)
|
||||||
|
call mrbencode(me,ce,g2,N,K)
|
||||||
|
nxor=ieor(ce,hdec)
|
||||||
|
dd=sum(nxor*absrx)
|
||||||
|
if( dd .lt. dmin ) then
|
||||||
|
dmin=dd
|
||||||
|
cw=ce
|
||||||
|
nhardmin=sum(nxor)
|
||||||
|
thresh=rho*dmin
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
nrejected=nrejected+1
|
||||||
|
endif
|
||||||
|
! get the next test error pattern, iflag will go negative
|
||||||
|
! when the last pattern with weight iorder has been generated
|
||||||
|
call nextpat(mi,k,iorder,iflag)
|
||||||
|
enddo
|
||||||
enddo
|
enddo
|
||||||
|
|
||||||
|
!write(*,*) 'nhardmin ',nhardmin
|
||||||
|
!write(*,*) 'total patterns ',nt,' number rejected ',nrejected
|
||||||
|
|
||||||
! re-order the codeword to place message bits at the end
|
! re-order the codeword to place message bits at the end
|
||||||
cw(indices)=cw
|
cw(indices)=cw
|
||||||
decoded=cw(M+1:N)
|
decoded=cw(M+1:N)
|
||||||
niterations=1
|
niterations=1
|
||||||
return
|
return
|
||||||
end subroutine osd300
|
end subroutine osd300
|
||||||
|
|
||||||
|
subroutine mrbencode(me,codeword,g2,N,K)
|
||||||
|
integer*1 me(K),codeword(N),g2(N,K)
|
||||||
|
! fast encoding for low-weight test patterns
|
||||||
|
codeword=0
|
||||||
|
do i=1,K
|
||||||
|
if( me(i) .eq. 1 ) then
|
||||||
|
codeword=ieor(codeword,g2(1:N,i))
|
||||||
|
endif
|
||||||
|
enddo
|
||||||
|
return
|
||||||
|
end subroutine mrbencode
|
||||||
|
|
||||||
|
subroutine nextpat(mi,k,iorder,iflag)
|
||||||
|
integer*1 mi(k),ms(k)
|
||||||
|
! generate the next test error pattern
|
||||||
|
ind=-1
|
||||||
|
do i=1,k-1
|
||||||
|
if( mi(i).eq.0 .and. mi(i+1).eq.1) ind=i
|
||||||
|
enddo
|
||||||
|
ms=0
|
||||||
|
ms(1:ind-1)=mi(1:ind-1)
|
||||||
|
ms(ind)=1
|
||||||
|
ms(ind+1)=0
|
||||||
|
if( ind+1 .lt. k ) then
|
||||||
|
nz=iorder-sum(ms)
|
||||||
|
ms(k-nz+1:k)=1
|
||||||
|
endif
|
||||||
|
mi=ms
|
||||||
|
iflag=ind
|
||||||
|
return
|
||||||
|
end subroutine nextpat
|
||||||
|
Loading…
Reference in New Issue
Block a user