-
Notifications
You must be signed in to change notification settings - Fork 14
/
srsSRSEstimatorUnittest.m
326 lines (270 loc) · 12.8 KB
/
srsSRSEstimatorUnittest.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
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
%srsSRSEstimatorUnittest Unit tests for SRS processor functions.
% This class implements unit tests for the SRS processor functions using the
% matlab.unittest framework. The simplest use consists in creating an object with
% testCase = srsSRSEstimatorUnittest
% and then running all the tests with
% testResults = testCase.run
%
% srsSRSEstimatorUnittest Properties (Constant):
%
% srsBlock - The tested block (i.e., 'srs_estimator').
% srsBlockType - The type of the tested block, including layer
% (i.e., 'phy/upper/signal_processors').
%
% srsSRSEstimatorUnittest Properties (ClassSetupParameter):
%
% outputPath - Path to the folder where the test results are stored.
%
% srsSRSEstimatorUnittest Properties (TestParameter):
%
% Numerology - Defines the subcarrier spacing (0, 1, 2, 3, 4).
% NumSRSSymbols - Number of OFDM symbols for SRS.
% NumSRSPorts - Number of transmit antenna ports.
% NumRxPorts - Number of receive antenna ports.
% KTC - Comb size.
%
% srsSRSEstimatorUnittest Methods (TestTags = {'testvector'}):
%
% testvectorGenerationCases - Generates a test vectors according to the provided
% parameters.
%
% srsSRSEstimatorUnittest Methods (Access = protected):
%
% addTestIncludesToHeaderFile - Adds include directives to the test header file.
% addTestDefinitionToHeaderFile - Adds details (e.g., type/variable declarations)
% to the test header file.
%
% See also matlab.unittest.
% Copyright 2021-2024 Software Radio Systems Limited
%
% This file is part of srsRAN-matlab.
%
% srsRAN-matlab is free software: you can redistribute it and/or
% modify it under the terms of the BSD 2-Clause License.
%
% srsRAN-matlab is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% BSD 2-Clause License for more details.
%
% A copy of the BSD 2-Clause License can be found in the LICENSE
% file in the top-level directory of this distribution.
classdef srsSRSEstimatorUnittest < srsTest.srsBlockUnittest
properties (Constant)
%Name of the tested block.
srsBlock = 'srs_estimator'
%Type of the tested block.
srsBlockType = 'phy/upper/signal_processors/srs'
end
properties (ClassSetupParameter)
%Path to results folder (old 'srs_estimator' tests will be erased).
outputPath = {['testSRS', char(datetime('now', 'Format', 'yyyyMMdd''T''HHmmss'))]}
end
properties (TestParameter)
%Numerology, it determines the subcarrier spacing.
Numerology = {0 1}
%Number of SRS symbols.
NumSRSSymbols = {1 2 4}
%Number of SRS transmit ports.
NumSRSPorts = {2 4}
%Number of SRS receive ports.
NumRxPorts = {1 2 4}
%Comb size, 2 or 4.
KTC = {2 4}
end
methods (Access = protected)
function addTestIncludesToHeaderFile(~, fileID)
%addTestIncludesToHeaderFile Adds include directives to the test header file.
fprintf(fileID, '#include "srsran/phy/upper/signal_processors/srs/srs_estimator_configuration.h"\n');
fprintf(fileID, '#include "srsran/phy/upper/signal_processors/srs/srs_estimator_result.h"\n');
fprintf(fileID, '#include "srsran/ran/phy_time_unit.h"\n');
end
function addTestDefinitionToHeaderFile(~, fileID)
%addTestDetailsToHeaderFile Adds details (e.g., type/variable declarations) to the test header file.
fprintf(fileID, 'struct test_context {\n');
fprintf(fileID, ' srs_estimator_configuration config;\n');
fprintf(fileID, ' srs_estimator_result result;\n');
fprintf(fileID, '};\n');
fprintf(fileID, '\n');
fprintf(fileID, 'struct test_case_t {\n');
fprintf(fileID, ' test_context context;\n');
fprintf(fileID, ' file_vector<resource_grid_reader_spy::expected_entry_t> rx_grid;\n');
fprintf(fileID, '};\n');
end
end % of methods (Access = protected)
methods (Test, TestTags = {'testvector'})
function testvectorGenerationCases(testCase, Numerology, NumSRSPorts, NumSRSSymbols, NumRxPorts, KTC)
%testvectorGenerationCases Generates a test vector for the given
%configuration
% NCellID, NSlot and PRB occupation are randomly generated.
import srsTest.helpers.cellarray2str
import srsTest.helpers.writeResourceGridEntryFile
import srsLib.phy.helpers.srsSRSValidateConfig
% Current fixed parameter values.
nSizeGrid = 270;
nStartGrid = 0;
switch(Numerology)
case 0
nSlot = randi([0, 9]);
case 1
nSlot = randi([0, 19]);
case 2
nSlot = randi([0, 39]);
case 3
nSlot = randi([0, 79]);
case 4
nSlot = randi([0, 159]);
otherwise
return;
end
subcarrierSpacing = 15 * (2 .^ Numerology);
% Use a random NCellID, NFrame.
nCellID = randi([0, 1007]);
nFrame = randi([0, 1023]);
cyclicPrefix = 'normal';
% Configure the carrier according to the test parameters.
carrier = nrCarrierConfig( ...
NCellID=nCellID, ...
SubcarrierSpacing=subcarrierSpacing,...
NSizeGrid=nSizeGrid, ...
NStartGrid=nStartGrid, ...
NSlot=nSlot, ...
NFrame=nFrame, ...
CyclicPrefix=cyclicPrefix ...
);
% Generate random SRS parameters.
symbolStart = randi([0, 14 - NumSRSSymbols]);
NSRSID = randi([0, 1023]);
srs = struct();
while ~srsSRSValidateConfig(carrier, srs)
% Generate random SRS parameters that could be invalid.
frequencyStart = randi([0, 10]);
CSRS = randi([0, 63]);
BSRS = randi([0, 3]);
KBarTC = randi([0, KTC - 1]);
BHop = randi([BSRS, 3]);
cyclicShift = randi([0, 11]);
NRRC = randi([0, 67]);
% Create the SRS configuration according to the test parameters.
srs = nrSRSConfig('NumSRSPorts', NumSRSPorts,...
'SymbolStart', symbolStart,...
'NumSRSSymbols', NumSRSSymbols,...
'FrequencyStart', frequencyStart,...
'CSRS', CSRS,...
'BSRS', BSRS,...
'BHop', BHop,...
'KTC', KTC,...
'KBarTC', KBarTC,...
'NSRSID', NSRSID,...
'CyclicShift', cyclicShift,...
'NRRC', NRRC);
end
% Generate a unique test ID.
testID = testCase.generateTestID;
%Generate uplink SRS resource element indices.
symbolIndices = nrSRSIndices(carrier, srs, 'IndexStyle', 'subscript', 'IndexBase', '0based');
%Generate uplink SRS symbols.
txSymbols = nrSRS(carrier, srs);
% Create transmit resource grid.
txGrid = nrResourceGrid(carrier, NumSRSPorts);
% Create transmit grid RE indices.
numSubcarriers = size(txGrid, 1);
numOfdmSymbols = size(txGrid, 2);
txSymbolIndices = sub2ind([numSubcarriers, numOfdmSymbols, NumSRSPorts],...
symbolIndices(:, 1) + 1, symbolIndices(:, 2) + 1, symbolIndices(:, 3) + 1);
% Write RE in the resource grid.
txGrid(txSymbolIndices) = txSymbols;
% Create receive resource grid.
rxGrid = nrResourceGrid(carrier, NumRxPorts);
% Create propagation channel matrix.
H = complex(nan(NumRxPorts, NumSRSPorts));
for Nr = 1:NumRxPorts
for Nt = 1:NumSRSPorts
H(Nr, Nt) = exp(2i * pi * rand());
rxGrid(:, :, Nr) = rxGrid(:, :, Nr) + H(Nr, Nt) * txGrid(:, :, Nt);
end
end
% Maximum time aligment that we expect in seconds.
maxTimeAligment = 16 / (2048 * 1000 * carrier.SubcarrierSpacing);
% Select random time aligment.
timeAligment = (2 * rand() - 1) * maxTimeAligment;
% Create time aligment frequency shift.
freqResponse = exp(-2i * pi * (0:numSubcarriers - 1).' * timeAligment * 1000 * carrier.SubcarrierSpacing);
% Apply frequency response in all the received grid.
rxGrid = rxGrid .* repmat(freqResponse, 1, numOfdmSymbols, NumRxPorts);
% Prepare receive symbols indices. Combine all transmit ports.
symbolIndices(:, 3) = 0;
symbolIndices = unique(symbolIndices, 'rows');
numRxRe = size(symbolIndices, 1);
rxSymbolSubscripts = zeros(numRxRe, 3);
for Nr = 0:NumRxPorts-1
% Combine all indices to same receive port.
symbolIndices(:, 3) = Nr;
% Write coordinates with the receive port.
rxSymbolSubscripts(numRxRe * Nr + (1:numRxRe), :) = symbolIndices;
end
% Convert subscripts to indices.
rxSymbolIndices = sub2ind([numSubcarriers, numOfdmSymbols, NumRxPorts],...
rxSymbolSubscripts(:, 1) + 1, rxSymbolSubscripts(:, 2) + 1, rxSymbolSubscripts(:, 3) + 1);
% Extract RE used for SRS from the resoyrce grid.
rxSymbols = rxGrid(rxSymbolIndices);
% Write the generated SRS sequence into a binary file.
testCase.saveDataFile('_test_input', testID,...
@writeResourceGridEntryFile, rxSymbols, rxSymbolSubscripts);
% Generate a 'slot_point' configuration string.
slotPointConfig = cellarray2str({Numerology, nFrame,...
floor(nSlot / carrier.SlotsPerSubframe),...
rem(nSlot, carrier.SlotsPerSubframe)}, true);
hoppingConfigStr = 'srs_resource_configuration::group_or_sequence_hopping_enum::neither';
periodicityConfig = 'nullopt';
if strcmp(srs.ResourceType, 'periodic')
periodicityConfig = '{}';
end
numSRSPortsStr = sprintf('srs_resource_configuration::one_two_four_enum(%d)', NumSRSPorts);
numSRSSymbolsStr = sprintf('srs_resource_configuration::one_two_four_enum(%d)', NumSRSSymbols);
combSizeStr = sprintf('srs_resource_configuration::comb_size_enum(%d)', KTC);
portsConfig = num2cell(0:NumRxPorts-1);
channelCell = {...
{H(:)},... % coefficients
NumRxPorts,... % nof_rx_ports
NumSRSPorts,... % nof_tx_ports
};
tAlignStr = sprintf('{%.9f}', timeAligment);
srsResourceCell = {...
numSRSPortsStr,... % nof_antenna_ports
numSRSSymbolsStr,... % nof_symbols
symbolStart,... % start_symbol
CSRS,... % configuration_index
NSRSID,... % sequence_id
BSRS,... % bandwidth_index
combSizeStr,... % comb_size
KBarTC,... % comb_offset
cyclicShift,... % cyclic_shift
NRRC,... % freq_position
frequencyStart,... % freq_shift
BHop,... % freq_hopping
hoppingConfigStr,... % hopping
periodicityConfig,... % periodicity
};
configCell = {...
slotPointConfig,... % slot
srsResourceCell,... % resource
portsConfig,... % ports
};
resultCell = { ...
channelCell,... % channel_matrix
0,... % noise_variance
tAlignStr,... % time_align
};
testContext = {...
configCell,... % config
resultCell,... % result
};
% Generate the test case entry.
testCaseString = testCase.testCaseToString(testID,...
testContext, true, '_test_input');
% Add the test to the file header.
testCase.addTestToHeaderFile(testCase.headerFileID, testCaseString);
end % of function testvectorGenerationCases
end % of methods (Test, TestTags = {'testvector'})
end % of classdef srsSRSUnittest