-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomputeMiGivenPrecoderMimo.m
81 lines (72 loc) · 3.98 KB
/
computeMiGivenPrecoderMimo.m
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
function computeMiGivenPrecoderMimo(simParamFilePath)
%
% COMPUTEMIGIVENPRECODERMIMO Compute mutual info for a given precoder.
%
% Inputs: str simParamFilePath = path of the m-file with params
% Outputs: --
%
% Max Girnyk
% Stockholm, 2014-10-01
%
% =========================================================================
%
% This Matlab script produces results used in the following paper:
%
% M. A. Girnyk, "Deep-learning based linear precoding for MIMO channels
% with finite-alphabet signaling," Physical Communication 48(2021) 101402
%
% Paper URL: https://arxiv.org/abs/2111.03504
%
% Version: 1.0 (modified 2021-11-14)
%
% License: This code is licensed under the Apache-2.0 license.
% If you use this code in any way for research that
% results in a publication, please cite the above paper
%
% =========================================================================
% Load inputParamStruct ---------------------------------------------------
load(simParamFilePath);
% Signal-related params ---------------------------------------------------
typeModulation = simCaseStruct.signaling.typeModulation;
% Channel-related params --------------------------------------------------
H = simCaseStruct.channel.channelMat;
M = simCaseStruct.channel.nTxAntennas;
N = simCaseStruct.channel.nRxAntennas;
snrIdxCurrent = simCaseStruct.channel.snrIdxCurrent;
% Computation-related params ----------------------------------------------
methodSamplingMi = simCaseStruct.computation.methodSamplingMi;
methodComputationMi = simCaseStruct.computation.methodComputationMi;
methodSamplingMmse = simCaseStruct.computation.methodSamplingMmse;
methodComputationMmse = simCaseStruct.computation.methodComputationMmse;
% Container for precoders -------------------------------------------------
G = simCaseStruct.precoding.precoders{snrIdxCurrent};
snrDb = simCaseStruct.channel.currentSnrDb; % current SNR point
snr = 10^(snrDb/10); % SNR in linear scale
H = sqrt(snr/M)*channelMat; % incorporate SNR into channel matrix
fprintf('################################################################################################################\n');
fprintf('NEW COMPUTATION JOB\n');
fprintf('================================================================================================================\n');
fprintf('Scenario summary: \n');
fprintf('----------------------------------------------------------------------------------------------------------------\n');
fprintf(['Modulation type: \t\t\t\t\t', typeModulation, '\n']);
fprintf(['Signal-to-noise ratio: \t\t\t\t', num2str(snrDb), ' [dB]\n']);
fprintf([num2str(M), 'x', num2str(N), ' MIMO channel matrix: \n']);
printComplexMatrix(H);
fprintf('Precoder:\n');
printComplexMatrix(G);
fprintf(['Computation method MI: \t\t\t\t', methodComputationMi, '\n']);
fprintf(['Sampling method MI: \t\t\t\t', methodSamplingMi, '\n']);
fprintf(['Computation method MMSE: \t\t\t', methodComputationMmse, '\n']);
fprintf(['Sampling method MMSE: \t\t\t\t', methodSamplingMmse, '\n']);
fprintf('================================================================================================================\n');
fprintf('COMPUTATION START... ');
[miFinal, timeFinal] = computeMiMimo(H*G, typeModulation, 'TRUE', 'EXHAUSTIVE', 1e3, 2e3);
fprintf('DONE!\n');
fprintf('================================================================================================================\n');
fprintf(['mutual info: ', num2str(miFinal), ' [bpcu]\n\n']);
% Containers for performance metrics --------------------------------------
simCaseStruct.performance.miBpcu = miFinal;
simCaseStruct.performance.timeElapsedSec = timeFinal;
% Save performance to file --------------------------------------
save(simCaseStruct.cluster.matFileName, 'simCaseStruct');
end