Python - 用于C ++的JIT编译器

时间:2016-04-25 22:55:03

标签: python c++ jit

目前我正在使用distutils进行构建和ctypes接口,但我碰到了这个,看起来很不错

import ROOT 

cppFunctionCode = '''
void f() {
std::cout << "Hi jitted C. world!" « std::endl; 
}'''

ROOT.gInterpreter.Declare(cppFunctionCode) 
ROOT.f() # Hello! 

https://root.cern.ch/code-snippet/interpreted-cpp-python

问题在于ROOT是一个非常大的框架,拥有一个只能处理C ++ JIT而不是其他工具的工具会很好。

有人知道python中是否有一个简单的C ++ JIT库吗?

由于

0 个答案:

没有答案