Skip to main content

Simulate LDPC codes, both encoding and decoding

Project description

License: MIT Build Status - GitHub codecov Sourcery

LDPC

My implementation of LDPC codes. My notes regarding theory and implementation appears on GitHub Pages: https://yairmz.github.io/LDPC/
To install:

pip install sim-ldpc

To run tests simply clone, cd into the cloned repo, and run:

python -m pytest

or

python -m pytest --cov-report=html

to run also coverage tests, or

python -m pytest  -n auto --cov-report=html

to run tests in parallel (with number of CPU's dictated by machine) to speed up tests.

Verify static typing with

mypy --strict --config-file .mypy.ini .

Included modules

  • Utilities: implementing various utility operations to assist with encoding, decoding and simulations.
  • Encoder: implementing a generator based encoder, and encoders for IEEE802.11 (WiFi) LDPC codes.
  • Decoder: implementing a Log-SPA based BP decoder.

Basic Example

import numpy as np
from bitstring import BitArray, Bits
from ldpc.decoder import DecoderWiFi, bsc_llr
from ldpc.encoder import EncoderWiFi
from ldpc.wifi_spec_codes import WiFiSpecCode
from ldpc.utils import QCFile

# create information bearing bits
rng = np.random.default_rng()
info_bits = Bits(bytes=rng.bytes(41))[:648//2]
# create encoder with frame of 648 bits, and rate 1/2. Possible rates and frame sizes are per the ieee802.11n spec.
enc = EncoderWiFi(WiFiSpecCode.N648_R12)
# encode bits
encoded = enc.encode(info_bits)

# verify validity of codeword
h = enc.h
np.dot(h, np.array(encoded)) % 2  # creates an all zero vector as required.

# create a decoder which assumes a probability of p=0.05 for bit flips by the channel
# allow up to 20 iterations for the bp decoder.
p = 0.05
decoder = DecoderWiFi(spec=WiFiSpecCode.N648_R12, max_iter=20, channel_model=bsc_llr(p=p))

# create a corrupted version of encoded codeword with error rate p
corrupted = BitArray(encoded)
no_errors = int(len(corrupted)*p)
error_idx = rng.choice(len(corrupted), size=no_errors, replace=False)
for idx in error_idx:
    corrupted[idx] = not corrupted[idx]
decoded, llr, decode_success, num_of_iterations, syndrome, vnode_validity  = decoder.decode(corrupted)
# Verify correct decoding
print(Bits(decoded) == encoded)  # true
info = decoder.info_bits(decoded)

# a decoder can also be instantiated without a channel model, in which case llr is expected to be sent for decoding instead of
# hard channel outputs.
channel = bsc_llr(p=p)
channel_llr = channel(np.array(corrupted, dtype=np.int_))
decoder = DecoderWiFi(spec=WiFiSpecCode.N648_R12, max_iter=20)
decoded, llr2, decode_success, num_of_iterations, syndrome, vnode_validity  = decoder.decode(channel_llr)
print(Bits(decoded) == encoded)  # true
info = decoder.info_bits(decoded)

The example is also included as a jupyter notebook. Note however, that you need to launch the notebook from the correct path for it to be able to access installed packages. To run the notebook:

  1. create a new virtualenv
python3 -m venv ~/.virtualenv/LDPC_env
  1. activate it and install sim-ldpc, and notebook:
source ~/.virtualenv/LDPC_env/bin/activate
pip install sim-ldpc
pip install notebook
  1. run jupyter from within the virtual env for it to have access to all requirements:
~/.virtualenv/LDPC_env/bin/jupyter-notebook
  1. run the notebook

Sources

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sim-ldpc-0.3.0.tar.gz (2.1 MB view details)

Uploaded Source

Built Distribution

sim_ldpc-0.3.0-py3-none-any.whl (2.3 MB view details)

Uploaded Python 3

File details

Details for the file sim-ldpc-0.3.0.tar.gz.

File metadata

  • Download URL: sim-ldpc-0.3.0.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for sim-ldpc-0.3.0.tar.gz
Algorithm Hash digest
SHA256 7ad0e961f0c3c72b0d63746bc5e7c47a70cec26cf754c1968a6b95a5c8fb6c38
MD5 b7b959bfbb1d5dd4ee8874cf12f3e355
BLAKE2b-256 f0205a736ed2394f51222396f11cc04441f27b140afe0a4b4c79a5476b8f08ad

See more details on using hashes here.

File details

Details for the file sim_ldpc-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: sim_ldpc-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for sim_ldpc-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d88ae13db3e6442fa7879002c30d0db50b725883910541d7bcb540e33d7da16c
MD5 6a10d77e6eb84e418cbdf5135a151943
BLAKE2b-256 826d4652a1311e0f89a89954294144af07df8aa2c18dcdb97b6a8b4735ed9fea

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page