()
| 1831 | |
| 1832 | |
| 1833 | def test_math_module_pi_1448(): |
| 1834 | import math |
| 1835 | |
| 1836 | @cudaq.kernel |
| 1837 | def test_kernel() -> float: |
| 1838 | theta = math.pi |
| 1839 | return theta |
| 1840 | |
| 1841 | test_kernel.compile() |
| 1842 | assert np.isclose(test_kernel(), math.pi, 1e-12) |
| 1843 | |
| 1844 | |
| 1845 | def test_len_qvector_1449(): |
nothing calls this directly
no test coverage detected