Line-Rate Post-Quantum Byzantine Consensus via L1D-Resident Balanced Ternary
Python
0
1 commits
updated Sep 20, 2026
This repository contains the reference eBPF/XDP drivers, Triton GPU lookup kernels, and microbenchmarking suites for the paper:
"Radix Economy and Balanced Ternary Microarchitectures: Resolving the Memory Wall in Line-Rate Post-Quantum Consensus and Nanoscale Computing"
Target Venues: SOSP / OSDI / ISCA / ASPLOS
xdp_ternary_filter.c - Production eBPF XDP C driver for line-rate packet parsing, SipHash-2-4 pre-authentication, monotonic epoch tracking, and fast-path quorum accumulation.triton_lut_kernel.py - Triton GPU kernel for high-throughput 5-trit decompression on Tensor Cores.benchmark_harness.py - Microarchitectural evaluation reproducing the latency and throughput ablations across 64-byte ternary and 96-byte binary frames.LICENSE - MIT License.# Requires clang and libbpf
clang -O2 -target bpf -c xdp_ternary_filter.c -o xdp_ternary_filter.o
# Attach to your 100GbE network interface (e.g. eth0) in native XDP mode
ip link set dev eth0 xdpgeneric obj xdp_ternary_filter.o sec xdp
# Requires PyTorch and Triton
python3 triton_lut_kernel.py
python3 benchmark_harness.py
@article{grimm2026radix,
title={Radix Economy and Balanced Ternary Microarchitectures: Resolving the Memory Wall in Line-Rate Post-Quantum Consensus and Nanoscale Computing},
author={Grimm, Justin},
year={2026}
}
MIT License - Copyright (c) 2026 Justin Grimm.
1 commits
Python
50.7%
C
49.3%
Line-Rate Post-Quantum Byzantine Consensus via L1D-Resident Balanced Ternary
Python
0
1 commits
updated Sep 20, 2026
This repository contains the reference eBPF/XDP drivers, Triton GPU lookup kernels, and microbenchmarking suites for the paper:
"Radix Economy and Balanced Ternary Microarchitectures: Resolving the Memory Wall in Line-Rate Post-Quantum Consensus and Nanoscale Computing"
Target Venues: SOSP / OSDI / ISCA / ASPLOS
xdp_ternary_filter.c - Production eBPF XDP C driver for line-rate packet parsing, SipHash-2-4 pre-authentication, monotonic epoch tracking, and fast-path quorum accumulation.triton_lut_kernel.py - Triton GPU kernel for high-throughput 5-trit decompression on Tensor Cores.benchmark_harness.py - Microarchitectural evaluation reproducing the latency and throughput ablations across 64-byte ternary and 96-byte binary frames.LICENSE - MIT License.# Requires clang and libbpf
clang -O2 -target bpf -c xdp_ternary_filter.c -o xdp_ternary_filter.o
# Attach to your 100GbE network interface (e.g. eth0) in native XDP mode
ip link set dev eth0 xdpgeneric obj xdp_ternary_filter.o sec xdp
# Requires PyTorch and Triton
python3 triton_lut_kernel.py
python3 benchmark_harness.py
@article{grimm2026radix,
title={Radix Economy and Balanced Ternary Microarchitectures: Resolving the Memory Wall in Line-Rate Post-Quantum Consensus and Nanoscale Computing},
author={Grimm, Justin},
year={2026}
}
MIT License - Copyright (c) 2026 Justin Grimm.
1 commits
Python
50.7%
C
49.3%