(shape, dtype, device, mean=0, std=1)
| 2 | import unittest |
| 3 | |
| 4 | def random_tensor(shape, dtype, device, mean=0, std=1): |
| 5 | return torch.empty(shape, dtype=dtype, device=device).normal_(mean, std) |
| 6 | |
| 7 | class TestGemmDequantize(unittest.TestCase): |
| 8 | def setUp(self) -> None: |
no outgoing calls
no test coverage detected