test_const_value.py 249 字节
Newer Older
Q
qiaolongfei 已提交
1 2 3 4 5 6 7 8 9 10 11
import unittest
import paddle.v2.fluid.framework as framework


class ConditionalBlock(unittest.TestCase):
    def test_const_value(self):
        self.assertEqual(framework.GRAD_VAR_SUFFIX, "@GRAD")


if __name__ == '__main__':
    unittest.main()