This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients alex, fil, mark.dickinson, pitrou, tim.peters
Date 2013-12-07.01:37:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386380249.65.0.593162717167.issue19904@psf.upfronthosting.co.za>
In-reply-to
Content
> any form of integer SIMD operation (vectors)

Wouldn't these be appropriately represented by a tuple of integers (or floats)? For example, a SIMD vector of four 32-bit integers could be represented as four Python ints. Or would that be "terrible for performance"?

Note that the struct module may include support for int128_t, but it certainly won't have native support for every SIMD vector format under the sun (if they have different alignment requirements).

> hosting and maintaining hash values which are routinely 128-bit and greater

That sounds like a job for a bytes object (as returned by e.g. hashlib.sha1(...).digest()).
History
Date User Action Args
2013-12-07 01:37:29pitrousetrecipients: + pitrou, tim.peters, mark.dickinson, alex, fil
2013-12-07 01:37:29pitrousetmessageid: <1386380249.65.0.593162717167.issue19904@psf.upfronthosting.co.za>
2013-12-07 01:37:29pitroulinkissue19904 messages
2013-12-07 01:37:29pitroucreate