(node)
| 263 | ), "ExportedProgram must be provided to extract per channel params" |
| 264 | |
| 265 | def _get_tensor(node): |
| 266 | param = get_param_tensor(ep, node) |
| 267 | assert param is not None, f"Expected to find param tensor for {node}" |
| 268 | return cast(torch.Tensor, param) |
| 269 | |
| 270 | scale = _get_tensor(scale) |
| 271 | zp = _get_tensor(zp) |
nothing calls this directly
no test coverage detected