码迷,mamicode.com
首页 > 编程语言 > 详细

python 3.5 import theano ::hypot error

时间:2017-05-17 17:15:34      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:share   code   文件   rar   python3   配置   方法   实现   nbsp   

# win10 , mingw(nuwen,g++ 6.3), python 3.5 ,

描述:

import theano 时生成动态的 mod.cpp ,然后编译库的时候报 ::hypot 未定义

原因:

hypot 在"C:\Program Files\Python35\include\pyconfig.h"被重定义了

pyconfig.h

-------------------------------------------

#define hypot _hypot

-------------------------------------------

解决思路:

在import theano 调用 g++ 编译mod.cpp的时候添加编译参数  -D_hypot=hypot

实现:

有多种方法可行,例如给 theano 添加配置文件等。

一种实际操作方法:

搜索 theano 文件夹下面含有编译参数字符串的文件,然后在某个编译参数后面加上 -D_hypot=hypot

例如:

cc.py      "C:\Program Files\Python35\Lib\site-packages\theano\gof\cc.py"

-------------------------------------------

def compile_args(self):

...

"-Wno-write-strings",  # generated by our code generator...
"-D_hypot=hypot",
]

-------------------------------------------

cmodule.py   "C:\Program Files\Python35\Lib\site-packages\theano\gof\cmodule.py"

-------------------------------------------

def get_gcc_shared_library_arg():

...

return ‘-shared -D_hypot=hypot

-------------------------------------------

 

python 3.5 import theano ::hypot error

标签:share   code   文件   rar   python3   配置   方法   实现   nbsp   

原文地址:http://www.cnblogs.com/squirrel2300/p/6868153.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!