2016-04-23 21:12:38 -04:00
|
|
|
program ldpcsim
|
|
|
|
|
|
|
|
use, intrinsic :: iso_c_binding
|
|
|
|
use hashing
|
|
|
|
use packjt
|
|
|
|
|
2016-04-24 11:08:57 -04:00
|
|
|
character*22 msg,msgsent,msgreceived
|
2016-04-23 21:12:38 -04:00
|
|
|
character*80 prefix
|
|
|
|
character*85 pchk_file,gen_file
|
|
|
|
character*8 arg
|
|
|
|
integer*1, allocatable :: codeword(:), decoded(:), message(:)
|
|
|
|
real*8, allocatable :: lratio(:), rxdata(:)
|
2016-08-03 20:46:57 -04:00
|
|
|
integer ihash
|
2016-04-23 21:12:38 -04:00
|
|
|
|
|
|
|
nargs=iargc()
|
|
|
|
if(nargs.ne.7) then
|
2016-04-24 11:08:57 -04:00
|
|
|
print*,'Usage: ldpcsim <pchk file prefix > N K niter ndither #trials s '
|
2016-08-03 20:46:57 -04:00
|
|
|
print*,'eg: ldpcsim "/pathto/peg-32-16-reg3" 32 16 10 1 1000 0.75'
|
2016-04-23 21:12:38 -04:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
call getarg(1,prefix)
|
|
|
|
call getarg(2,arg)
|
|
|
|
read(arg,*) N
|
|
|
|
call getarg(3,arg)
|
|
|
|
read(arg,*) K
|
|
|
|
call getarg(4,arg)
|
|
|
|
read(arg,*) max_iterations
|
|
|
|
call getarg(5,arg)
|
|
|
|
read(arg,*) max_dither
|
|
|
|
call getarg(6,arg)
|
|
|
|
read(arg,*) ntrials
|
|
|
|
call getarg(7,arg)
|
|
|
|
read(arg,*) s
|
|
|
|
|
|
|
|
pchk_file=trim(prefix)//".pchk"
|
|
|
|
gen_file=trim(prefix)//".gen"
|
|
|
|
|
2016-08-03 20:46:57 -04:00
|
|
|
rate=real(K)/real(N)
|
|
|
|
write(*,*) "rate: ",rate
|
2016-04-23 21:12:38 -04:00
|
|
|
! don't count hash bits as data bits
|
2016-08-03 20:46:57 -04:00
|
|
|
!rate=5.0/real(N)
|
2016-04-23 21:12:38 -04:00
|
|
|
|
|
|
|
write(*,*) "pchk file: ",pchk_file
|
|
|
|
write(*,*) "niter= ",max_iterations," ndither= ",max_dither," s= ",s
|
|
|
|
|
|
|
|
allocate ( codeword(N), decoded(K), message(K) )
|
|
|
|
allocate ( lratio(N), rxdata(N) )
|
|
|
|
call init_ldpc(trim(pchk_file)//char(0),trim(gen_file)//char(0))
|
|
|
|
|
2016-08-03 20:46:57 -04:00
|
|
|
msg="K9AN K1JT RRR"
|
|
|
|
irpt=62
|
|
|
|
call hash(msg,22,ihash)
|
|
|
|
ihash=iand(ihash,1023) !10-bit hash
|
|
|
|
ig=64*ihash + irpt !6-bit report
|
|
|
|
write(*,*) irpt,ihash,ig
|
|
|
|
|
|
|
|
do i=1,16
|
|
|
|
message(i)=iand(1,ishft(ig,1-i))
|
2016-04-23 21:12:38 -04:00
|
|
|
enddo
|
|
|
|
|
|
|
|
call ldpc_encode(message,codeword)
|
2016-08-03 20:46:57 -04:00
|
|
|
call init_random_seed()
|
2016-04-23 21:12:38 -04:00
|
|
|
|
|
|
|
write(*,*) "Eb/N0 ngood nundetected nbadhash"
|
2016-08-03 20:46:57 -04:00
|
|
|
do idb = -6, 14
|
|
|
|
db=idb/2.0-1.0
|
2016-04-23 21:12:38 -04:00
|
|
|
sigma=1/sqrt( 2*rate*(10**(db/10.0)) )
|
|
|
|
ngood=0
|
|
|
|
nue=0
|
|
|
|
nbadhash=0
|
|
|
|
|
|
|
|
do itrial=1, ntrials
|
2016-08-03 20:46:57 -04:00
|
|
|
call sgran()
|
2016-04-24 11:08:57 -04:00
|
|
|
! Create a realization of a noisy received word
|
2016-04-23 21:12:38 -04:00
|
|
|
do i=1,N
|
|
|
|
rxdata(i) = 2.0*(codeword(i)-0.5) + sigma*gran()
|
2016-08-03 20:46:57 -04:00
|
|
|
!write(*,*) i,gran()
|
2016-04-23 21:12:38 -04:00
|
|
|
enddo
|
|
|
|
|
2016-04-24 11:08:57 -04:00
|
|
|
! Correct signal normalization is important for this decoder.
|
2016-04-23 21:12:38 -04:00
|
|
|
rxav=sum(rxdata)/N
|
|
|
|
rx2av=sum(rxdata*rxdata)/N
|
|
|
|
rxsig=sqrt(rx2av-rxav*rxav)
|
|
|
|
rxdata=rxdata/rxsig
|
|
|
|
! To match the metric to the channel, s should be set to the noise standard deviation.
|
2016-04-24 11:08:57 -04:00
|
|
|
! For now, set s to the value that optimizes decode probability near threshold.
|
2016-04-23 21:12:38 -04:00
|
|
|
! The s parameter can be tuned to trade a few tenth's dB of threshold for an order of
|
|
|
|
! magnitude in UER
|
2016-08-03 20:46:57 -04:00
|
|
|
if( s .le. 0 ) then
|
|
|
|
ss=sigma
|
|
|
|
else
|
|
|
|
ss=s
|
|
|
|
endif
|
|
|
|
|
2016-04-23 21:12:38 -04:00
|
|
|
do i=1,N
|
|
|
|
lratio(i)=exp(2.0*rxdata(i)/(ss*ss))
|
|
|
|
enddo
|
|
|
|
|
|
|
|
! max_iterations is max number of belief propagation iterations
|
|
|
|
call ldpc_decode(lratio, decoded, max_iterations, niterations, max_dither, ndither)
|
2016-04-24 11:08:57 -04:00
|
|
|
! If the decoder finds a valid codeword, niterations will be .ge. 0.
|
2016-04-23 21:12:38 -04:00
|
|
|
if( niterations .ge. 0 ) then
|
|
|
|
nueflag=0
|
|
|
|
nhashflag=0
|
2016-04-24 11:08:57 -04:00
|
|
|
|
2016-08-03 20:46:57 -04:00
|
|
|
imsg=0
|
|
|
|
do i=1,16
|
|
|
|
imsg=ishft(imsg,1)+iand(1,decoded(17-i))
|
2016-04-23 21:12:38 -04:00
|
|
|
enddo
|
2016-08-03 20:46:57 -04:00
|
|
|
nrxrpt=iand(imsg,63)
|
|
|
|
nrxhash=(imsg-nrxrpt)/64
|
2016-04-24 11:08:57 -04:00
|
|
|
|
2016-08-03 20:46:57 -04:00
|
|
|
if( nrxhash .ne. ihash ) then
|
2016-04-23 21:12:38 -04:00
|
|
|
nbadhash=nbadhash+1
|
|
|
|
nhashflag=1
|
|
|
|
endif
|
|
|
|
|
2016-04-24 11:08:57 -04:00
|
|
|
! Check the message plus hash against what was sent.
|
2016-04-23 21:12:38 -04:00
|
|
|
do i=1,K
|
|
|
|
if( message(i) .ne. decoded(i) ) then
|
|
|
|
nueflag=1
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
|
|
|
|
if( nhashflag .eq. 0 .and. nueflag .eq. 0 ) then
|
|
|
|
ngood=ngood+1
|
|
|
|
else if( nhashflag .eq. 0 .and. nueflag .eq. 1 ) then
|
|
|
|
nue=nue+1;
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
|
|
|
|
write(*,"(f4.1,1x,i8,1x,i8,1x,i8)") db,ngood,nue,nbadhash
|
|
|
|
|
|
|
|
enddo
|
|
|
|
|
|
|
|
end program ldpcsim
|