16

関数を C から Python に移植し、デバッグを容易にするために、中間結果を比較できるように、同じ CPU ワードサイズ制限操作を実行したいと考えていました。言い換えれば、次のようなものが欲しいです:

a = UnsignedBoundedInt(32, 399999)
b = UnsignedBoundedInt(32, 399999)
print(a*b) # prints 1085410049 (159999200001 % 2**32)

すべての操作 (ビットごとのシフトを含む) が C のように機能するように、これを達成するための最良の方法は何ですか?

4

2 に答える 2

23

ctypes.uint_32を使用して、結果をバインドしてみることができます。

>>> import ctypes
>>> print ctypes.c_uint32(399999 * 399999).value
1085410049

または、 numpyのデータ型を使用できます。

>>> import numpy as np
>>> a = np.uint32(399999)
>>> b = np.uint32(399999)
>>> a * b
__main__:1: RuntimeWarning: overflow encountered in uint_scalars
1085410049
于 2013-10-07T19:38:02.767 に答える
3

これは興味深い解決策ですが、Python 2 でしか機能しません。

class U32:
    """Emulates 32-bit unsigned int known from C programming language."""

    def __init__(self, num=0, base=None):
        """Creates the U32 object.

        Args:
            num: the integer/string to use as the initial state
            base: the base of the integer use if the num given was a string
        """
        if base is None:
            self.int_ = int(num) % 2**32
        else:
            self.int_ = int(num, base) % 2**32

    def __coerce__(self, ignored):
        return None

    def __str__(self):
        return "<U32 instance at 0x%x, int=%d>" % (id(self), self.int_)

    def __getattr__(self, attribute_name):
        print("getattr called, attribute_name=%s" % attribute_name)
        # you might want to take a look here:
        # https://stackoverflow.com/q/19611001/1091116
        r = getattr(self.int_, attribute_name)
        if callable(r):  # return a wrapper if integer's function was requested
            def f(*args, **kwargs):
                if args and isinstance(args[0], U32):
                    args = (args[0].int_, ) + args[1:]
                ret = r(*args, **kwargs)
                if ret is NotImplemented:
                    return ret
                if attribute_name in ['__str__', '__repr__', '__index__']:
                    return ret
                ret %= 2**32
                return U32(ret)
            return f
        return r

print(U32(4) / 2)
print(4 / U32(2))
print(U32(4) / U32(2))

Python 3 との互換性については、こちらをご覧ください。

于 2013-12-06T18:05:50.760 に答える