提交 8e927327 编写于 作者: C chengduo 提交者: XiaoguangHu

Disable test_dygraph_mnist_fp16.py (#19844)

* Fix std::ostream& operator<<(std::ostream& os, const Tensor& t)
test=develop

* Fix test_dygraph_mnist_fp16
test=develop

* disable test_dygraph_mnist_fp16
test=develop

* revert tensor_util.cc fix
test=develop
上级 d9db94d7
......@@ -116,6 +116,8 @@ class MNIST(fluid.dygraph.Layer):
class TestMnist(unittest.TestCase):
# FIXME(zcd): disable this random failed test temporally.
@unittest.skip("should fix this later")
def test_mnist_fp16(self):
if not fluid.is_compiled_with_cuda():
return
......@@ -125,7 +127,8 @@ class TestMnist(unittest.TestCase):
model = MNIST("mnist", dtype="float16")
x = fluid.dygraph.to_variable(x)
y = fluid.dygraph.to_variable(y)
print(model(x, y))
loss = model(x, y)
print(loss.numpy())
if __name__ == "__main__":
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册