Krishn Parasar
Krishn Parasar
Added Fuzz targets for heavy-hex graph and lollipop graph to test their robustness for various inputs.
- Fix subclass initialization by ensuring each subclass gets its own per-class dispatch tables and correctly inherits parent op mappings without recursion. - Look at [PR](https://github.com/pytorch/ao/pull/3153).
Added two tests to check if the subclassing logic defined in TorchAOBaseTensor __init_subclass_ _ works correctly. Refer the [comment](https://github.com/pytorch/ao/pull/2866#discussion_r2411724582). The first test fails for: ``` self.assertIsNot(Parent._ATEN_OP_TABLE, Child._ATEN_OP_TABLE) self.assertIsNot(Parent._TORCH_FN_TABLE, Child._TORCH_FN_TABLE) ```...
- The PR is for the [issue](https://github.com/Qiskit/qiskit/issues/15307). - I have added the tests to cover my changes. - I have updated the documentation accordingly. - I have read the CONTRIBUTING...
Added new grammar logic for variable. Replaced the regex with Lark implementation.