Threshold Logic Circuits
Collection
Boolean gates, voting functions, modular arithmetic, and adders as threshold networks.
β’
248 items
β’
Updated
β’
1
8-bit greater-than comparator. Returns 1 if a > b, 0 otherwise.
b0 a0 b1 a1 b2 a2 b3 a3 b4 a4 b5 a5 b6 a6 b7 a7
β β 0 β β β β β β β β β β β β β β
ββ¬ββ ββ¬β ββ¬β ββ¬β ββ¬β ββ¬β ββ¬β ββ¬β
βΌ β βΌ βΌ βΌ βΌ βΌ βΌ βΌ
ββββββ βββββ βββββ βββββ βββββ βββββ βββββ βββββ
βFS0ββ΄βββFS1ββββββFS2ββββββFS3ββββββFS4ββββββFS5ββββββFS6ββββββFS7ββββΊ(a>b)
βββββ βββββ βββββ βββββ βββββ βββββ βββββ βββββ
Note: inputs are swapped compared to LessThan. Computes b - a.
The circuit computes b - a using subtraction:
This is equivalent to LessThan(b, a).
| a | b | a > b |
|---|---|---|
| 0 | 0 | 0 |
| 1 | 0 | 1 |
| 0 | 1 | 0 |
| 128 | 127 | 1 |
| 0 | 255 | 0 |
| 255 | 0 | 1 |
| 100 | 100 | 0 |
| 100 | 99 | 1 |
b a (note: b first, a second)
β β
βββββ¬ββββ
βΌ
βββββββββββ
β HS1 β
βββββββββββ
β β
d1 b1
β \
β bin \
ββββ¬βββ \
βΌ \
βββββββββββ \
β HS2 β β
βββββββββββ β
β β β
d b2 β
β β
ββββ¬ββββ
βΌ
ββββββββ
β OR β
ββββββββ
β
βΌ
bout
| Component | Per FS | Total (8 FSs) |
|---|---|---|
| Neurons | 9 | 72 |
| Parameters | 27 | 216 |
Layers: 32 (8 FSs Γ 4 layers each)
| Circuit | Condition | Implementation |
|---|---|---|
| LessThan | a < b | borrow_out of (a - b) |
| Equal | a = b | NOR of all XOR bits |
| GreaterThan | a > b | borrow_out of (b - a) |
from safetensors.torch import load_file
w = load_file('model.safetensors')
def greater_than(a, b):
"""a, b: 8-bit lists [a0..a7] (LSB first)
Returns: 1 if a > b, 0 otherwise"""
# See model.py for full implementation
pass
# Example: 100 > 99?
a = [(100 >> i) & 1 for i in range(8)]
b = [(99 >> i) & 1 for i in range(8)]
result = greater_than(a, b) # Returns 1
threshold-greaterthan/
βββ model.safetensors
βββ model.py
βββ config.json
βββ README.md
MIT