(dist_name: str)
| 1286 | |
| 1287 | @cache |
| 1288 | def _is_package_installed(dist_name: str) -> bool: |
| 1289 | try: |
| 1290 | distribution(dist_name) |
| 1291 | return True |
| 1292 | except PackageNotFoundError: |
| 1293 | return False |
| 1294 | |
| 1295 | |
| 1296 | def fill_paddle_tensor(shared_inputs_object, key, value): |
no outgoing calls
no test coverage detected