[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-id: <7566734C-7936-48B2-9032-5C527AF5EEA8@mac.com>
Date: Tue, 06 Aug 2013 23:52:52 -0700
From: Larry Bugbee <bugbee@....com>
To: discussions@...sword-hashing.net
Subject: Re: [PHC] A (naively?) simple PHC submission using hash chains
On Aug 6, 2013, at 11:34 PM, Marsh Ray wrote:
> I didn't have much trouble reading Trevor Perrin's Python, but I note that it didn't *actually* seem to be parallelizing over multiple threads. The Ruby looked like it would run in parallel, except that the normal interpreter doesn't do that. Go figure!
Out of the box, Python is single threaded. To thread Python you will need to import "thread" (low level) or "threading" (higher level). ...or for multiple processes, "multiprocessing".
Larry
Powered by blists - more mailing lists