Pytorch print(x)给出了非法指令(核心转储)

时间:2017-11-02 02:24:10

标签: torch pytorch

我正在使用anaconda python2.7。我可以使用http://pytorch.org/

上的安装指南中的conda install pytorch来安装pytorch

当我进入python并测试示例时

from __future__ import print_function
import torch
from torch.autograd import Variable
x = Variable(torch.ones(2, 2), requires_grad=True) ## works fine
print (x) ## broke here
x ## also broke, python can't give the values stored in x

使用Illegal instruction (core dumped)后,我收到错误print(x)

我可以在x上执行所有的pytorch操作,除了打印它的值。在某些时候,我必须查看x中的值。有没有人有同样的问题或知道如何解决这个问题?

感谢。

0 个答案:

没有答案