__init__.py (879B)
1 # 2 # SPDX-FileCopyrightText: Copyright (c) 2021-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. 3 # SPDX-License-Identifier: Apache-2.0 4 # 5 """MIMO sub-package of the Sionna library. 6 7 """ 8 9 from .equalization import lmmse_equalizer, zf_equalizer, mf_equalizer 10 from .detection import EPDetector, KBestDetector, LinearDetector,\ 11 MaximumLikelihoodDetector, MaximumLikelihoodDetectorWithPrior,\ 12 MMSEPICDetector 13 from .precoding import zero_forcing_precoder, grid_of_beams_dft_ula,\ 14 grid_of_beams_dft, normalize_precoding_power, flatten_precoding_mat 15 from .stream_management import StreamManagement 16 from .utils import List2LLR, List2LLRSimple, complex2real_vector,\ 17 real2complex_vector, complex2real_matrix, real2complex_matrix,\ 18 complex2real_covariance, real2complex_covariance, complex2real_channel,\ 19 real2complex_channel, whiten_channel