Cython 基于外部值的条件编译

发布于 2024-09-25 19:27:48 字数 276 浏览 8 评论 0原文

我尝试从 Cython pxd 有条件地编译(或生成)为 c 代码。我读到我可以 DEF 定义 aa 值,并 IF 根据其值有条件地生成,但是如何从 pxd 文件外部获取该值?

具体来说,这两种情况现在对我来说很有趣:

  • 为 Cython 提供一些命令行定义,最好通过 Cython.Distutils setuptools 的方式
  • extern-ed C 头文件定义一些值,并根据该值有条件地使用 Cython 进行定义(也许不可能现在?)

谢谢

I try to conditionally compile (or generate) to c code from a Cython pxd. I read that I can DEF to define aa value and IF to conditionally generate based on its value, but how can I get this value to get from outside of the pxd file?

Specifically these two cases are interesting for me now:

  • give some command-line define to Cython, preferrably through the Cython.Distutils setuptools way
  • the extern-ed C header file defines some value, and conditionally define using Cython based on this value (maybe impossible now?)

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空心空情空意 2024-10-02 19:27:48

您可以生成一个 pxi 文件,并在执行 IF 之前包含它(与 ./configure 也生成 config.h 相同。)
例如,这就是我们在 Kivy setup.py 中所做的:

c_options = { 
'use_opengl_es2': True,
'use_opengl_debug': False,
'use_glew': False,
'use_mesagl': False}

print 'Generate config.pxi'
with open(join(dirname(__file__), 'kivy', 'graphics', 'config.pxi'), 'w') as fd:
    for k, v in c_options.iteritems():
        fd.write('DEF %s = %d\n' % (k.upper(), int(v)))

然后,在您的 pxd 中:

include "config.pxi"
IF USE_OPENGL_DEBUG == 1:
  # do other import or whatever you want

You could generate a pxi file, and include it before doing your IF (same as ./configure generate a config.h too.)
This is what we do in Kivy setup.py for example :

c_options = { 
'use_opengl_es2': True,
'use_opengl_debug': False,
'use_glew': False,
'use_mesagl': False}

print 'Generate config.pxi'
with open(join(dirname(__file__), 'kivy', 'graphics', 'config.pxi'), 'w') as fd:
    for k, v in c_options.iteritems():
        fd.write('DEF %s = %d\n' % (k.upper(), int(v)))

And then, in your pxd :

include "config.pxi"
IF USE_OPENGL_DEBUG == 1:
  # do other import or whatever you want
白色秋天 2024-10-02 19:27:48

实际上,第二种选择更容易。在某个 .h 文件中创建一个 FLAG,然后

cdef extern from "header.h":
    cdef int FLAG

当您想使用它时,只需编写即可

if FLAG:
    ...

,即使 Cython 会生成代码,C 编译器也会自动修剪它,因为它在编译时知道 FLAG 的值。

Actually, the second option is easier. Create a FLAG in some .h file and then do

cdef extern from "header.h":
    cdef int FLAG

then when you want to use it, just write

if FLAG:
    ...

and even though Cython will generate the code, the C compiler will automatically trim this away as it knows the value of FLAG at compile time.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文