aboutsummaryrefslogtreecommitdiff
path: root/octave/vq_compare.m
blob: 0a156c1a45d0b1a69d76e87852bb8206dd7208d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
% vq_compare.m
% David Rowe Sep 2021
%
% Compare the Eb/No performance of Vector Quantisers (robustness to bit errors) using
% Spectral Distortion (SD) measure.

#{
  usage:

  1. Generate the initial VQ (vq_stage1.f32) and input test vector file (all_speech_8k_lim.f32):
 
    cd codec2/build_linux
    ../script/train_trellis.sh

  2. Run the Psuedo-Gray binary switch tool to optimise the VQ against single bit errors:

    ./misc/vq_binary_switch -d 20 vq_stage1.f32 vq_stage1_bs001.f32 -m 5000 --st 2 --en 16 -f

    This can take a while, but if you ctrl-C at any time it will have saved the most recent optimised VQ.
   
  3. Run this script to compare the two VQs:

    octave:34> vq_compare
#}


function vq_compare(action="run_curves", vq_fn, dec=1, EbNodB=3, in_fn, out_fn)
  more off;
  randn('state',1);
  graphics_toolkit("gnuplot");
  
  if strcmp(action, "run_curves")
    run_curves(30*100);
  end
  if strcmp(action, "vq_file")
    vq_file(vq_fn, dec, EbNodB, in_fn, out_fn)
  end
endfunction


% -------------------------------------------------------------------

% converts a decimal value to a soft dec binary value
function c = dec2sd(dec, nbits)
    
    % convert to binary

    c = zeros(1,nbits);
    for j=0:nbits-1
      mask = 2.^j;
      if bitand(dec,mask)
        c(nbits-j) = 1;
      end
    end

    % map to +/- 1

    c = -1 + 2*c;
endfunction

% fast version of vector quantiser
function [indexes target_] = vector_quantiser_fast(vq, target, verbose=1)
  [vq_size K] = size(vq);
  [ntarget tmp] = size(target);
  target_ = zeros(ntarget,K);
  indexes = zeros(1,ntarget);

  % pre-compute energy of each VQ vector
  vqsq = zeros(vq_size,1);
  for i=1:vq_size
    vqsq(i) = vq(i,:)*vq(i,:)';
  end

  % use efficient matrix multiplies to search for best match to target
  for i=1:ntarget
    best_e = 1E32;
    e = vqsq - 2*(vq * target(i,:)');
    [best_e best_ind] = min(e);
    if verbose printf("best_e: %f best_ind: %d\n", best_e, best_ind), end;
    target_(i,:) = vq(best_ind,:); indexes(i) = best_ind;
  end
endfunction


% VQ a target sequence of frames then run a test using vanilla uncoded/trellis decoder
function results = run_test(target, vq, EbNo, verbose)
  [frames tmp]      = size(target);
  [vq_length tmp]   = size(vq);
  nbits             = log2(vq_length);
  nerrors           = 0;
  tbits             = 0;
  nframes           = 0;
  nper              = 0;
  
  % Vector Quantise target vectors sequence
  [tx_indexes target_ ] = vector_quantiser_fast(vq, target, verbose);
  % use convention of indexes starting from 0
  tx_indexes -= 1; 
  %  mean SD of VQ with no errors
  diff = target - target_;
  mse_noerrors = mean(diff(:).^2);
  
  % construct tx symbol codewords from VQ indexes
  tx_codewords = zeros(frames, nbits);
  for f=1:frames
    tx_codewords(f,:) = dec2sd(tx_indexes(f), nbits);
  end

  rx_codewords = tx_codewords + randn(frames, nbits)*sqrt(1/(2*EbNo));
  rx_indexes = zeros(1,frames);

  for f=1:frames
    tx_bits        = tx_codewords(f,:) > 0;
    rx_bits        = rx_codewords(f,:) > 0;
    rx_indexes(f)  = sum(rx_bits .* 2.^(nbits-1:-1:0));
    errors         = sum(xor(tx_bits, rx_bits));
    nerrors       += errors;
    if errors nper++;, end
    tbits += nbits;
    nframes++;
  end

  EbNodB = 10*log10(EbNo);
  target_ = vq(rx_indexes+1,:);
  diff = target - target_;
  mse = mean(diff(:).^2);
  printf("Eb/No: %3.2f dB nframes: %3d nerrors: %4d BER: %4.3f PER: %3.2f mse: %3.2f %3.2f\n", 
         EbNodB, nframes, nerrors, nerrors/tbits, nper/nframes, mse_noerrors, mse);
  results.ber = nerrors/tbits;	 
  results.per = nper/nframes;	 
  results.mse_noerrors = mse_noerrors;
  results.mse = mse;
  results.tx_indexes = tx_indexes;
  results.rx_indexes = rx_indexes;
endfunction

% VQ a target sequence of frames then run a test using a LDPC code
function results = run_test_ldpc(target, vq, EbNo, verbose)
  [frames tmp]      = size(target);
  [vq_length tmp]   = size(vq);
  nbits             = log2(vq_length);
  nerrors           = 0;
  tbits             = 0;
  nframes           = 0;
  nper              = 0;
  
  % init LDPC code
  mod_order = 4; bps = 2;
  modulation = 'QPSK';
  mapping = 'gray';
  max_iterations = 100; demod_type = 0; decoder_type = 0;
  ldpc; init_cml();
  tempStruct = load("HRA_56_56.txt");
  b = fieldnames(tempStruct);
  ldpcArrayName = b{1,1};
  % extract the array from the struct
  HRA = tempStruct.(ldpcArrayName);
  [code_param framesize rate] = ldpc_init_user(HRA, modulation, mod_order, mapping);

  % set up noise
  EbNodB = 10*log10(EbNo);
  EsNodB = EbNodB + 10*log10(rate) + 10*log10(bps);
  EsNo = 10^(EsNodB/10);
  variance = 1/EsNo;

  % Vector Quantise target vectors sequence
  [tx_indexes target_ ] = vector_quantiser_fast(vq, target, verbose);
  % use convention of indexes starting from 0
  tx_indexes -= 1; 
  %  mean SD of VQ with no errors
  diff = target - target_;
  mse_noerrors = mean(diff(:).^2);

  % construct tx frames x nbit matrix using VQ indexes
  tx_bits = zeros(frames, nbits);
  for f=1:frames
    tx_bits(f,:) = dec2sd(tx_indexes(f), nbits) > 0;
  end

  % find a superframe size, that has an integer number of nbits and data_bits_per_frame frames
  bits_per_superframe = nbits;
  while mod(bits_per_superframe,nbits) || mod(bits_per_superframe,code_param.data_bits_per_frame)
    bits_per_superframe += nbits;
  end

  Nsuperframes = floor(frames*nbits/bits_per_superframe);
  Nldpc_codewords = Nsuperframes*bits_per_superframe/code_param.data_bits_per_frame;
  frames = Nsuperframes*bits_per_superframe/nbits;
  %printf("bits_per_superframe: %d Nldpc_codewords: %d frames: %d\n", bits_per_superframe, Nldpc_codewords, frames);
  
  % reshape tx_bits matrix into Nldpc_codewords x data_bits_per_frame
  tx_bits = tx_bits(1:frames,:);
  tx_bits_ldpc = reshape(tx_bits',code_param.data_bits_per_frame, Nldpc_codewords)';

  % modulate tx symbols
  tx_symbols = [];
  for nn=1:Nldpc_codewords
    [tx_codeword atx_symbols] = ldpc_enc(tx_bits_ldpc(nn,:), code_param);
    tx_symbols = [tx_symbols atx_symbols];
  end
  
  noise = sqrt(variance*0.5)*(randn(1,length(tx_symbols)) + j*randn(1,length(tx_symbols)));
  rx_symbols = tx_symbols+noise;
  
  % LDPC decode  
  for nn = 1:Nldpc_codewords
    st = (nn-1)*code_param.coded_syms_per_frame + 1;
    en = (nn)*code_param.coded_syms_per_frame;

    arx_codeword = ldpc_dec(code_param, max_iterations, demod_type, decoder_type, rx_symbols(st:en), EsNo, ones(1,code_param.coded_syms_per_frame));
    rx_bits_ldpc(nn,:) = arx_codeword(1:code_param.data_bits_per_frame);
  end
  
  % reshape rx_bits_ldpc matrix into frames x nbits
  rx_bits = reshape(rx_bits_ldpc',nbits,frames)';

  rx_indexes = tx_indexes;
  for f=1:frames
    rx_indexes(f)  = sum(rx_bits(f,:) .* 2.^(nbits-1:-1:0));
    errors         = sum(xor(tx_bits(f,:), rx_bits(f,:)));
    nerrors       += errors;
    if errors nper++;, end
    tbits += nbits;
    nframes++;
  end

  EbNodB = 10*log10(EbNo);
  target_ = vq(rx_indexes+1,:);
  diff = target - target_;
  mse = mean(diff(:).^2);
  printf("Eb/No: %3.2f dB nframes: %4d nerrors: %4d BER: %4.3f PER: %3.2f mse: %3.2f %3.2f\n", 
         EbNodB, nframes, nerrors, nerrors/tbits, nper/nframes, mse_noerrors, mse);
  results.ber = nerrors/tbits;	 
  results.per = nper/nframes;	 
  results.mse = mse;
  results.tx_indexes = tx_indexes;
  results.rx_indexes = rx_indexes;
endfunction

% Simulations ---------------------------------------------------------------------

% top level function to set up and run a test with a specific vq
function [results target_] = run_test_vq(vq_fn, target_fn, nframes=100, dec=1, EbNodB=3, ldpc_en=0, verbose=0)
  K = 20; K_st=2+1; K_en=16+1;
  
  % load VQ
  vq = load_f32(vq_fn, K);
  [vq_size tmp] = size(vq);
  vqsub = vq(:,K_st:K_en);
  
  % load sequence of target vectors we wish to VQ
  target = load_f32(target_fn, K);

  % limit test to the first nframes vectors
  if nframes != -1
    last = nframes;
  else
    last = length(target);
  end
  target = target(1:dec:last, K_st:K_en);
  
  % run a test
  EbNo=10^(EbNodB/10);
  if ldpc_en
    results = run_test_ldpc(target, vqsub, EbNo, verbose);
  else
    results = run_test(target, vqsub, EbNo, verbose);
  end
  if verbose
    for f=2:nframes-1
      printf("f: %03d tx_index: %04d rx_index: %04d\n", f,  results.tx_indexes(f), results.rx_indexes(f));
    end
  end

  % return full band vq-ed vectors
  target_ = zeros(last,K);
  target_(1:dec:last,:) = vq(results.rx_indexes+1,:);
  
  % use linear interpolation to restore original frame rate
  for f=1:dec:last-dec
    prev = f; next = f + dec;
    for g=prev+1:next-1
      cnext = (g-prev)/dec; cprev = 1 - cnext;
      target_(g,:) = cprev*target_(prev,:) + cnext*target_(next,:);
      %printf("f: %d g: %d cprev: %f cnext: %f\n", f, g, cprev, cnext);
    end
  end
endfunction

% generate sets of curves
function run_curves(frames=100, dec=1)
  target_fn = "../build_linux/all_speech_8k_lim.f32";
  EbNodB = 0:5;

  results1_ldpc_log = [];
  for i=1:length(EbNodB)
    results = run_test_vq("../build_linux/vq_stage1.f32", target_fn, frames, dec, EbNodB(i), ldpc_en=1, verbose=0);
    results1_ldpc_log = [results1_ldpc_log results];
  end
  results4_ldpc_log = [];
  for i=1:length(EbNodB)
    results = run_test_vq("../build_linux/vq_stage1_bs004.f32", target_fn, frames, dec, EbNodB(i), ldpc_en=1, verbose=0);
    results4_ldpc_log = [results4_ldpc_log results];
  end

  results1_log = [];
  for i=1:length(EbNodB)
    results = run_test_vq("../build_linux/vq_stage1.f32", target_fn, frames, dec, EbNodB(i), ldpc_en=0, verbose=0);
    results1_log = [results1_log results];
  end
  results4_log = [];
  for i=1:length(EbNodB)
    results = run_test_vq("../build_linux/vq_stage1_bs004.f32", target_fn, frames, dec, EbNodB(i), ldpc_en=0, verbose=0);
    results4_log = [results4_log results];
  end
  for i=1:length(results1_log)
    ber(i) = results1_log(i).ber;
    per(i) = results1_log(i).per;
    mse_noerrors(i) = sqrt(results1_log(i).mse_noerrors);
    mse_vq1(i) = sqrt(results1_log(i).mse);
    mse_vq4(i) = sqrt(results4_log(i).mse);
    mse_vq1_ldpc(i) = sqrt(results1_ldpc_log(i).mse);
    mse_vq4_ldpc(i) = sqrt(results4_ldpc_log(i).mse);
  end

  figure(1); clf;
  semilogy(EbNodB, ber, 'g+-;ber;','linewidth', 2); hold on;
  semilogy(EbNodB, per, 'b+-;per;','linewidth', 2);
  grid('minor'); xlabel('Eb/No(dB)');
  hold off;
  
  figure(2); clf;
  plot(EbNodB, mse_noerrors, "b+-;no errors;"); hold on;
  plot(EbNodB, mse_vq1, "g+-;vanilla AWGN;");
  plot(EbNodB, mse_vq4, "b+-;binary switch;");
  plot(EbNodB, mse_vq1_ldpc, "r+-;ldpc (112,56);");
  plot(EbNodB, mse_vq4_ldpc, "k+-;binary switch ldpc (112,56);");
  load trellis_dec3_nstage3.txt
  plot(EbNodB, rms_sd, "c+-;binary switch trellis dec3;");  
  hold off; grid; title("RMS SD (dB)"); xlabel('Eb/No(dB)');
endfunction


function vq_file(vq_fn, dec, EbNodB, in_fn, out_fn)
  [results target_] = run_test_vq(vq_fn, in_fn, nframes=-1, dec, EbNodB, verbose=0);
  save_f32(out_fn, target_);
endfunction