()
| 32 | |
| 33 | |
| 34 | def main() -> None: |
| 35 | tensor = cvcuda.Tensor( # noqa: F841 |
| 36 | (16, 32, 4), np.float32, cvcuda.TensorLayout.HWC |
| 37 | ) |
| 38 | thread = threading.Thread(target=create_tensor_and_clear) |
| 39 | thread.start() |
| 40 | thread.join() |
| 41 | |
| 42 | |
| 43 | # docs-end: main |
no test coverage detected