如何使用C ++中的字节码优化来初始化嵌入式Python解释器?

时间:2016-04-21 18:07:12

标签: c++ python-2.7 embed

我在我的C ++项目中运行嵌入式Python 2.7解释器,我想尽可能优化解释器。我想这样做的一种方法是使用__debug__变量禁用我的调试语句。我还希望通过运行带字节码优化的Python(即-O标志)来实现性能上的任何可能的提升。

This Stack Overflow question解决了__debug__变量的使用问题,并指出可以通过使用-O运行Python来关闭它。但是,显然不能为使用C ++钩子创建的嵌入式解释器传递此标志。

下面是我的嵌入式解释器初始化代码。代码不是孤立运行的,而是应该提供我所使用的环境的一瞥。有没有什么方法可以改变或添加到这些函数调用,以指定嵌入式解释器应该应用字节码优化,将__debug__变量设置为False,并且通常运行在"发布&# 34;模式而不是" debug"模式?

void PythonInterface::GlobalInit() {
  if(GLOBAL_INITIALIZED) return;
  PY_MUTEX.lock();
  const char *chome = getenv("NAO_HOME");
  const char *cuser = getenv("USER");
  string home = chome ? chome : "", user = cuser ? cuser : "";
  if(user == "nao") {
    std::string scriptPath = "/home/nao/python:";
    std::string swigPath = SWIG_MODULE_DIR ":";
    std::string corePath = "/usr/lib/python2.7:";
    std::string modulePath = "/lib/python2.7";
    setenv("PYTHONPATH", (scriptPath + swigPath + corePath + modulePath).c_str(), 1);
    setenv("PYTHONHOME", "/usr", 1);
  } else {
    std::string scriptPath = home + "/core/python:";
    std::string swigPath = SWIG_MODULE_DIR;
    setenv("PYTHONPATH", (scriptPath + swigPath).c_str(), 1);
  }

  printf("Starting initialization of Python version %s\n", Py_GetVersion());
  Py_InitializeEx(0); // InitializeEx(0) turns off signal hooks so ctrl c still works
  GLOBAL_INITIALIZED = true;
  PY_MUTEX.unlock();
}

void PythonInterface::Init(VisionCore* core) {
  GlobalInit();
  PY_MUTEX.lock();
  CORE_MUTEX.lock();
  CORE_INSTANCE = core;
  thread_ = Py_NewInterpreter();
  PyRun_SimpleString(
    "import pythonswig_module\n"
    "pythonC = pythonswig_module.PythonInterface().CORE_INSTANCE.interpreter_\n"
    "pythonC.is_ok_ = False\n"
    "from init import *\n"
    "init()\n"
    "pythonC.is_ok_ = True\n"
  );
  CORE_MUTEX.unlock();
  PY_MUTEX.unlock();
}

1 个答案:

答案 0 :(得分:1)

我通过在调用PYTHONOPTIMIZE

之前设置Py_InitializeEx(0)环境变量来解决此问题
/* ... snip ... */
setenv("PYTHONOPTIMIZE", "yes", 0);
printf("Starting initialization of Python version %s\n", Py_GetVersion());
Py_InitializeEx(0); // InitializeEx(0) turns off signal hooks so ctrl c still works
/* ... snip ... */