Created
May 14, 2011 00:21
-
-
Save Xodarap/971539 to your computer and use it in GitHub Desktop.
Booth's Multiplication Algorithm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bitstring import BitArray | |
''' | |
Returns m * r using Booth's algorithm. | |
x = len(m) and y = len(r). Note that this is the length in base 2. | |
See http://en.wikipedia.org/wiki/Booth%27s_algorithm | |
''' | |
def booth(m, r, x, y): | |
# Initialize | |
totalLength = x + y + 1 | |
mA = BitArray(int = m, length = totalLength) | |
rA = BitArray(int = r, length = totalLength) | |
A = mA << (y+1) | |
S = BitArray(int = -m, length = totalLength) << (y+1) | |
P = BitArray(int = r, length = y) | |
P.prepend(BitArray(int = 0, length = x)) | |
P = P << 1 | |
print "Initial values" | |
print "A", A.bin | |
print "S", S.bin | |
print "P", P.bin | |
print "Starting calculation" | |
for i in range(1,y+1): | |
if P[-2:] == '0b01': | |
P = BitArray(int = P.int + A.int, length = totalLength) | |
print "P + A:", P.bin | |
elif P[-2:] == '0b10': | |
P = BitArray(int = P.int +S.int, length = totalLength) | |
print "P + S:", P.bin | |
P = arith_shift_right(P, 1) | |
print "P >> 1:", P.bin | |
P = arith_shift_right(P, 1) | |
print "P >> 1:", P.bin | |
return P.int | |
def arith_shift_right(x, amt): | |
l = x.len | |
x = BitArray(int = (x.int >> amt), length = l) | |
return x | |
# Sample usage: find 86 * 41 | |
b = booth(86, 41, 8, 8) | |
print b |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment