0

我有以下内容:

  • Python 2.7.5
  • 启用 FIPS 的 RHEL 7.3
  • 千层面(0.2.dev1)
  • Theano (0.9.0)

我用 pip 安装了 Theano 和 Lasange 没有问题,但是当我导入 lasange 时,我收到与 FIPS 相关的错误:

$: python
Python 2.7.5 (default, Aug  2 2016, 04:20:16)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import lasagne
ERROR (theano.sandbox.cuda): Failed to compile cuda_ndarray.cu: error:060800A3:digital envelope routines:EVP_DigestInit_ex:disabled for fips

是否有一些已知或可用的解决方法?不幸的是,我必须启用 FIPS。

我刚开始使用 Theano 和 Lasagne,所以如果我需要更多帮助来解决问题,我深表歉意。

4

1 回答 1

0

截至目前,看起来 md5 散列已被硬编码到库中,并且已被 Theano 开发人员认可:https ://github.com/Theano/Theano/issues/5757

更新:2017 年 5 月 25 日

我修改了 theano 代码,所以它使用 sha256 而不是 md5。这解决了我遇到的 FIPS 问题,并且没有减慢我一直在运行的任何计算。

您可以在此处查看拉取请求:https ://github.com/Theano/Theano/pull/5916 ,您可以在此处下载我的更改,直到合并:https ://github.com/dareneiri/Theano ,如果确实如此被接受。

于 2017-03-27T19:38:45.373 回答