()
| 119 | |
| 120 | |
| 121 | def test_single_float_arg(): |
| 122 | |
| 123 | def my_kernel(theta: float): |
| 124 | q = cudaq.qubit() |
| 125 | ry(theta, q) |
| 126 | |
| 127 | sig = _parse_and_assert_equal(my_kernel) |
| 128 | assert sig.arg_types == [MlirTypes.FLOAT64] |
| 129 | assert sig.return_type is None |
| 130 | |
| 131 | |
| 132 | def test_multiple_mixed_args(): |
nothing calls this directly
no test coverage detected