From 3050379616dc4a44c36adc47c1ed8e9cb348c340 Mon Sep 17 00:00:00 2001 From: Thomas Roeblitz Date: Thu, 14 Mar 2024 17:54:35 +0100 Subject: [PATCH] remove parse_hook for PyTorch after new Z3/4.12.2 has been ingested --- eb_hooks.py | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/eb_hooks.py b/eb_hooks.py index 95fbfbe8b0..e0f29ea031 100644 --- a/eb_hooks.py +++ b/eb_hooks.py @@ -252,30 +252,6 @@ def parse_hook_pybind11_replace_catch2(ec, eprefix): build_deps[idx] = (catch2_name, catch2_version) -def parse_hook_pytorch_replace_z3(ec, eprefix): - """ - Replace Z3 dependency in PyTorch/2.1.2 easyconfig to work around a change - of the Z3 eb/module name - cfr. https://github.com/easybuilders/easybuild-easyconfigs/pull/20050 - """ - # this is mainly necessary to avoid that --missing keeps reporting Z3/4.12.2 - # is missing, because previously it was Z3/4.12.2-GCCcore-12.3.0-Python-3.11.3 - if ec.name == 'PyTorch' and ec.version in ['2.1.2']: - deps = ec['dependencies'] - z3_dep = None - z3_name, z3_version, z3_suffix = ('Z3', '4.12.2', '-Python-3.11.3') - print_msg("scanning dependencies of %s/%s for %s/%s", - ec.name, ec.version, z3_name, z3_version) - for idx, dep in enumerate(deps): - if dep[0] == z3_name and dep[1] == z3_version: - z3_dep = dep - break - if z3_dep and len(z3_dep) == 2: - deps[idx] = (z3_name, z3_version, z3_suffix) - print_msg("replaced dependency %s/%s with %s/%s/%s for %s/%s", - z3_name, z3_version, z3_name, z3_version, z3_suffix, ec.name, ec.version) - - def parse_hook_qt5_check_qtwebengine_disable(ec, eprefix): """ Disable check for QtWebEngine in Qt5 as workaround for problem with determining glibc version. @@ -629,7 +605,6 @@ def inject_gpu_property(ec): 'OpenBLAS': parse_hook_openblas_relax_lapack_tests_num_errors, 'Pillow-SIMD' : parse_hook_Pillow_SIMD_harcoded_paths, 'pybind11': parse_hook_pybind11_replace_catch2, - 'PyTorch': parse_hook_pytorch_replace_z3, 'Qt5': parse_hook_qt5_check_qtwebengine_disable, 'UCX': parse_hook_ucx_eprefix, }