cythonize

    3熱度

    1回答

    我想並行執行cython文件編譯。 所以,我看看Cython.Build源文件,並查找以下簽名cythonize功能: def cythonize(module_list, exclude=None, nthreads=0, aliases=None, quiet=False, force=False, language=None, exclude_failures

    2熱度

    1回答

    我需要更多的性能來運行我的神經網絡,所以我認爲使用cython構建它會是個好主意。我正在構建我的代碼,如下所示: from distutils.core import setup from Cython.Build import cythonize setup( ext_modules = cythonize("my_code.pyx") ) 但是它會構建我使用的外部pytho

    2熱度

    1回答

    有沒有在Cython代碼中使用AES-NI指令的方法? 最近我能找到的是一個人如何訪問SIMD指令: https://groups.google.com/forum/#!msg/cython-users/nTnyI7A6sMc/a6_GnOOsLuQJ AES-NI在Python線程不回答: Python support for AES-NI

    2熱度

    2回答

    (我認爲這個問題很容易由專家解答,而沒有實際的複製粘貼工作示例,所以我沒有花費額外的時間...) 我有一個C++方法,它返回一個整數數組: int* Narf::foo() { int bar[10]; for (int i = 0; i < 10; i++) { bar[i] = i; } return bar; } 我創造了用Cytho

    0熱度

    1回答

    因此,我安裝了用於圖像註冊的PIRT包。但我不能在我的python中導入它。它呈現出一些錯誤: >>> import pirt Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/osboxes/pirt/pirt/__init__.py", line 36, i

    4熱度

    1回答

    我一直在用Cython玩弄最近和應用裝飾的用Cython功能 Cdef functions/classes cannot take arbitrary decorators 在這裏,當我遇到這個錯誤是來了,我擺弄的代碼搭配: import functools def memoize(f): computed = {} @functools.wraps(f) def