gf2
High-performance binary (GF(2)) matrix operations library for Python.
Installation
# Install from source (development)
git clone https://github.com/kkKaan/gf2.git
cd gf2
pip install -e ".[dev,test]"
Quick Start
import gf2
# Create matrices
A = gf2.identity(5) # 5x5 identity matrix
B = gf2.random_sparse(5, 5, density=0.3) # Random sparse matrix
C = gf2.zeros(3, 4) # 3x4 zero matrix
# Basic operations (all in GF(2))
sum_matrix = gf2.add(A, B) # XOR addition
product = gf2.multiply(A, B) # Binary matrix multiplication
A_transpose = gf2.transpose(A) # Matrix transpose
# Linear algebra
r = gf2.rank(A) # Matrix rank
det_A = gf2.det(A) # Determinant (0 or 1)
is_inv = gf2.is_invertible(A) # Invertibility check
# Solve linear systems Ax = b over GF(2)
b = [1, 0, 1, 0, 1]
x = gf2.solve(A, b) # Exact solution
null_space = gf2.nullspace(A) # Null space basis
# Matrix generators for coding theory
H = gf2.hamming_matrix(3) # Hamming code parity check
ldpc = gf2.ldpc_matrix(100, 200, row_weight=4) # LDPC code (m*row_weight must divide n)
circ = gf2.circulant([1, 0, 1, 1]) # Circulant matrix
Advanced Usage
Custom Sparse Matrices
# Create from coordinates
coords = [(0, 1), (1, 2), (2, 0)] # (row, col) positions
matrix = gf2.create_sparse_matrix(3, 3, coordinates=coords)
# Different storage formats are automatically chosen
dense_like = gf2.random_sparse(10, 10, density=0.8) # Uses bit-packed storage
very_sparse = gf2.random_sparse(1000, 1000, density=0.01) # Uses CSR
# Access internal representation
print(matrix.memory_usage()) # Shows compression statistics
Coding Theory Applications
# Generate LDPC codes
H = gf2.ldpc_matrix(m=500, n=1000, row_weight=6, method="progressive")
# Classical codes
hamming_H = gf2.hamming_matrix(r=4) # [15,11,3] Hamming code
rep_H = gf2.repetition_matrix(5) # length-5 repetition code
# Quantum codes (exact CSS commutation: H_x @ H_z.T == 0)
H_x, H_z = gf2.surface_code_matrix(distance=3) # planar surface code, k=1
Q_x, Q_z = gf2.hypergraph_product(hamming_H, rep_H) # Tillich-Zemor product
# Structured matrices
toeplitz_A = gf2.toeplitz([1, 0, 1], [1, 1, 0, 1])
circ = gf2.circulant([1, 0, 1, 1])
Performance
gf2 stores rows bit-packed and does GF(2) arithmetic with whole-row bitwise operations, so a row XOR costs one machine word per 64 columns instead of one Python step per column.
- Elimination (rank, nullspace, solve, inverse) runs on Python big integers below n = 384 and switches to vectorised NumPy uint64 rows above it, because the crossover between the two was measured, not assumed.
- Multiplication uses the Method of Four Russians: one lookup table of 2^8 pre-combined rows of B serves every row of A, so the XOR count drops from O(mn/2) to O(mn/8 + n/8 * 256).
- Storage picks CSR or bit-packed automatically from the density.
Measured results
Numbers, methodology, and the exact environment live in
benchmarks/BENCHMARK_RESULTS.md, which is
generated from benchmarks/results.json rather than written by hand.
To reproduce:
python benchmarks/bench_gf2.py # measure -> benchmarks/results.json
python benchmarks/make_report.py # results.json -> BENCHMARK_RESULTS.md
Summary against the fastest honest rival at each size, square matrices at 50% density, Python 3.11 / NumPy 2.2.6 / galois 0.4.6 on an arm64 Mac:
| operation | n=128 | n=512 | n=1024 |
|---|---|---|---|
| rank | 2.3x faster than packed-NumPy | par with packed-NumPy | 1.1x slower than packed-NumPy |
| nullspace vector | 1.9x faster than packed-NumPy | 1.5x faster | 1.4x faster |
| multiply | 5.9x slower than galois | 1.3x slower than galois | par with galois; 85x faster than NumPy |
Against galois, gf2's rank is 12-27x faster and its nullspace 6-13x faster
across this range. Against a naive element-wise NumPy loop gf2 looks 9-13x
faster, but that comparison is not meaningful and the benchmark labels it as a
strawman: the baseline that matters is bit-packed uint64 NumPy, which is the
numpy-packed row in the report.
Honest limitations
- Dense matrix multiply is not gf2's strength.
galoisis faster below n = 1024 and gf2 only draws level there. If dense GF(2) multiplication dominates your workload, usegaloisorm4ri. - Peak memory during multiply is higher than NumPy's, because the Four Russians table and the unpacked selector are transient allocations. Bit packing wins on stored size, not on scratch space.
- Everything here is pure Python plus NumPy. A C or Cython kernel would move the elimination crossover a long way down.
Development
# Clone and setup
git clone https://github.com/kkKaan/gf2.git
cd gf2
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -e ".[dev,test]"
# Run tests
pytest tests/
# Code quality
ruff check . # Linting
ruff format . # Formatting
mypy gf2/ # Type checking
# Install pre-commit hooks
pre-commit install
Simon's Algorithm Postprocessing
gf2 provides fast GF(2) nullspace routines used in Simon-style workflows:
- High-level basis:
gf2.nullspace(A)returns a basis as a list of 0/1 lists - Fast bitwise single solution:
gf2.nullspace_bitwise(A)->(solution_bits: str, seconds: float) - Zero-overhead raw input:
gf2.nullspace_fast(matrix)->(solution_bits: str, seconds: float)
Example using nullspace_fast directly on list-of-lists:
from gf2 import nullspace_fast
matrix = [
[1, 0, 1, 0, 1],
[0, 1, 1, 0, 0],
[1, 1, 0, 1, 0], # use n-1 rows for underdetermined system
]
solution_bits, elapsed = nullspace_fast(matrix)
print(solution_bits, elapsed)
This returns a nontrivial nullspace vector as a binary string and the elapsed time, matching usage patterns in Simon postprocessing scripts.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gf2-0.1.0.tar.gz.
File metadata
- Download URL: gf2-0.1.0.tar.gz
- Upload date:
- Size: 93.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b31207085454cc564b6280f16fefc73f7f76875c22a8a13a26911e360319f2e6
|
|
| MD5 |
8e9779654e3e066e45faac9f46a328f1
|
|
| BLAKE2b-256 |
dd2db4ae8f148773b4fbfa53c760c3f609c182e397c2cceb8291a5816481974b
|
File details
Details for the file gf2-0.1.0-py3-none-any.whl.
File metadata
- Download URL: gf2-0.1.0-py3-none-any.whl
- Upload date:
- Size: 34.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3606ffef54da6789428a473aa919cc5c751d734d1ea148486b2f07512b049013
|
|
| MD5 |
738609b8cd71f6a806f5eb556e0532e8
|
|
| BLAKE2b-256 |
e402faa5ff1376f992c3b17482ee6b5bca1111ce47e6312f6d6231dfad73f9bd
|