__init__.py (286B)
1 # 2 # SPDX-FileCopyrightText: Copyright (c) 2021-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. 3 # SPDX-License-Identifier: Apache-2.0 4 # 5 """Linear code sub-package of the Sionna library.""" 6 7 from .encoding import LinearEncoder, AllZeroEncoder 8 from .decoding import OSDecoder 9 10